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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4b15e83f26b Disable Flaky Tests (#16554)
4b15e83f26b is described below

commit 4b15e83f26b1d963ae5d906bf5cf6b162d43c077
Author: Rajat Venkatesh <[email protected]>
AuthorDate: Tue Aug 26 15:48:18 2025 +0530

    Disable Flaky Tests (#16554)
    
    This is a follow-up to https://github.com/apache/pinot/pull/16533
    The fix for a flaky test did not work. This PR disables these tests 
temporarily.
---
 .../tests/OfflineClusterMemBasedServerQueryKillingTest.java         | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterMemBasedServerQueryKillingTest.java
 
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterMemBasedServerQueryKillingTest.java
index 42db5fd0a11..4cf972c8951 100644
--- 
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterMemBasedServerQueryKillingTest.java
+++ 
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/OfflineClusterMemBasedServerQueryKillingTest.java
@@ -287,7 +287,7 @@ public class OfflineClusterMemBasedServerQueryKillingTest 
extends BaseClusterInt
     assertTrue(exceptions.contains("got killed on SERVER"), exceptions);
   }
 
-  @Test
+  @Test(enabled = false) // Disabled because this test is flaky in the 
multi-stage query engine
   public void testDigestOOMMSE()
       throws Exception {
     setUseMultiStageQueryEngine(true);
@@ -321,7 +321,7 @@ public class OfflineClusterMemBasedServerQueryKillingTest 
extends BaseClusterInt
     assertTrue(exceptions.contains("got killed on SERVER"), exceptions);
   }
 
-  @Test
+  @Test(enabled = false) // Disabled because this test is flaky in the 
multi-stage query engine
   public void testSelectionOnlyOOMMSE()
       throws Exception {
     setUseMultiStageQueryEngine(true);
@@ -343,7 +343,7 @@ public class OfflineClusterMemBasedServerQueryKillingTest 
extends BaseClusterInt
     assertTrue(exceptions.contains("got killed on SERVER"), exceptions);
   }
 
-  @Test
+  @Test(enabled = false) // Disabled because this test is flaky in the 
multi-stage query engine
   public void testDigestOOM2MSE()
       throws Exception {
     setUseMultiStageQueryEngine(true);


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to