blob: 1cec5be7bd68115b5a9a604f328cfe11f979f84a [file] [log] [blame]
/*
* 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.
*/
package org.apache.geode.management.internal.rest;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.apache.geode.management.api.ClusterManagementOperationResult;
import org.apache.geode.management.api.ClusterManagementService;
import org.apache.geode.management.client.ClusterManagementServiceBuilder;
import org.apache.geode.management.configuration.Region;
import org.apache.geode.management.configuration.RegionType;
import org.apache.geode.management.operation.RebalanceOperation;
import org.apache.geode.management.runtime.RebalanceRegionResult;
import org.apache.geode.management.runtime.RebalanceResult;
import org.apache.geode.test.dunit.IgnoredException;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
import org.apache.geode.test.dunit.rules.MemberVM;
import org.apache.geode.test.junit.rules.GfshCommandRule;
public class RebalanceManagementDunitTest {
@ClassRule
public static ClusterStartupRule cluster = new ClusterStartupRule();
private static MemberVM locator, server1, server2;
private static ClusterManagementService client;
@ClassRule
public static GfshCommandRule gfsh = new GfshCommandRule();
@BeforeClass
public static void beforeClass() throws Exception {
locator = cluster.startLocatorVM(0, l -> l.withHttpService());
server1 = cluster.startServerVM(1, "group1", locator.getPort());
server2 = cluster.startServerVM(2, "group2", locator.getPort());
client = ClusterManagementServiceBuilder.buildWithHostAddress()
.setHostAddress("localhost", locator.getHttpPort()).build();
gfsh.connect(locator);
// create regions
Region regionConfig = new Region();
regionConfig.setName("customers1");
regionConfig.setType(RegionType.PARTITION);
client.create(regionConfig);
locator.waitUntilRegionIsReadyOnExactlyThisManyServers("/customers1", 2);
regionConfig = new Region();
regionConfig.setName("customers2");
regionConfig.setType(RegionType.PARTITION);
client.create(regionConfig);
locator.waitUntilRegionIsReadyOnExactlyThisManyServers("/customers2", 2);
}
@Test
public void rebalance() throws Exception {
ClusterManagementOperationResult<RebalanceResult> cmr =
client.start(new RebalanceOperation());
assertThat(cmr.isSuccessful()).isTrue();
long now = System.currentTimeMillis();
assertThat(cmr.getOperationStart().getTime()).isBetween(now - 60000, now);
RebalanceResult result = cmr.getFutureResult().get();
long end = cmr.getFutureOperationEnded().get().getTime();
now = System.currentTimeMillis();
assertThat(end).isBetween(now - 60000, now)
.isGreaterThanOrEqualTo(cmr.getOperationStart().getTime());
assertThat(result.getRebalanceRegionResults().size()).isEqualTo(2);
RebalanceRegionResult firstRegionSummary = result.getRebalanceRegionResults().get(0);
assertThat(firstRegionSummary.getRegionName()).isIn("customers1", "customers2");
}
@Test
public void rebalanceExistRegion() throws Exception {
List<String> includeRegions = new ArrayList<>();
includeRegions.add("customers2");
RebalanceOperation op = new RebalanceOperation();
op.setIncludeRegions(includeRegions);
ClusterManagementOperationResult<RebalanceResult> cmr = client.start(op);
assertThat(cmr.isSuccessful()).isTrue();
RebalanceResult result = cmr.getFutureResult().get();
assertThat(result.getRebalanceRegionResults().size()).isEqualTo(1);
RebalanceRegionResult firstRegionSummary = result.getRebalanceRegionResults().get(0);
assertThat(firstRegionSummary.getRegionName()).isEqualTo("customers2");
assertThat(firstRegionSummary.getBucketCreateBytes()).isEqualTo(0);
assertThat(firstRegionSummary.getTimeInMilliseconds()).isGreaterThanOrEqualTo(0);
}
@Test
public void rebalanceNonExistRegion() throws Exception {
IgnoredException.addIgnoredException(ExecutionException.class);
IgnoredException.addIgnoredException(RuntimeException.class);
RebalanceOperation op = new RebalanceOperation();
op.setIncludeRegions(Collections.singletonList("nonexisting_region"));
ClusterManagementOperationResult<RebalanceResult> cmr = client.start(op);
assertThat(cmr.isSuccessful()).isTrue();
CompletableFuture<RebalanceResult> future = cmr.getFutureResult();
CompletableFuture<String> message = new CompletableFuture<>();
future.exceptionally((ex) -> {
message.complete(ex.getMessage());
return null;
}).get();
assertThat(future.isCompletedExceptionally()).isTrue();
assertThat(message.get()).contains("For the region /nonexisting_region, no member was found");
}
}