/* * Licensed to ElasticSearch and Shay Banon under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. ElasticSearch 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.elasticsearch.test.integration.indices.settings; import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse; import org.elasticsearch.action.admin.cluster.health.ClusterHealthStatus; import org.elasticsearch.action.count.CountResponse; import org.elasticsearch.client.Client; import org.elasticsearch.test.integration.AbstractNodesTests; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import static org.elasticsearch.client.AdminRequests.createIndexRequest; import static org.elasticsearch.common.settings.ImmutableSettings.settingsBuilder; import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder; import static org.elasticsearch.index.query.QueryBuilders.matchAllQuery; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.equalTo; /** * */ public class UpdateNumberOfReplicasTests extends AbstractNodesTests { protected Client client1; protected Client client2; @BeforeMethod public void startNodes() { startNode("node1"); startNode("node2"); client1 = getClient1(); client2 = getClient2(); } @AfterMethod public void closeNodes() { client1.close(); client2.close(); closeAllNodes(); } protected Client getClient1() { return client("node1"); } protected Client getClient2() { return client("node2"); } @Test public void simpleUpdateNumberOfReplicasTests() throws Exception { logger.info("Creating index test"); client1.admin().indices().create(createIndexRequest("test")).actionGet(); logger.info("Running Cluster Health"); ClusterHealthResponse clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().execute().actionGet(); logger.info("Done Cluster Health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(5)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(1)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(10)); for (int i = 0; i < 10; i++) { client1.prepareIndex("test", "type1", Integer.toString(i)).setSource(jsonBuilder().startObject() .field("value", "test" + i) .endObject()).execute().actionGet(); } client1.admin().indices().prepareRefresh().execute().actionGet(); for (int i = 0; i < 10; i++) { CountResponse countResponse = client1.prepareCount().setQuery(matchAllQuery()).execute().actionGet(); assertThat(countResponse.count(), equalTo(10l)); } logger.info("Increasing the number of replicas from 1 to 2"); client1.admin().indices().prepareUpdateSettings("test").setSettings(settingsBuilder().put("index.number_of_replicas", 2)).execute().actionGet(); Thread.sleep(200); logger.info("Running Cluster Health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForYellowStatus().setWaitForActiveShards(10).execute().actionGet(); logger.info("Done Cluster Health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.YELLOW)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(5)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(2)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(10)); logger.info("starting another node to new replicas will be allocated to it"); startNode("node3"); Thread.sleep(100); logger.info("Running Cluster Health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForNodes("3").execute().actionGet(); logger.info("Done Cluster Health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(5)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(2)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(15)); for (int i = 0; i < 10; i++) { CountResponse countResponse = client1.prepareCount().setQuery(matchAllQuery()).execute().actionGet(); assertThat(countResponse.count(), equalTo(10l)); } logger.info("Decreasing number of replicas from 2 to 0"); client1.admin().indices().prepareUpdateSettings("test").setSettings(settingsBuilder().put("index.number_of_replicas", 0)).execute().actionGet(); Thread.sleep(200); logger.info("Running Cluster Health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForNodes("3").execute().actionGet(); logger.info("Done Cluster Health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(5)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(0)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(5)); for (int i = 0; i < 10; i++) { CountResponse countResponse = client1.prepareCount().setQuery(matchAllQuery()).execute().actionGet(); assertThat(countResponse.shardFailures().toString(), countResponse.failedShards(), equalTo(0)); assertThat(countResponse.count(), equalTo(10l)); } } @Test public void testAutoExpandNumberOfReplicas0ToData() { logger.info("--> creating index test with auto expand replicas"); client1.admin().indices().prepareCreate("test").setSettings(settingsBuilder().put("number_of_shards", 2).put("auto_expand_replicas", "0-all")).execute().actionGet(); logger.info("--> running cluster health"); ClusterHealthResponse clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(4).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(1)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(4)); logger.info("--> add another node, should increase the number of replicas"); startNode("node3"); logger.info("--> running cluster health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(6).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(2)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(6)); logger.info("--> closing one node"); closeNode("node3"); logger.info("--> running cluster health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(4).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(1)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(4)); logger.info("--> closing another node"); closeNode("node2"); logger.info("--> running cluster health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(2).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(0)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(2)); } @Test public void testAutoExpandNumberReplicas1ToData() { logger.info("--> creating index test with auto expand replicas"); client1.admin().indices().prepareCreate("test").setSettings(settingsBuilder().put("number_of_shards", 2).put("auto_expand_replicas", "1-all")).execute().actionGet(); logger.info("--> running cluster health"); ClusterHealthResponse clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(4).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(1)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(4)); logger.info("--> add another node, should increase the number of replicas"); startNode("node3"); logger.info("--> running cluster health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(6).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(2)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(6)); logger.info("--> closing one node"); closeNode("node3"); logger.info("--> running cluster health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(4).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(1)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(4)); logger.info("--> closing another node"); closeNode("node2"); logger.info("--> running cluster health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForYellowStatus().setWaitForActiveShards(2).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.YELLOW)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(1)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(2)); } @Test public void testAutoExpandNumberReplicas2() { logger.info("--> add another node"); startNode("node3"); logger.info("--> creating index test with auto expand replicas set to 0-2"); client1.admin().indices().prepareCreate("test").setSettings(settingsBuilder().put("number_of_shards", 2).put("auto_expand_replicas", "0-2")).execute().actionGet(); logger.info("--> running cluster health"); ClusterHealthResponse clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(6).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(2)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(6)); logger.info("--> add two more nodes"); startNode("node4"); startNode("node5"); logger.info("--> update the auto expand replicas to 0-3"); client1.admin().indices().prepareUpdateSettings("test").setSettings(settingsBuilder().put("auto_expand_replicas", "0-3")).execute().actionGet(); logger.info("--> running cluster health"); clusterHealth = client1.admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForActiveShards(8).execute().actionGet(); logger.info("--> done cluster health, status " + clusterHealth.status()); assertThat(clusterHealth.timedOut(), equalTo(false)); assertThat(clusterHealth.status(), equalTo(ClusterHealthStatus.GREEN)); assertThat(clusterHealth.indices().get("test").activePrimaryShards(), equalTo(2)); assertThat(clusterHealth.indices().get("test").numberOfReplicas(), equalTo(3)); assertThat(clusterHealth.indices().get("test").activeShards(), equalTo(8)); } }