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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1e67480ba IMPALA-12917: Skip TestEventProcessingError tests requiring 
tez execution on hive
1e67480ba is described below

commit 1e67480ba6cd4a6f01b369eb11cc2b7330554bde
Author: Venu Reddy <[email protected]>
AuthorDate: Wed Mar 20 20:13:37 2024 +0530

    IMPALA-12917: Skip TestEventProcessingError tests requiring tez execution 
on hive
    
    CI failed for Ozone and S3 builds due to 5 tests failure in
    TestEventProcessingError. Those tests run insert into table and
    analyze table compute statistics queries on hive and failed to start
    the Tez client. Those tests were introduced with IMPALA-12832.
    
    Testing:
    - Executed end to end tests
    
    Change-Id: Idb8422fbb494cd74def5ff6926aea82d0981cc82
    Reviewed-on: http://gerrit.cloudera.org:8080/21172
    Reviewed-by: Impala Public Jenkins <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 tests/custom_cluster/test_event_processing_error.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tests/custom_cluster/test_event_processing_error.py 
b/tests/custom_cluster/test_event_processing_error.py
index ec41da786..c4bf4a242 100644
--- a/tests/custom_cluster/test_event_processing_error.py
+++ b/tests/custom_cluster/test_event_processing_error.py
@@ -20,7 +20,7 @@ from builtins import range
 from hive_metastore.ttypes import FireEventRequest
 from hive_metastore.ttypes import FireEventRequestData
 from tests.common.custom_cluster_test_suite import CustomClusterTestSuite
-from tests.common.skip import (SkipIfCatalogV2)
+from tests.common.skip import SkipIfCatalogV2, SkipIfFS
 from tests.metadata.test_event_processing_base import TestEventProcessingBase
 from tests.util.acid_txn import AcidTxn
 from tests.util.event_processor_utils import EventProcessorUtils
@@ -96,6 +96,7 @@ class TestEventProcessingError(CustomClusterTestSuite):
       assert "hive_table_add_partition/year=2024" in result.get_data()
       assert len(result.data) == 2
 
+  @SkipIfFS.hive
   @CustomClusterTestSuite.with_args(
       impalad_args="--use_local_catalog=true",
       catalogd_args="--catalog_topic_mode=minimal "
@@ -118,6 +119,7 @@ class TestEventProcessingError(CustomClusterTestSuite):
       assert "2024" in result.get_data()
       assert len(result.data) == 2
 
+  @SkipIfFS.hive
   @CustomClusterTestSuite.with_args(
       impalad_args="--use_local_catalog=true",
       catalogd_args="--catalog_topic_mode=minimal "
@@ -241,6 +243,7 @@ class TestEventProcessingError(CustomClusterTestSuite):
       self.client.execute("describe formatted {}.{}"
           .format(unique_database, tbl_name))
 
+  @SkipIfFS.hive
   @CustomClusterTestSuite.with_args(
       impalad_args="--use_local_catalog=true",
       catalogd_args="--catalog_topic_mode=minimal "
@@ -279,6 +282,7 @@ class TestEventProcessingError(CustomClusterTestSuite):
       self.client.execute("describe formatted {}.{}"
           .format(unique_database, tbl_name))
 
+  @SkipIfFS.hive
   @CustomClusterTestSuite.with_args(
       impalad_args="--use_local_catalog=true",
       catalogd_args="--catalog_topic_mode=minimal "
@@ -337,6 +341,7 @@ class TestEventProcessingError(CustomClusterTestSuite):
       self.verify_owner_property(result, 'test-user')
       assert "2024" in result.get_data()
 
+  @SkipIfFS.hive
   @CustomClusterTestSuite.with_args(
       impalad_args="--use_local_catalog=true",
       catalogd_args="--catalog_topic_mode=minimal "

Reply via email to