Repository: incubator-impala Updated Branches: refs/heads/master 244c1fba6 -> 5f2a44069
Update stress test with admission control rejected messages IMPALA-5644 added a couple of new messages that indicate that the mem_limit was too low to execute the query. The stress test script needs updating to reflect this. Testing: Was able to do a full binary search with the modified stress test script. Change-Id: Ib2f6fa7c0f4e5875fcb92af8f712009ffa02c964 Reviewed-on: http://gerrit.cloudera.org:8080/7854 Reviewed-by: Michael Brown <[email protected]> Tested-by: Tim Armstrong <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/5f2a4406 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/5f2a4406 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/5f2a4406 Branch: refs/heads/master Commit: 5f2a440698a1d9958b75b2f16284c19dba563a46 Parents: 244c1fb Author: Tim Armstrong <[email protected]> Authored: Fri Aug 25 23:57:44 2017 -0700 Committer: Tim Armstrong <[email protected]> Committed: Mon Aug 28 15:14:23 2017 +0000 ---------------------------------------------------------------------- tests/stress/concurrent_select.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/5f2a4406/tests/stress/concurrent_select.py ---------------------------------------------------------------------- diff --git a/tests/stress/concurrent_select.py b/tests/stress/concurrent_select.py index 6626f58..d250fe1 100755 --- a/tests/stress/concurrent_select.py +++ b/tests/stress/concurrent_select.py @@ -945,6 +945,8 @@ class QueryRunner(object): if "memory limit exceeded" in caught_msg or \ "repartitioning did not reduce the size of a spilled partition" in caught_msg or \ "failed to get minimum memory reservation" in caught_msg or \ + "minimum memory reservation is greater than" in caught_msg or \ + "minimum memory reservation needed is greater than" in caught_msg or \ caught_msg == "cancelled": report.mem_limit_exceeded = True return
