You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by wz...@apache.org on 2021/07/21 00:12:48 UTC

[impala] 01/02: IMPALA-10754: test_overlap_min_max_filters_on_sorted_columns failed during GVO

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

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

commit 147b4b9e583098f9611fe28fc9ff1f8451f63e4b
Author: Qifan Chen <qc...@cloudera.com>
AuthorDate: Mon Jul 19 12:22:33 2021 -0400

    IMPALA-10754: test_overlap_min_max_filters_on_sorted_columns failed during GVO
    
    This patch addresses a failure in ubuntu-16.04 dockerised test. The test
    involved is found in overlap_min_max_filters_on_sorted_columns.test as
    follows.
    
      set minmax_filter_fast_code_path=on;
      set MINMAX_FILTER_THRESHOLD=0.0;
      SET RUNTIME_FILTER_WAIT_TIME_MS=$RUNTIME_FILTER_WAIT_TIME_MS;
      select straight_join count(a.timestamp_col) from
      alltypes_timestamp_col_only a join [SHUFFLE] alltypes_limited b
      where a.timestamp_col = b.timestamp_col and b.tinyint_col = 4;
      ---- RUNTIME_PROFILE
      aggregation(SUM, NumRuntimeFilteredPages)> 57
    
    The patch reduces the threshold from 58 to 50.
    
    Testing:
       Ran the unit test successfully.
    
    Change-Id: Icb4cc7d533139c4a2b46a872234a47d46cb8a17c
    Reviewed-on: http://gerrit.cloudera.org:8080/17696
    Reviewed-by: Impala Public Jenkins <im...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 .../queries/QueryTest/overlap_min_max_filters_on_sorted_columns.test  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testdata/workloads/functional-query/queries/QueryTest/overlap_min_max_filters_on_sorted_columns.test b/testdata/workloads/functional-query/queries/QueryTest/overlap_min_max_filters_on_sorted_columns.test
index d30af02..f6a594a 100644
--- a/testdata/workloads/functional-query/queries/QueryTest/overlap_min_max_filters_on_sorted_columns.test
+++ b/testdata/workloads/functional-query/queries/QueryTest/overlap_min_max_filters_on_sorted_columns.test
@@ -201,7 +201,7 @@ timestamp_col < "2009-06-01 00:00:00";
 ###################################################
 # Run the join query below in fast code path mode
 # and expect the sum of NumRuntimeFilteredPages
-# counter to be >= 58.
+# counter to be >= 50.
 ###################################################
 set minmax_filter_fast_code_path=on;
 set MINMAX_FILTER_THRESHOLD=0.0;
@@ -210,7 +210,7 @@ select straight_join count(a.timestamp_col) from
 alltypes_timestamp_col_only a join [SHUFFLE] alltypes_limited b
 where a.timestamp_col = b.timestamp_col and b.tinyint_col = 4;
 ---- RUNTIME_PROFILE
-aggregation(SUM, NumRuntimeFilteredPages)> 57
+aggregation(SUM, NumRuntimeFilteredPages)> 49
 ====
 ---- QUERY
 ###################################################