mirror of
https://github.com/apache/impala.git
synced 2026-01-03 15:00:52 -05:00
Some of the tests rely on hdfs trash mechanism to be enabled and poll the paths in the trash directory during test runs. These tests are failing intermittenly due to a race with the hdfs trash checkpointing mechanism which moves all the trash contents to another directory. This checkpointing runs every fs.trash.checkpoint.interval minutes and defaults to fs.trash.interval (when set to 0). Currently there seems to be no way to disable this checkpointing. This patch increases the fs.trash.interval from the current value of 30 minutes to 24 hours so that the test runs never hit this race condition. Change-Id: I42fcaee70a461712f1df6bac23c71f915718b015 Reviewed-on: http://gerrit.cloudera.org:8080/1703 Reviewed-by: Bharath Vissapragada <bharathv@cloudera.com> Tested-by: Internal Jenkins