Repository: incubator-impala Updated Branches: refs/heads/master b088878c8 -> 41e3055f9
IMPALA-5691: recalibrate mem limit for Q18 I ran the stress test binary search locally and it produced a slightly higher number for Q18 than the hardcoded value. This is enough to move it above one of the thresholds, so may reduce flakiness. Testing: I wasn't able to reproduce the flakiness locally, so can't confirm this fixes it. Change-Id: I1ffa969061a52730c5147d142dcd2e3cb3626590 Reviewed-on: http://gerrit.cloudera.org:8080/7512 Reviewed-by: Matthew Jacobs <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/78845e5b Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/78845e5b Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/78845e5b Branch: refs/heads/master Commit: 78845e5b6cba6eb04aa9a075bd6172b335fe4a6c Parents: b088878 Author: Tim Armstrong <[email protected]> Authored: Wed Jul 26 10:16:53 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Wed Jul 26 21:24:15 2017 +0000 ---------------------------------------------------------------------- tests/query_test/test_mem_usage_scaling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/78845e5b/tests/query_test/test_mem_usage_scaling.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_mem_usage_scaling.py b/tests/query_test/test_mem_usage_scaling.py index 60ba32d..e6eccf9 100644 --- a/tests/query_test/test_mem_usage_scaling.py +++ b/tests/query_test/test_mem_usage_scaling.py @@ -113,7 +113,7 @@ class TestTpchMemLimitError(TestLowMemoryLimits): MIN_MEM_FOR_TPCH = { 'Q1' : 140, 'Q2' : 120, 'Q3' : 240, 'Q4' : 125, 'Q5' : 235,\ 'Q6' : 25, 'Q7' : 265, 'Q8' : 250, 'Q9' : 400, 'Q10' : 240,\ 'Q11' : 110, 'Q12' : 125, 'Q13' : 110, 'Q14' : 229, 'Q15' : 125,\ - 'Q16' : 125, 'Q17' : 130, 'Q18' : 425, 'Q19' : 240, 'Q20' : 250,\ + 'Q16' : 125, 'Q17' : 130, 'Q18' : 475, 'Q19' : 240, 'Q20' : 250,\ 'Q21' : 620, 'Q22' : 125} @classmethod
