blob: bb6513aea7bd920052969b643779f13a7d13fa95 [file] [log] [blame]
package org.apache.helix.integration.rebalancer;
/*
* 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.HashSet;
import java.util.Map;
import java.util.Set;
import org.apache.helix.HelixAdmin;
import org.apache.helix.TestHelper;
import org.apache.helix.controller.rebalancer.AutoRebalancer;
import org.apache.helix.controller.rebalancer.strategy.CrushEdRebalanceStrategy;
import org.apache.helix.integration.common.ZkStandAloneCMTestBase;
import org.apache.helix.integration.manager.MockParticipantManager;
import org.apache.helix.model.ExternalView;
import org.apache.helix.model.IdealState;
import org.apache.helix.model.IdealState.RebalanceMode;
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class TestAutoRebalanceWithDisabledInstance extends ZkStandAloneCMTestBase {
private static String TEST_DB_2 = "TestDB2";
@BeforeClass
@Override
public void beforeClass() throws Exception {
super.beforeClass();
_gSetupTool.addResourceToCluster(CLUSTER_NAME, TEST_DB_2, _PARTITIONS, STATE_MODEL,
RebalanceMode.FULL_AUTO.name(), CrushEdRebalanceStrategy.class.getName());
setupAutoRebalancer();
_gSetupTool.rebalanceResource(CLUSTER_NAME, TEST_DB_2, _replica);
Assert.assertTrue(_clusterVerifier.verifyByPolling());
}
@Test()
public void testDisableEnableInstanceAutoRebalance() throws Exception {
String disabledInstance = _participants[0].getInstanceName();
Set<String> currentPartitions =
getCurrentPartitionsOnInstance(CLUSTER_NAME, TEST_DB_2, disabledInstance);
Assert.assertFalse(currentPartitions.isEmpty());
// disable instance
_gSetupTool.getClusterManagementTool().enableInstance(CLUSTER_NAME, disabledInstance, false);
// check that the instance is really disabled
boolean result = TestHelper.verify(
() -> !_gSetupTool.getClusterManagementTool()
.getInstanceConfig(CLUSTER_NAME, disabledInstance).getInstanceEnabled(),
TestHelper.WAIT_DURATION);
Assert.assertTrue(result);
Assert.assertTrue(_clusterVerifier.verifyByPolling());
currentPartitions = getCurrentPartitionsOnInstance(CLUSTER_NAME, TEST_DB_2, disabledInstance);
Assert.assertTrue(currentPartitions.isEmpty());
// enable instance
_gSetupTool.getClusterManagementTool().enableInstance(CLUSTER_NAME, disabledInstance, true);
// check that the instance is really enabled
result = TestHelper.verify(
() -> _gSetupTool.getClusterManagementTool()
.getInstanceConfig(CLUSTER_NAME, disabledInstance).getInstanceEnabled(),
TestHelper.WAIT_DURATION);
Assert.assertTrue(result);
Assert.assertTrue(_clusterVerifier.verifyByPolling());
currentPartitions = getCurrentPartitionsOnInstance(CLUSTER_NAME, TEST_DB_2, disabledInstance);
Assert.assertFalse(currentPartitions.isEmpty());
}
@Test()
public void testAddDisabledInstanceAutoRebalance() throws Exception {
// add disabled instance.
String nodeName = PARTICIPANT_PREFIX + "_" + (START_PORT + NODE_NR);
_gSetupTool.addInstanceToCluster(CLUSTER_NAME, nodeName);
MockParticipantManager participant =
new MockParticipantManager(ZK_ADDR, CLUSTER_NAME, nodeName);
_gSetupTool.getClusterManagementTool().enableInstance(CLUSTER_NAME, nodeName, false);
// check that the instance is really disabled
boolean result =
TestHelper
.verify(
() -> !_gSetupTool.getClusterManagementTool()
.getInstanceConfig(CLUSTER_NAME, nodeName).getInstanceEnabled(),
TestHelper.WAIT_DURATION);
Assert.assertTrue(result);
participant.syncStart();
Assert.assertTrue(_clusterVerifier.verifyByPolling());
Set<String> currentPartitions =
getCurrentPartitionsOnInstance(CLUSTER_NAME, TEST_DB_2, nodeName);
Assert.assertTrue(currentPartitions.isEmpty());
// enable instance
_gSetupTool.getClusterManagementTool().enableInstance(CLUSTER_NAME, nodeName, true);
// check that the instance is really enabled
result =
TestHelper
.verify(
() -> _gSetupTool.getClusterManagementTool()
.getInstanceConfig(CLUSTER_NAME, nodeName).getInstanceEnabled(),
TestHelper.WAIT_DURATION);
Assert.assertTrue(result);
Assert.assertTrue(_clusterVerifier.verifyByPolling());
currentPartitions = getCurrentPartitionsOnInstance(CLUSTER_NAME, TEST_DB_2, nodeName);
Assert.assertFalse(currentPartitions.isEmpty());
// Kill the newly added MockParticipant so that the cluster could be cleaned up
participant.syncStop();
}
private Set<String> getCurrentPartitionsOnInstance(String cluster, String dbName,
String instance) {
HelixAdmin admin = _gSetupTool.getClusterManagementTool();
Set<String> partitionSet = new HashSet<>();
ExternalView ev = admin.getResourceExternalView(cluster, dbName);
for (String partition : ev.getRecord().getMapFields().keySet()) {
Map<String, String> assignments = ev.getRecord().getMapField(partition);
for (String ins : assignments.keySet()) {
if (ins.equals(instance)) {
partitionSet.add(partition);
}
}
}
return partitionSet;
}
// Ensure that we are testing the AutoRebalancer.
private void setupAutoRebalancer() {
HelixAdmin admin = _gSetupTool.getClusterManagementTool();
for (String resourceName : _gSetupTool.getClusterManagementTool()
.getResourcesInCluster(CLUSTER_NAME)) {
IdealState idealState = admin.getResourceIdealState(CLUSTER_NAME, resourceName);
idealState.setRebalancerClassName(AutoRebalancer.class.getName());
admin.setResourceIdealState(CLUSTER_NAME, resourceName, idealState);
}
}
}