// AdminThread adminThread = new AdminThread(ZK_ADDR, _port);
// adminThread.start();
// start controller
ClusterController controller =
new ClusterController(clusterName, "controller_0", ZK_ADDR);
controller.syncStart();
Map<String, Set<String>> errPartitions = new HashMap<String, Set<String>>()
{
{
put("SLAVE-MASTER", TestHelper.setOf("TestDB0_4"));
put("OFFLINE-SLAVE", TestHelper.setOf("TestDB0_8"));
}
};
// start mock participants
MockParticipant[] participants = new MockParticipant[n];
for (int i = 0; i < n; i++)
{
String instanceName = "localhost_" + (12918 + i);
if (i == 0)
{
participants[i] =
new MockParticipant(clusterName,
instanceName,
ZK_ADDR,
new ErrTransition(errPartitions));
}
else
{
participants[i] = new MockParticipant(clusterName, instanceName, ZK_ADDR);
}
participants[i].syncStart();
}
// verify cluster
Map<String, Map<String, String>> errStateMap =
new HashMap<String, Map<String, String>>();
errStateMap.put("TestDB0", new HashMap<String, String>());
errStateMap.get("TestDB0").put("TestDB0_4", "localhost_12918");
errStateMap.get("TestDB0").put("TestDB0_8", "localhost_12918");
boolean result =
ClusterStateVerifier.verifyByZkCallback((new ClusterStateVerifier.BestPossAndExtViewZkVerifier(ZK_ADDR,
clusterName,
errStateMap)));
Assert.assertTrue(result, "Cluster verification fails");
// reset a non-exist partition, should throw exception
String hostName = "localhost_12918";
String instanceUrl = getInstanceUrl(clusterName, hostName);
Map<String, String> paramMap = new HashMap<String, String>();
paramMap.put(JsonParameters.MANAGEMENT_COMMAND, ClusterSetup.resetPartition);
paramMap.put(JsonParameters.PARTITION, "TestDB0_nonExist");
paramMap.put(JsonParameters.RESOURCE, "TestDB0");
System.out.println("IGNORABLE exception: test reset non-exist partition");
TestHelixAdminScenariosRest.assertSuccessPostOperation(instanceUrl, paramMap, true);
// reset one error partition
errPartitions.clear(); // remove("SLAVE-MASTER");
participants[0].setTransition(new ErrTransitionWithResetCnt(errPartitions));
clearStatusUpdate(clusterName, "localhost_12918", "TestDB0", "TestDB0_4");
_errToOfflineInvoked = 0;
paramMap.put(JsonParameters.PARTITION, "TestDB0_4 TestDB0_8");
TestHelixAdminScenariosRest.assertSuccessPostOperation(instanceUrl, paramMap, false);
Thread.sleep(400); // wait reset to be done
System.out.println("IGNORABLE exception: test reset non-error partition");
TestHelixAdminScenariosRest.assertSuccessPostOperation(instanceUrl, paramMap, true);
result =
ClusterStateVerifier.verifyByZkCallback(new ClusterStateVerifier.BestPossAndExtViewZkVerifier(ZK_ADDR,
clusterName));
Assert.assertTrue(result);
Assert.assertEquals(_errToOfflineInvoked, 2, "reset() should be invoked 2 times");
// clean up
// wait for all zk callbacks done
Thread.sleep(1000);
// adminThread.stop();
controller.syncStop();
for (int i = 0; i < 5; i++)
{
participants[i].syncStop();
}