You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by mi...@apache.org on 2023/07/25 17:22:22 UTC

[impala] 01/03: IMPALA-12300: (addendum) Remove HDFS specific assertion

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

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

commit 0d3fc33bbbe8313788547d30b507a0b0effc4951
Author: Riza Suminto <ri...@cloudera.com>
AuthorDate: Mon Jul 24 08:02:13 2023 -0700

    IMPALA-12300: (addendum) Remove HDFS specific assertion
    
    test_75_percent_availability fail against Ozone and S3 test environment
    because test expects the string "SCAN HDFS" to be found in the profile.
    Instead of it there's "SCAN OZONE" and "SCAN S3" for Ozone and S3 test
    environment respectively. This patch fix the test by removing that
    assertion from test_75_percent_availability. The remaining assertion is
    enough to verify that FE planner and BE scheduler can see cluster
    membership change.
    
    Change-Id: Id14934d2fce0f6cf03242c36c0142bc697b4180e
    Reviewed-on: http://gerrit.cloudera.org:8080/20259
    Reviewed-by: Wenzhe Zhou <wz...@cloudera.com>
    Reviewed-by: Michael Smith <mi...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 tests/custom_cluster/test_executor_groups.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/custom_cluster/test_executor_groups.py b/tests/custom_cluster/test_executor_groups.py
index 42c900b47..bd6ffca81 100644
--- a/tests/custom_cluster/test_executor_groups.py
+++ b/tests/custom_cluster/test_executor_groups.py
@@ -1437,5 +1437,4 @@ class TestExecutorGroups(CustomClusterTestSuite):
     assert ("Scheduler Warning: Cluster membership might changed between planning and "
         "scheduling, F00 scheduled instance count (16) is higher than its effective "
         "count (12)") in profile, profile
-    assert "00:SCAN HDFS               8     16" in profile, profile
     self.client.close_query(handle)