You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2019/04/25 01:44:25 UTC

[impala] 01/02: IMPALA-8295: Fix flakiness in TestAdmissionControllerStress

This is an automated email from the ASF dual-hosted git repository.

tarmstrong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit 95c6495ae53cebf44fc1585b3bca021b8f3c5759
Author: Bikramjeet Vig <bi...@cloudera.com>
AuthorDate: Tue Apr 23 16:50:03 2019 -0700

    IMPALA-8295: Fix flakiness in TestAdmissionControllerStress
    
    Currently the test_mem_limit in TestAdmissionControllerStress encounters
    flaky failures due to a timeout waiting on queries to end. Increasing
    the timeout from 60 to 90 seconds to accommodate this flakiness.
    
    Testing:
    Ran the test in a loop for more than 15 hours without any failures.
    
    Change-Id: If9ada7bdbe2461d164100badabb905cf9a8cf4cc
    Reviewed-on: http://gerrit.cloudera.org:8080/13103
    Reviewed-by: Impala Public Jenkins <im...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 tests/custom_cluster/test_admission_controller.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/custom_cluster/test_admission_controller.py b/tests/custom_cluster/test_admission_controller.py
index 5c2799a..86805ee 100644
--- a/tests/custom_cluster/test_admission_controller.py
+++ b/tests/custom_cluster/test_admission_controller.py
@@ -119,7 +119,7 @@ POOL_NAME = "default-pool"
 
 # Stress test timeout (seconds). The timeout needs to be significantly higher for
 # slow builds like code coverage and ASAN (IMPALA-3790, IMPALA-6241).
-STRESS_TIMEOUT = build_flavor_timeout(60, slow_build_timeout=600)
+STRESS_TIMEOUT = build_flavor_timeout(90, slow_build_timeout=600)
 
 # The number of queries that can execute concurrently in the pool POOL_NAME.
 MAX_NUM_CONCURRENT_QUERIES = 5