You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by jl...@apache.org on 2019/05/15 17:17:13 UTC

[incubator-pinot] branch master updated: Commment out deleteTaskQueue in Test testStopAndResumeTaskQueue (#4207)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ca0b5b8  Commment out deleteTaskQueue in Test testStopAndResumeTaskQueue (#4207)
ca0b5b8 is described below

commit ca0b5b83c867c1bc703e00f680711943fb15bf51
Author: Jialiang Li <jl...@linkedin.com>
AuthorDate: Wed May 15 10:17:07 2019 -0700

    Commment out deleteTaskQueue in Test testStopAndResumeTaskQueue (#4207)
---
 .../pinot/integration/tests/SimpleMinionClusterIntegrationTest.java  | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/SimpleMinionClusterIntegrationTest.java b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/SimpleMinionClusterIntegrationTest.java
index 4ad79b0..438655a 100644
--- a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/SimpleMinionClusterIntegrationTest.java
+++ b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/SimpleMinionClusterIntegrationTest.java
@@ -176,7 +176,10 @@ public class SimpleMinionClusterIntegrationTest extends ClusterTest {
     }, 60_000L, "Failed to get all tasks COMPLETED");
 
     // Delete the task queue
-    _helixTaskResourceManager.deleteTaskQueue(TestTaskGenerator.TASK_TYPE);
+    // Note: Comment out the api for now since there is a known race condition
+    // where helix controller might write a deleted workflow back to ZK because it's still caching it.
+    // TODO: revert this after merging the fix
+//    _helixTaskResourceManager.deleteTaskQueue(TestTaskGenerator.TASK_TYPE);
   }
 
   @AfterClass


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org