From d2289d2def7557f85bb53f24c50c4f515cbf6233 Mon Sep 17 00:00:00 2001 From: Abdul Muneer Kolarkunnu Date: Tue, 10 Sep 2024 19:52:54 +0530 Subject: [PATCH] [Metadata Immutability] Change different indices lookup objects from array type to lists Changed the arrays to immutable List instances, added new versions of the getters which returns List instances. Resolves #8647 Signed-off-by: Abdul Muneer Kolarkunnu --- CHANGELOG-3.0.md | 1 + .../cluster/health/ClusterHealthResponse.java | 11 +-- .../health/TransportClusterHealthAction.java | 9 +- .../datastream/GetDataStreamAction.java | 2 +- .../cluster/health/ClusterStateHealth.java | 7 +- .../metadata/IndexNameExpressionResolver.java | 16 ++-- .../opensearch/cluster/metadata/Metadata.java | 83 ++++++++----------- .../recovery/RemoteStoreRestoreService.java | 2 +- .../health/ClusterHealthResponsesTests.java | 5 +- .../TransportClusterHealthActionTests.java | 5 +- .../health/ClusterStateHealthTests.java | 18 ++-- 11 files changed, 76 insertions(+), 83 deletions(-) diff --git a/CHANGELOG-3.0.md b/CHANGELOG-3.0.md index 48d978bede420..4edde351f5677 100644 --- a/CHANGELOG-3.0.md +++ b/CHANGELOG-3.0.md @@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Add task completion count in search backpressure stats API ([#10028](https://github.com/opensearch-project/OpenSearch/pull/10028/)) - Deprecate CamelCase `PathHierarchy` tokenizer name in favor to lowercase `path_hierarchy` ([#10894](https://github.com/opensearch-project/OpenSearch/pull/10894)) - Breaking change: Do not request "search_pipelines" metrics by default in NodesInfoRequest ([#12497](https://github.com/opensearch-project/OpenSearch/pull/12497)) +- Breaking change: Modify the utility APIs in the Metadata to get different indices ([#14723](https://github.com/opensearch-project/OpenSearch/pull/14723)) ### Deprecated diff --git a/server/src/main/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponse.java b/server/src/main/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponse.java index 2dcfb58c3d7b8..d20c201c4f97b 100644 --- a/server/src/main/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponse.java +++ b/server/src/main/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponse.java @@ -60,6 +60,7 @@ import java.util.Locale; import java.util.Map; import java.util.Objects; +import java.util.Set; import static java.util.Collections.emptyMap; import static org.opensearch.core.xcontent.ConstructingObjectParser.constructorArg; @@ -215,13 +216,13 @@ public ClusterHealthResponse(StreamInput in) throws IOException { } /** needed for plugins BWC */ - public ClusterHealthResponse(String clusterName, String[] concreteIndices, ClusterState clusterState) { + public ClusterHealthResponse(String clusterName, Set concreteIndices, ClusterState clusterState) { this(clusterName, concreteIndices, clusterState, -1, -1, -1, TimeValue.timeValueHours(0)); } public ClusterHealthResponse( String clusterName, - String[] concreteIndices, + Set concreteIndices, ClusterState clusterState, int numberOfPendingTasks, int numberOfInFlightFetch, @@ -239,7 +240,7 @@ public ClusterHealthResponse( public ClusterHealthResponse( String clusterName, - String[] concreteIndices, + Set concreteIndices, ClusterHealthRequest clusterHealthRequest, ClusterState clusterState, int numberOfPendingTasks, @@ -262,7 +263,7 @@ public ClusterHealthResponse( String clusterName, ClusterState clusterState, ClusterSettings clusterSettings, - String[] concreteIndices, + Set concreteIndices, String awarenessAttributeName, int numberOfPendingTasks, int numberOfInFlightFetch, @@ -286,7 +287,7 @@ public ClusterHealthResponse( ClusterHealthRequest clusterHealthRequest, ClusterState clusterState, ClusterSettings clusterSettings, - String[] concreteIndices, + Set concreteIndices, String awarenessAttributeName, int numberOfPendingTasks, int numberOfInFlightFetch, diff --git a/server/src/main/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthAction.java b/server/src/main/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthAction.java index 8f0202e6d1ed0..623a4ef1e0a68 100644 --- a/server/src/main/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthAction.java +++ b/server/src/main/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthAction.java @@ -58,7 +58,6 @@ import org.opensearch.common.inject.Inject; import org.opensearch.common.unit.TimeValue; import org.opensearch.core.action.ActionListener; -import org.opensearch.core.common.Strings; import org.opensearch.core.common.io.stream.StreamInput; import org.opensearch.core.common.util.CollectionUtils; import org.opensearch.discovery.ClusterManagerNotDiscoveredException; @@ -70,6 +69,8 @@ import org.opensearch.transport.TransportService; import java.io.IOException; +import java.util.Collections; +import java.util.Set; import java.util.function.Consumer; import java.util.function.Predicate; @@ -494,7 +495,7 @@ private ClusterHealthResponse clusterHealth( ); } - String[] concreteIndices; + Set concreteIndices; if (request.level().equals(ClusterHealthRequest.Level.AWARENESS_ATTRIBUTES)) { String awarenessAttribute = request.getAwarenessAttribute(); concreteIndices = clusterState.getMetadata().getConcreteAllIndices(); @@ -512,12 +513,12 @@ private ClusterHealthResponse clusterHealth( } try { - concreteIndices = indexNameExpressionResolver.concreteIndexNames(clusterState, request); + concreteIndices = Set.of(indexNameExpressionResolver.concreteIndexNames(clusterState, request)); } catch (IndexNotFoundException e) { // one of the specified indices is not there - treat it as RED. ClusterHealthResponse response = new ClusterHealthResponse( clusterState.getClusterName().value(), - Strings.EMPTY_ARRAY, + Collections.emptySet(), request, clusterState, numberOfPendingTasks, diff --git a/server/src/main/java/org/opensearch/action/admin/indices/datastream/GetDataStreamAction.java b/server/src/main/java/org/opensearch/action/admin/indices/datastream/GetDataStreamAction.java index 1db4e85887c23..d44939aa97861 100644 --- a/server/src/main/java/org/opensearch/action/admin/indices/datastream/GetDataStreamAction.java +++ b/server/src/main/java/org/opensearch/action/admin/indices/datastream/GetDataStreamAction.java @@ -336,7 +336,7 @@ protected void clusterManagerOperation(Request request, ClusterState state, Acti } ClusterStateHealth streamHealth = new ClusterStateHealth( state, - dataStream.getIndices().stream().map(Index::getName).toArray(String[]::new) + dataStream.getIndices().stream().map(Index::getName).collect(Collectors.toSet()) ); dataStreamInfos.add(new Response.DataStreamInfo(dataStream, streamHealth.getStatus(), indexTemplate)); } diff --git a/server/src/main/java/org/opensearch/cluster/health/ClusterStateHealth.java b/server/src/main/java/org/opensearch/cluster/health/ClusterStateHealth.java index f6cfdd3c42e0c..c559cc7b6e9b2 100644 --- a/server/src/main/java/org/opensearch/cluster/health/ClusterStateHealth.java +++ b/server/src/main/java/org/opensearch/cluster/health/ClusterStateHealth.java @@ -48,6 +48,7 @@ import java.util.List; import java.util.Map; import java.util.Objects; +import java.util.Set; /** * Cluster state health information @@ -86,9 +87,9 @@ public ClusterStateHealth(final ClusterState clusterState, final ClusterHealthRe * Creates a new ClusterStateHealth instance considering the current cluster state and the provided index names. * * @param clusterState The current cluster state. Must not be null. - * @param concreteIndices An array of index names to consider. Must not be null but may be empty. + * @param concreteIndices A set of index names to consider. Must not be null but may be empty. */ - public ClusterStateHealth(final ClusterState clusterState, final String[] concreteIndices) { + public ClusterStateHealth(final ClusterState clusterState, final Set concreteIndices) { numberOfNodes = clusterState.nodes().getSize(); numberOfDataNodes = clusterState.nodes().getDataNodes().size(); hasDiscoveredClusterManager = clusterState.nodes().getClusterManagerNodeId() != null; @@ -152,7 +153,7 @@ public ClusterStateHealth(final ClusterState clusterState, final String[] concre public ClusterStateHealth( final ClusterState clusterState, - final String[] concreteIndices, + final Set concreteIndices, final ClusterHealthRequest.Level healthLevel ) { numberOfNodes = clusterState.nodes().getSize(); diff --git a/server/src/main/java/org/opensearch/cluster/metadata/IndexNameExpressionResolver.java b/server/src/main/java/org/opensearch/cluster/metadata/IndexNameExpressionResolver.java index 24ff83d638d4b..f351b739c96fb 100644 --- a/server/src/main/java/org/opensearch/cluster/metadata/IndexNameExpressionResolver.java +++ b/server/src/main/java/org/opensearch/cluster/metadata/IndexNameExpressionResolver.java @@ -706,7 +706,7 @@ public Map> resolveSearchRoutingAllIndices(Metadata metadata if (routing != null) { Set r = Sets.newHashSet(Strings.splitStringByCommaToArray(routing)); Map> routings = new HashMap<>(); - String[] concreteIndices = metadata.getConcreteAllIndices(); + Set concreteIndices = metadata.getConcreteAllIndices(); for (String index : concreteIndices) { routings.put(index, r); } @@ -746,7 +746,7 @@ static boolean isExplicitAllPattern(Collection aliasesOrIndices) { */ boolean isPatternMatchingAllIndices(Metadata metadata, String[] indicesOrAliases, String[] concreteIndices) { // if we end up matching on all indices, check, if its a wildcard parameter, or a "-something" structure - if (concreteIndices.length == metadata.getConcreteAllIndices().length && indicesOrAliases.length > 0) { + if (concreteIndices.length == metadata.getConcreteAllIndices().size() && indicesOrAliases.length > 0) { // we might have something like /-test1,+test1 that would identify all indices // or something like /-test1 with test1 index missing and IndicesOptions.lenient() @@ -1182,17 +1182,17 @@ private boolean isEmptyOrTrivialWildcard(List expressions) { private static List resolveEmptyOrTrivialWildcard(IndicesOptions options, Metadata metadata) { if (options.expandWildcardsOpen() && options.expandWildcardsClosed() && options.expandWildcardsHidden()) { - return Arrays.asList(metadata.getConcreteAllIndices()); + return List.copyOf(metadata.getConcreteAllIndices()); } else if (options.expandWildcardsOpen() && options.expandWildcardsClosed()) { - return Arrays.asList(metadata.getConcreteVisibleIndices()); + return metadata.getConcreteVisibleIndices(); } else if (options.expandWildcardsOpen() && options.expandWildcardsHidden()) { - return Arrays.asList(metadata.getConcreteAllOpenIndices()); + return metadata.getConcreteAllOpenIndices(); } else if (options.expandWildcardsOpen()) { - return Arrays.asList(metadata.getConcreteVisibleOpenIndices()); + return metadata.getConcreteVisibleOpenIndices(); } else if (options.expandWildcardsClosed() && options.expandWildcardsHidden()) { - return Arrays.asList(metadata.getConcreteAllClosedIndices()); + return metadata.getConcreteAllClosedIndices(); } else if (options.expandWildcardsClosed()) { - return Arrays.asList(metadata.getConcreteVisibleClosedIndices()); + return metadata.getConcreteVisibleClosedIndices(); } else { return Collections.emptyList(); } diff --git a/server/src/main/java/org/opensearch/cluster/metadata/Metadata.java b/server/src/main/java/org/opensearch/cluster/metadata/Metadata.java index 600f408cc963b..b5cc4d81e6774 100644 --- a/server/src/main/java/org/opensearch/cluster/metadata/Metadata.java +++ b/server/src/main/java/org/opensearch/cluster/metadata/Metadata.java @@ -272,12 +272,12 @@ static Custom fromXContent(XContentParser parser, String name) throws IOExceptio private final transient int totalNumberOfShards; // Transient ? not serializable anyway? private final int totalOpenIndexShards; - private final String[] allIndices; - private final String[] visibleIndices; - private final String[] allOpenIndices; - private final String[] visibleOpenIndices; - private final String[] allClosedIndices; - private final String[] visibleClosedIndices; + private final Set allIndices; + private final List visibleIndices; + private final List allOpenIndices; + private final List visibleOpenIndices; + private final List allClosedIndices; + private final List visibleClosedIndices; private final SortedMap indicesLookup; @@ -294,12 +294,12 @@ static Custom fromXContent(XContentParser parser, String name) throws IOExceptio final Map indices, final Map templates, final Map customs, - String[] allIndices, - String[] visibleIndices, - String[] allOpenIndices, - String[] visibleOpenIndices, - String[] allClosedIndices, - String[] visibleClosedIndices, + Set allIndices, + List visibleIndices, + List allOpenIndices, + List visibleOpenIndices, + List allClosedIndices, + List visibleClosedIndices, SortedMap indicesLookup, Map> systemTemplatesLookup ) { @@ -325,12 +325,12 @@ static Custom fromXContent(XContentParser parser, String name) throws IOExceptio this.totalNumberOfShards = totalNumberOfShards; this.totalOpenIndexShards = totalOpenIndexShards; - this.allIndices = allIndices; - this.visibleIndices = visibleIndices; - this.allOpenIndices = allOpenIndices; - this.visibleOpenIndices = visibleOpenIndices; - this.allClosedIndices = allClosedIndices; - this.visibleClosedIndices = visibleClosedIndices; + this.allIndices = Collections.unmodifiableSet(allIndices); + this.visibleIndices = Collections.unmodifiableList(visibleIndices); + this.allOpenIndices = Collections.unmodifiableList(allOpenIndices); + this.visibleOpenIndices = Collections.unmodifiableList(visibleOpenIndices); + this.allClosedIndices = Collections.unmodifiableList(allClosedIndices); + this.visibleClosedIndices = Collections.unmodifiableList(visibleClosedIndices); this.indicesLookup = indicesLookup; this.systemTemplatesLookup = systemTemplatesLookup; } @@ -608,42 +608,42 @@ private static String mergePaths(String path, String field) { /** * Returns all the concrete indices. */ - public String[] getConcreteAllIndices() { + public Set getConcreteAllIndices() { return allIndices; } /** * Returns all the concrete indices that are not hidden. */ - public String[] getConcreteVisibleIndices() { + public List getConcreteVisibleIndices() { return visibleIndices; } /** * Returns all of the concrete indices that are open. */ - public String[] getConcreteAllOpenIndices() { + public List getConcreteAllOpenIndices() { return allOpenIndices; } /** * Returns all of the concrete indices that are open and not hidden. */ - public String[] getConcreteVisibleOpenIndices() { + public List getConcreteVisibleOpenIndices() { return visibleOpenIndices; } /** * Returns all of the concrete indices that are closed. */ - public String[] getConcreteAllClosedIndices() { + public List getConcreteAllClosedIndices() { return allClosedIndices; } /** * Returns all of the concrete indices that are closed and not hidden. */ - public String[] getConcreteVisibleClosedIndices() { + public List getConcreteVisibleClosedIndices() { return visibleClosedIndices; } @@ -1647,12 +1647,12 @@ protected Metadata buildMetadataWithPreviousIndicesLookups() { indices, templates, customs, - Arrays.copyOf(previousMetadata.allIndices, previousMetadata.allIndices.length), - Arrays.copyOf(previousMetadata.visibleIndices, previousMetadata.visibleIndices.length), - Arrays.copyOf(previousMetadata.allOpenIndices, previousMetadata.allOpenIndices.length), - Arrays.copyOf(previousMetadata.visibleOpenIndices, previousMetadata.visibleOpenIndices.length), - Arrays.copyOf(previousMetadata.allClosedIndices, previousMetadata.allClosedIndices.length), - Arrays.copyOf(previousMetadata.visibleClosedIndices, previousMetadata.visibleClosedIndices.length), + previousMetadata.allIndices, + previousMetadata.visibleIndices, + previousMetadata.allOpenIndices, + previousMetadata.visibleOpenIndices, + previousMetadata.allClosedIndices, + previousMetadata.visibleClosedIndices, Collections.unmodifiableSortedMap(previousMetadata.indicesLookup), systemTemplatesLookup ); @@ -1749,17 +1749,6 @@ protected Metadata buildMetadataWithRecomputedIndicesLookups() { validateDataStreams(indicesLookup, (DataStreamMetadata) customs.get(DataStreamMetadata.TYPE)); - // build all concrete indices arrays: - // TODO: I think we can remove these arrays. it isn't worth the effort, for operations on all indices. - // When doing an operation across all indices, most of the time is spent on actually going to all shards and - // do the required operations, the bottleneck isn't resolving expressions into concrete indices. - String[] allIndicesArray = allIndices.toArray(Strings.EMPTY_ARRAY); - String[] visibleIndicesArray = visibleIndices.toArray(Strings.EMPTY_ARRAY); - String[] allOpenIndicesArray = allOpenIndices.toArray(Strings.EMPTY_ARRAY); - String[] visibleOpenIndicesArray = visibleOpenIndices.toArray(Strings.EMPTY_ARRAY); - String[] allClosedIndicesArray = allClosedIndices.toArray(Strings.EMPTY_ARRAY); - String[] visibleClosedIndicesArray = visibleClosedIndices.toArray(Strings.EMPTY_ARRAY); - return new Metadata( clusterUUID, clusterUUIDCommitted, @@ -1771,12 +1760,12 @@ protected Metadata buildMetadataWithRecomputedIndicesLookups() { indices, templates, customs, - allIndicesArray, - visibleIndicesArray, - allOpenIndicesArray, - visibleOpenIndicesArray, - allClosedIndicesArray, - visibleClosedIndicesArray, + allIndices, + visibleIndices, + allOpenIndices, + visibleOpenIndices, + allClosedIndices, + visibleClosedIndices, indicesLookup, systemTemplatesLookup ); diff --git a/server/src/main/java/org/opensearch/index/recovery/RemoteStoreRestoreService.java b/server/src/main/java/org/opensearch/index/recovery/RemoteStoreRestoreService.java index 03d841d13b7f7..70c9c9b1cbf3d 100644 --- a/server/src/main/java/org/opensearch/index/recovery/RemoteStoreRestoreService.java +++ b/server/src/main/java/org/opensearch/index/recovery/RemoteStoreRestoreService.java @@ -165,7 +165,7 @@ public RemoteRestoreResult restore( } } else { List filteredIndices = filterIndices( - List.of(currentState.metadata().getConcreteAllIndices()), + List.copyOf(currentState.metadata().getConcreteAllIndices()), indexNames, IndicesOptions.fromOptions(true, true, true, true) ); diff --git a/server/src/test/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponsesTests.java b/server/src/test/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponsesTests.java index bcd63dade191c..0125aaed56292 100644 --- a/server/src/test/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponsesTests.java +++ b/server/src/test/java/org/opensearch/action/admin/cluster/health/ClusterHealthResponsesTests.java @@ -62,6 +62,7 @@ import java.util.HashMap; import java.util.Locale; import java.util.Map; +import java.util.Set; import java.util.function.Predicate; import java.util.regex.Pattern; @@ -93,7 +94,7 @@ public void testClusterHealth() throws IOException { TimeValue pendingTaskInQueueTime = TimeValue.timeValueMillis(randomIntBetween(1000, 100000)); ClusterHealthResponse clusterHealth = new ClusterHealthResponse( "bla", - new String[] { Metadata.ALL }, + Set.of(Metadata.ALL), clusterState, pendingTasks, inFlight, @@ -121,7 +122,7 @@ public void testClusterHealthVerifyClusterManagerNodeDiscovery() throws IOExcept TimeValue pendingTaskInQueueTime = TimeValue.timeValueMillis(randomIntBetween(1000, 100000)); ClusterHealthResponse clusterHealth = new ClusterHealthResponse( "bla", - new String[] { Metadata.ALL }, + Set.of(Metadata.ALL), clusterState, pendingTasks, inFlight, diff --git a/server/src/test/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthActionTests.java b/server/src/test/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthActionTests.java index e62dc9b400e13..39d3c2a436f83 100644 --- a/server/src/test/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthActionTests.java +++ b/server/src/test/java/org/opensearch/action/admin/cluster/health/TransportClusterHealthActionTests.java @@ -50,6 +50,7 @@ import java.util.ArrayList; import java.util.List; +import java.util.Set; import java.util.stream.IntStream; import static org.hamcrest.core.IsEqual.equalTo; @@ -57,7 +58,7 @@ public class TransportClusterHealthActionTests extends OpenSearchTestCase { public void testWaitForInitializingShards() throws Exception { - final String[] indices = { "test" }; + final Set indices = Set.of("test"); final ClusterHealthRequest request = new ClusterHealthRequest(); request.waitForNoInitializingShards(true); ClusterState clusterState = randomClusterStateWithInitializingShards("test", 0); @@ -76,7 +77,7 @@ public void testWaitForInitializingShards() throws Exception { } public void testWaitForAllShards() { - final String[] indices = { "test" }; + final Set indices = Set.of("test"); final ClusterHealthRequest request = new ClusterHealthRequest(); request.waitForActiveShards(ActiveShardCount.ALL); diff --git a/server/src/test/java/org/opensearch/cluster/health/ClusterStateHealthTests.java b/server/src/test/java/org/opensearch/cluster/health/ClusterStateHealthTests.java index 67e2fb59b0d74..1b2b1255019aa 100644 --- a/server/src/test/java/org/opensearch/cluster/health/ClusterStateHealthTests.java +++ b/server/src/test/java/org/opensearch/cluster/health/ClusterStateHealthTests.java @@ -217,10 +217,8 @@ public void testClusterHealth() throws IOException { .routingTable(routingTable.build()) .nodes(clusterService.state().nodes()) .build(); - String[] concreteIndices = indexNameExpressionResolver.concreteIndexNames( - clusterState, - IndicesOptions.strictExpand(), - (String[]) null + Set concreteIndices = Set.of( + indexNameExpressionResolver.concreteIndexNames(clusterState, IndicesOptions.strictExpand(), (String[]) null) ); ClusterStateHealth clusterStateHealth = new ClusterStateHealth(clusterState, concreteIndices); logger.info("cluster status: {}, expected {}", clusterStateHealth.getStatus(), counter.status()); @@ -240,7 +238,7 @@ public void testClusterHealth() throws IOException { public void testClusterHealthOnIndexCreation() { final String indexName = "test-idx"; - final String[] indices = new String[] { indexName }; + final Set indices = Set.of(indexName); final List clusterStates = simulateIndexCreationStates(indexName, false); for (int i = 0; i < clusterStates.size(); i++) { // make sure cluster health is always YELLOW, up until the last state where it should be GREEN @@ -256,7 +254,7 @@ public void testClusterHealthOnIndexCreation() { public void testClusterHealthOnIndexCreationWithFailedAllocations() { final String indexName = "test-idx"; - final String[] indices = new String[] { indexName }; + final Set indices = Set.of(indexName); final List clusterStates = simulateIndexCreationStates(indexName, true); for (int i = 0; i < clusterStates.size(); i++) { // make sure cluster health is YELLOW up until the final cluster state, which contains primary shard @@ -273,7 +271,7 @@ public void testClusterHealthOnIndexCreationWithFailedAllocations() { public void testClusterHealthOnClusterRecovery() { final String indexName = "test-idx"; - final String[] indices = new String[] { indexName }; + final Set indices = Set.of(indexName); final List clusterStates = simulateClusterRecoveryStates(indexName, false, false); for (int i = 0; i < clusterStates.size(); i++) { // make sure cluster health is YELLOW up until the final cluster state, when it turns GREEN @@ -289,7 +287,7 @@ public void testClusterHealthOnClusterRecovery() { public void testClusterHealthOnClusterRecoveryWithFailures() { final String indexName = "test-idx"; - final String[] indices = new String[] { indexName }; + final Set indices = Set.of(indexName); final List clusterStates = simulateClusterRecoveryStates(indexName, false, true); for (int i = 0; i < clusterStates.size(); i++) { // make sure cluster health is YELLOW up until the final cluster state, which contains primary shard @@ -306,7 +304,7 @@ public void testClusterHealthOnClusterRecoveryWithFailures() { public void testClusterHealthOnClusterRecoveryWithPreviousAllocationIds() { final String indexName = "test-idx"; - final String[] indices = new String[] { indexName }; + final Set indices = Set.of(indexName); final List clusterStates = simulateClusterRecoveryStates(indexName, true, false); for (int i = 0; i < clusterStates.size(); i++) { // because there were previous allocation ids, we should be RED until the primaries are started, @@ -329,7 +327,7 @@ public void testClusterHealthOnClusterRecoveryWithPreviousAllocationIds() { public void testClusterHealthOnClusterRecoveryWithPreviousAllocationIdsAndAllocationFailures() { final String indexName = "test-idx"; - final String[] indices = new String[] { indexName }; + final Set indices = Set.of(indexName); for (final ClusterState clusterState : simulateClusterRecoveryStates(indexName, true, true)) { final ClusterStateHealth health = new ClusterStateHealth(clusterState, indices); // if the inactive primaries are due solely to recovery (not failed allocation or previously being allocated)