[ASTERIXDB-2317] Intermittent Failure in Kill CC NCServiceExecutionIT
Increase timeouts waiting for cluster state transitions, to accomodate
graceful shutdown
Change-Id: I0392cae1d2e9b6bfd9455ba2795711ecf7f1ebe3
Reviewed-on: https://asterix-gerrit.ics.uci.edu/2484
Sonar-Qube: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Reviewed-by: Murtadha Hubail <mhubail@apache.org>
Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Contrib: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
diff --git a/asterixdb/asterix-server/src/test/java/org/apache/asterix/test/server/NCServiceExecutionIT.java b/asterixdb/asterix-server/src/test/java/org/apache/asterix/test/server/NCServiceExecutionIT.java
index 3c46be6..7398dbf 100644
--- a/asterixdb/asterix-server/src/test/java/org/apache/asterix/test/server/NCServiceExecutionIT.java
+++ b/asterixdb/asterix-server/src/test/java/org/apache/asterix/test/server/NCServiceExecutionIT.java
@@ -237,7 +237,7 @@
case NC1:
LOGGER.info("Killing NC1...");
nc1.stop(); // we can't kill due to ASTERIXDB-1941
- testExecutor.waitForClusterState("UNUSABLE", 60, TimeUnit.SECONDS); // wait for missed heartbeats...
+ testExecutor.waitForClusterState("UNUSABLE", 90, TimeUnit.SECONDS); // wait for missed heartbeats...
nc1.start(); // this restarts the NC service
testExecutor.startNC("asterix_nc1");
break;
@@ -245,7 +245,7 @@
case NC2:
LOGGER.info("Killing NC2...");
nc2.stop(); // we can't kill due to ASTERIXDB-1941
- testExecutor.waitForClusterState("UNUSABLE", 60, TimeUnit.SECONDS); // wait for missed heartbeats...
+ testExecutor.waitForClusterState("UNUSABLE", 90, TimeUnit.SECONDS); // wait for missed heartbeats...
nc2.start(); // this restarts the NC service
testExecutor.startNC("asterix_nc2");
break;
@@ -254,7 +254,7 @@
Assert.fail("killType: " + killType);
}
try {
- testExecutor.waitForClusterActive(30, TimeUnit.SECONDS);
+ testExecutor.waitForClusterActive(90, TimeUnit.SECONDS);
} catch (Exception e) {
// stop executing the rest of the tests since the cluster is not ACTIVE
LOGGER.log(Level.ERROR, "Cannot continue since cluster is not ACTIVE", e);