/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.cluster.health; import org.opensearch.Version; import org.opensearch.cluster.ClusterName; import org.opensearch.cluster.ClusterState; import org.opensearch.cluster.OpenSearchAllocationTestCase; import org.opensearch.cluster.metadata.IndexMetadata; import org.opensearch.cluster.metadata.Metadata; import org.opensearch.cluster.node.DiscoveryNodeRole; import org.opensearch.cluster.node.DiscoveryNodes; import org.opensearch.cluster.routing.RoutingTable; import org.opensearch.cluster.routing.allocation.AllocationService; import java.util.Collections; public class ClusterHealthAllocationTests extends OpenSearchAllocationTestCase { public void testClusterHealth() { ClusterState clusterState = ClusterState.builder(ClusterName.DEFAULT).build(); if (randomBoolean()) { clusterState = addNode(clusterState, "node_m", true); } assertEquals(ClusterHealthStatus.GREEN, getClusterHealthStatus(clusterState)); Metadata metadata = Metadata.builder() .put(IndexMetadata.builder("test").settings(settings(Version.CURRENT)).numberOfShards(2).numberOfReplicas(1)) .build(); RoutingTable routingTable = RoutingTable.builder().addAsNew(metadata.index("test")).build(); clusterState = ClusterState.builder(clusterState).metadata(metadata).routingTable(routingTable).build(); MockAllocationService allocation = createAllocationService(); clusterState = applyStartedShardsUntilNoChange(clusterState, allocation); assertEquals(0, clusterState.nodes().getDataNodes().size()); assertEquals(ClusterHealthStatus.RED, getClusterHealthStatus(clusterState)); clusterState = addNode(clusterState, "node_d1", false); assertEquals(1, clusterState.nodes().getDataNodes().size()); clusterState = applyStartedShardsUntilNoChange(clusterState, allocation); assertEquals(ClusterHealthStatus.YELLOW, getClusterHealthStatus(clusterState)); clusterState = addNode(clusterState, "node_d2", false); clusterState = applyStartedShardsUntilNoChange(clusterState, allocation); assertEquals(ClusterHealthStatus.GREEN, getClusterHealthStatus(clusterState)); clusterState = removeNode(clusterState, "node_d1", allocation); assertEquals(ClusterHealthStatus.YELLOW, getClusterHealthStatus(clusterState)); clusterState = removeNode(clusterState, "node_d2", allocation); assertEquals(ClusterHealthStatus.RED, getClusterHealthStatus(clusterState)); routingTable = RoutingTable.builder(routingTable).remove("test").build(); metadata = Metadata.builder(clusterState.metadata()).remove("test").build(); clusterState = ClusterState.builder(clusterState).routingTable(routingTable).metadata(metadata).build(); assertEquals(0, clusterState.nodes().getDataNodes().size()); assertEquals(ClusterHealthStatus.GREEN, getClusterHealthStatus(clusterState)); } private ClusterState addNode(ClusterState clusterState, String nodeName, boolean isClusterManager) { DiscoveryNodes.Builder nodeBuilder = DiscoveryNodes.builder(clusterState.getNodes()); nodeBuilder.add( newNode( nodeName, Collections.singleton(isClusterManager ? DiscoveryNodeRole.CLUSTER_MANAGER_ROLE : DiscoveryNodeRole.DATA_ROLE) ) ); return ClusterState.builder(clusterState).nodes(nodeBuilder).build(); } private ClusterState removeNode(ClusterState clusterState, String nodeName, AllocationService allocationService) { return allocationService.disassociateDeadNodes( ClusterState.builder(clusterState).nodes(DiscoveryNodes.builder(clusterState.getNodes()).remove(nodeName)).build(), true, "reroute" ); } private ClusterHealthStatus getClusterHealthStatus(ClusterState clusterState) { return new ClusterStateHealth(clusterState).getStatus(); } }