mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
The workload management tests in test_query_log.py have been timing out when they wait for workload management to fully initialize the sys.impala_query_log and sys.impala_query_live tables. These tests do not find the log message stating that the sys.impala_query_log table has been created. These tests use the assert_impalad_log_contains function from impala_test_suite.py to search for the relevant log message. By default, this function only allows 6 seconds for this message to appear. In bigger clusters that have larger amounts of data to sync from the statestore and catalog, this time is not long enough. This patch modifies the timeout from 6 seconds to 1 minute that the tests will wait before they time out. The longer timeout will give more time for the cluster to completed start and workload management to initialize before it fails the test. Change-Id: I7ca8c7543360b5cb183cfb0b0b515d38c17e0974 Reviewed-on: http://gerrit.cloudera.org:8080/21549 Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com> Reviewed-by: Andrew Sherman <asherman@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>