blob: 5e4b89cc469d59ac96cfa09f9a81b95281e3399d [file] [log] [blame]
package org.apache.helix.integration;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.util.Collections;
import java.util.Date;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.helix.TestHelper;
import org.apache.helix.controller.rebalancer.strategy.CrushEdRebalanceStrategy;
import org.apache.helix.controller.rebalancer.strategy.RebalanceStrategy;
import org.apache.helix.integration.common.ZkStandAloneCMTestBase;
import org.apache.helix.integration.manager.ClusterControllerManager;
import org.apache.helix.integration.manager.MockParticipantManager;
import org.apache.helix.model.BuiltInStateModelDefinitions;
import org.apache.helix.model.IdealState;
import org.apache.helix.model.IdealState.RebalanceMode;
import org.apache.helix.model.MasterSlaveSMD;
import org.apache.helix.tools.ClusterVerifiers.BestPossibleExternalViewVerifier;
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
public class TestRebalancerPersistAssignments extends ZkStandAloneCMTestBase {
private Set<String> _instanceNames = new HashSet<>();
@Override
@BeforeClass
public void beforeClass() throws Exception {
System.out.println("START " + CLASS_NAME + " at " + new Date(System.currentTimeMillis()));
// setup storage cluster
_gSetupTool.addCluster(CLUSTER_NAME, true);
for (int i = 0; i < NODE_NR; i++) {
String storageNodeName = PARTICIPANT_PREFIX + "_" + (START_PORT + i);
_gSetupTool.addInstanceToCluster(CLUSTER_NAME, storageNodeName);
}
// start controller
String controllerName = CONTROLLER_PREFIX + "_0";
_controller = new ClusterControllerManager(ZK_ADDR, CLUSTER_NAME, controllerName);
_controller.syncStart();
// start dummy participants
for (int i = 0; i < NODE_NR; i++) {
String instanceName = PARTICIPANT_PREFIX + "_" + (START_PORT + i);
_instanceNames.add(instanceName);
_participants[i] = new MockParticipantManager(ZK_ADDR, CLUSTER_NAME, instanceName);
_participants[i].syncStart();
}
}
@DataProvider(name = "rebalanceModes")
public static Object[][] rebalanceModes() {
return new RebalanceMode[][] {
{
RebalanceMode.SEMI_AUTO
}, {
RebalanceMode.FULL_AUTO
}
};
}
@Test(dataProvider = "rebalanceModes")
public void testDisablePersist(RebalanceMode rebalanceMode) {
String testDb = "TestDB2-" + rebalanceMode.name();
_gSetupTool.addResourceToCluster(CLUSTER_NAME, testDb, 5,
BuiltInStateModelDefinitions.LeaderStandby.name(), rebalanceMode.name(),
rebalanceMode.equals(RebalanceMode.FULL_AUTO) ? CrushEdRebalanceStrategy.class.getName()
: RebalanceStrategy.DEFAULT_REBALANCE_STRATEGY);
_gSetupTool.rebalanceStorageCluster(CLUSTER_NAME, testDb, 3);
BestPossibleExternalViewVerifier.Builder verifierBuilder =
new BestPossibleExternalViewVerifier.Builder(CLUSTER_NAME).setZkClient(_gZkClient)
.setResources(new HashSet<>(Collections.singleton(testDb)))
.setWaitTillVerify(TestHelper.DEFAULT_REBALANCE_PROCESSING_WAIT_TIME);
Assert.assertTrue(verifierBuilder.build().verifyByPolling());
// kill 1 node
_participants[0].syncStop();
Set<String> liveInstances = new HashSet<>(_instanceNames);
liveInstances.remove(_participants[0].getInstanceName());
verifierBuilder.setExpectLiveInstances(liveInstances);
Assert.assertTrue(verifierBuilder.build().verifyByPolling());
IdealState idealState =
_gSetupTool.getClusterManagementTool().getResourceIdealState(CLUSTER_NAME, testDb);
Set<String> excludedInstances = new HashSet<>();
excludedInstances.add(_participants[0].getInstanceName());
verifyAssignmentInIdealStateWithPersistDisabled(idealState, excludedInstances);
// clean up
_gSetupTool.getClusterManagementTool().dropResource(CLUSTER_NAME, testDb);
_participants[0] =
new MockParticipantManager(ZK_ADDR, CLUSTER_NAME, _participants[0].getInstanceName());
_participants[0].syncStart();
}
@Test(dataProvider = "rebalanceModes", dependsOnMethods = {
"testDisablePersist"
})
public void testEnablePersist(RebalanceMode rebalanceMode) {
String testDb = "TestDB1-" + rebalanceMode.name();
enablePersistBestPossibleAssignment(_gZkClient, CLUSTER_NAME, true);
_gSetupTool.addResourceToCluster(CLUSTER_NAME, testDb, 5,
BuiltInStateModelDefinitions.LeaderStandby.name(), rebalanceMode.name(),
rebalanceMode.equals(RebalanceMode.FULL_AUTO) ? CrushEdRebalanceStrategy.class.getName()
: RebalanceStrategy.DEFAULT_REBALANCE_STRATEGY);
_gSetupTool.rebalanceStorageCluster(CLUSTER_NAME, testDb, 3);
BestPossibleExternalViewVerifier.Builder verifierBuilder =
new BestPossibleExternalViewVerifier.Builder(CLUSTER_NAME).setZkClient(_gZkClient)
.setResources(new HashSet<>(Collections.singleton(testDb)))
.setWaitTillVerify(TestHelper.DEFAULT_REBALANCE_PROCESSING_WAIT_TIME);
Assert.assertTrue(verifierBuilder.build().verifyByPolling());
IdealState idealState =
_gSetupTool.getClusterManagementTool().getResourceIdealState(CLUSTER_NAME, testDb);
verifyAssignmentInIdealStateWithPersistEnabled(idealState, new HashSet<>());
// kill 1 node
_participants[0].syncStop();
Set<String> liveInstances = new HashSet<>(_instanceNames);
liveInstances.remove(_participants[0].getInstanceName());
verifierBuilder.setExpectLiveInstances(liveInstances);
Assert.assertTrue(verifierBuilder.build().verifyByPolling());
idealState = _gSetupTool.getClusterManagementTool().getResourceIdealState(CLUSTER_NAME, testDb);
// verify that IdealState contains updated assignment in it map fields.
Set<String> excludedInstances = new HashSet<>();
excludedInstances.add(_participants[0].getInstanceName());
verifyAssignmentInIdealStateWithPersistEnabled(idealState, excludedInstances);
// clean up
_gSetupTool.getClusterManagementTool().dropResource(CLUSTER_NAME, testDb);
_participants[0] =
new MockParticipantManager(ZK_ADDR, CLUSTER_NAME, _participants[0].getInstanceName());
_participants[0].syncStart();
}
/**
* This test is to test the temporary solution for solving Espresso/Databus back-compatible map
* format issue.
*/
@Test(dependsOnMethods = {
"testDisablePersist"
})
public void testSemiAutoEnablePersistMasterSlave() {
String testDb = "TestDB1-MasterSlave";
enablePersistBestPossibleAssignment(_gZkClient, CLUSTER_NAME, true);
_gSetupTool.addResourceToCluster(CLUSTER_NAME, testDb, 5,
BuiltInStateModelDefinitions.MasterSlave.name(), RebalanceMode.SEMI_AUTO.name());
_gSetupTool.rebalanceStorageCluster(CLUSTER_NAME, testDb, 3);
BestPossibleExternalViewVerifier.Builder verifierBuilder =
new BestPossibleExternalViewVerifier.Builder(CLUSTER_NAME).setZkClient(_gZkClient)
.setResources(new HashSet<>(Collections.singleton(testDb)))
.setWaitTillVerify(TestHelper.DEFAULT_REBALANCE_PROCESSING_WAIT_TIME);
Assert.assertTrue(verifierBuilder.build().verifyByPolling());
IdealState idealState =
_gSetupTool.getClusterManagementTool().getResourceIdealState(CLUSTER_NAME, testDb);
verifySemiAutoMasterSlaveAssignment(idealState);
// kill 1 node
_participants[0].syncStop();
Set<String> liveInstances = new HashSet<>(_instanceNames);
liveInstances.remove(_participants[0].getInstanceName());
verifierBuilder.setExpectLiveInstances(liveInstances);
Assert.assertTrue(verifierBuilder.build().verifyByPolling());
idealState = _gSetupTool.getClusterManagementTool().getResourceIdealState(CLUSTER_NAME, testDb);
verifySemiAutoMasterSlaveAssignment(idealState);
// disable an instance
_gSetupTool.getClusterManagementTool().enableInstance(CLUSTER_NAME,
_participants[1].getInstanceName(), false);
idealState = _gSetupTool.getClusterManagementTool().getResourceIdealState(CLUSTER_NAME, testDb);
verifySemiAutoMasterSlaveAssignment(idealState);
// clean up
_gSetupTool.getClusterManagementTool().dropResource(CLUSTER_NAME, testDb);
_gSetupTool.getClusterManagementTool().enableInstance(CLUSTER_NAME,
_participants[1].getInstanceName(), true);
_participants[0].reset();
_participants[0].syncStart();
}
private void verifySemiAutoMasterSlaveAssignment(IdealState idealState) {
for (String partition : idealState.getPartitionSet()) {
Map<String, String> instanceStateMap = idealState.getInstanceStateMap(partition);
List<String> preferenceList = idealState.getPreferenceList(partition);
int numMaster = 0;
for (String ins : preferenceList) {
Assert.assertTrue(instanceStateMap.containsKey(ins),
String.format("Instance %s from preference list not in the map", ins));
String state = instanceStateMap.get(ins);
Assert.assertTrue(state.equals(MasterSlaveSMD.States.MASTER.name())
|| state.equals(MasterSlaveSMD.States.SLAVE.name()), "Actual State" + state);
if (state.equals(MasterSlaveSMD.States.MASTER.name())) {
numMaster++;
}
}
Assert.assertEquals(numMaster, 1);
}
}
// verify that both list field and map field should be persisted in IS,
// And the disabled or failed instance should not be included in bestPossible assignment.
private void verifyAssignmentInIdealStateWithPersistEnabled(IdealState idealState,
Set<String> excludedInstances) {
for (String partition : idealState.getPartitionSet()) {
Map<String, String> instanceStateMap = idealState.getInstanceStateMap(partition);
Assert.assertNotNull(instanceStateMap);
Assert.assertFalse(instanceStateMap.isEmpty());
Set<String> instancesInMap = instanceStateMap.keySet();
if (idealState.getRebalanceMode() == RebalanceMode.SEMI_AUTO) {
Set<String> instanceInList = idealState.getInstanceSet(partition);
Assert.assertTrue(instanceInList.containsAll(instancesInMap));
}
if (idealState.getRebalanceMode() == RebalanceMode.FULL_AUTO) {
// preference list should be persisted in IS.
List<String> instanceList = idealState.getPreferenceList(partition);
Assert.assertNotNull(instanceList);
Assert.assertFalse(instanceList.isEmpty());
for (String ins : excludedInstances) {
Assert.assertFalse(instanceList.contains(ins));
}
}
for (String ins : excludedInstances) {
Assert.assertFalse(instancesInMap.contains(ins));
}
}
}
// verify that the bestPossible assignment should be empty or should not be changed.
private void verifyAssignmentInIdealStateWithPersistDisabled(IdealState idealState,
Set<String> excludedInstances) {
boolean mapFieldEmpty = true;
boolean assignmentNotChanged = false;
for (String partition : idealState.getPartitionSet()) {
Map<String, String> instanceStateMap = idealState.getInstanceStateMap(partition);
if (instanceStateMap == null || instanceStateMap.isEmpty()) {
continue;
}
mapFieldEmpty = false;
Set<String> instancesInMap = instanceStateMap.keySet();
for (String ins : excludedInstances) {
if (instancesInMap.contains(ins)) {
// if at least one excluded instance is included, it means assignment was not updated.
assignmentNotChanged = true;
}
if (idealState.getRebalanceMode() == RebalanceMode.FULL_AUTO) {
List<String> instanceList = idealState.getPreferenceList(partition);
if (instanceList.contains(ins)) {
assignmentNotChanged = true;
}
}
}
}
Assert.assertTrue((mapFieldEmpty || assignmentNotChanged),
"BestPossible assignment was updated.");
}
}