This is an automated email from the ASF dual-hosted git repository. stigahuang pushed a commit to branch branch-4.4.1 in repository https://gitbox.apache.org/repos/asf/impala.git
commit 48e81a210e2e5a8fe8a9966aec433a51c34cef9d Author: Riza Suminto <[email protected]> AuthorDate: Thu May 16 14:08:49 2024 -0700 IMPALA-13040: (addendum) Inject larger delay for sanitized build TestLateQueryStateInit has been flaky in sanitized build because the largest delay injection time is fixed at 3 seconds. This patch fixes the issue by setting largest delay injection time equal to RUNTIME_FILTER_WAIT_TIME_MS, which is 3 second for regular build and 10 seconds for sanitized build. Testing: - Loop and pass test_runtime_filter_aggregation.py 10 times in ASAN build and 50 times in UBSAN build. Change-Id: I09e5ae4646f53632e9a9f519d370a33a5534df19 Reviewed-on: http://gerrit.cloudera.org:8080/21439 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- tests/custom_cluster/test_runtime_filter_aggregation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/custom_cluster/test_runtime_filter_aggregation.py b/tests/custom_cluster/test_runtime_filter_aggregation.py index 30675d64a..d1397cd9b 100644 --- a/tests/custom_cluster/test_runtime_filter_aggregation.py +++ b/tests/custom_cluster/test_runtime_filter_aggregation.py @@ -72,7 +72,7 @@ class TestLateQueryStateInit(CustomClusterTestSuite): """Test that distributed runtime filter aggregation still works when remote query state of intermediate aggregator node is late to initialize.""" _wait_time = WAIT_TIME_MS // 20 - _init_delay = [100, 3000] + _init_delay = [100, _wait_time] @classmethod def get_workload(cls):
