Repository: incubator-impala Updated Branches: refs/heads/master 24a6e53d1 -> df9ecdc45
IMPALA-5772: also fix TestScratchLimit This reduces the scratch limit to the same value as used in TestScratchDisk. Change-Id: If5c42b6ded44d86c3a430a983096f14c0b88a287 Reviewed-on: http://gerrit.cloudera.org:8080/7664 Reviewed-by: Sailesh Mukil <[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/df9ecdc4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/df9ecdc4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/df9ecdc4 Branch: refs/heads/master Commit: df9ecdc45a34b176f2ee6eda8e12d0195fba9ae7 Parents: 24a6e53 Author: Tim Armstrong <[email protected]> Authored: Sun Aug 13 20:51:03 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Mon Aug 14 09:08:36 2017 +0000 ---------------------------------------------------------------------- tests/query_test/test_scratch_limit.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/df9ecdc4/tests/query_test/test_scratch_limit.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_scratch_limit.py b/tests/query_test/test_scratch_limit.py index a2ccad9..9bf6114 100644 --- a/tests/query_test/test_scratch_limit.py +++ b/tests/query_test/test_scratch_limit.py @@ -47,9 +47,9 @@ class TestScratchLimit(ImpalaTestSuite): spilling_queries = [spilling_sort_query, spilling_agg_query, spilling_join_query, spilling_analytic_query] - # Block manager memory limit that is low enough to - # force Impala to spill to disk when executing 'spilling_sort_query' - buffer_pool_limit = "64m" + # Buffer pool limit that is low enough to force Impala to spill to disk when executing + # spill_query. + buffer_pool_limit = "32m" @classmethod def get_workload(self):
