-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathSearchReplicaAwarenessAllocationIT.java
320 lines (268 loc) · 14.3 KB
/
SearchReplicaAwarenessAllocationIT.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* 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.allocation;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.opensearch.action.admin.cluster.health.ClusterHealthResponse;
import org.opensearch.cluster.ClusterState;
import org.opensearch.cluster.metadata.IndexMetadata;
import org.opensearch.cluster.routing.IndexRoutingTable;
import org.opensearch.cluster.routing.IndexShardRoutingTable;
import org.opensearch.cluster.routing.ShardRouting;
import org.opensearch.cluster.routing.allocation.decider.AwarenessAllocationDecider;
import org.opensearch.common.settings.Settings;
import org.opensearch.common.util.FeatureFlags;
import org.opensearch.indices.replication.common.ReplicationType;
import org.opensearch.remotestore.RemoteStoreBaseIntegTestCase;
import org.opensearch.test.OpenSearchIntegTestCase;
import org.opensearch.test.OpenSearchIntegTestCase.ClusterScope;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static org.opensearch.cluster.metadata.IndexMetadata.SETTING_REPLICATION_TYPE;
import static org.opensearch.test.NodeRoles.searchOnlyNode;
import static org.opensearch.test.hamcrest.OpenSearchAssertions.assertAcked;
import static org.hamcrest.Matchers.anyOf;
import static org.hamcrest.Matchers.equalTo;
@ClusterScope(scope = OpenSearchIntegTestCase.Scope.TEST, numDataNodes = 0)
public class SearchReplicaAwarenessAllocationIT extends RemoteStoreBaseIntegTestCase {
private final Logger logger = LogManager.getLogger(SearchReplicaAwarenessAllocationIT.class);
@Override
protected Settings featureFlagSettings() {
return Settings.builder().put(super.featureFlagSettings()).put(FeatureFlags.READER_WRITER_SPLIT_EXPERIMENTAL, Boolean.TRUE).build();
}
public void testAllocationAwarenessZones() {
Settings commonSettings = Settings.builder()
.put(AwarenessAllocationDecider.CLUSTER_ROUTING_ALLOCATION_AWARENESS_FORCE_GROUP_SETTING.getKey() + "zone.values", "a,b")
.put(AwarenessAllocationDecider.CLUSTER_ROUTING_ALLOCATION_AWARENESS_ATTRIBUTE_SETTING.getKey(), "zone")
.build();
logger.info("--> starting 8 nodes on different zones");
List<String> nodes = internalCluster().startNodes(
Settings.builder().put(commonSettings).put("node.attr.zone", "a").build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "b").build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "b").build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "a").build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "a").put(searchOnlyNode()).build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "b").put(searchOnlyNode()).build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "b").put(searchOnlyNode()).build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "a").put(searchOnlyNode()).build()
);
logger.info("--> waiting for nodes to form a cluster");
ClusterHealthResponse health = client().admin().cluster().prepareHealth().setWaitForNodes("8").execute().actionGet();
assertThat(health.isTimedOut(), equalTo(false));
logger.info("--> create index");
createIndex(
"test",
Settings.builder()
.put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 5)
.put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 1)
.put(IndexMetadata.SETTING_NUMBER_OF_SEARCH_REPLICAS, 2)
.put(SETTING_REPLICATION_TYPE, ReplicationType.SEGMENT)
.build()
);
logger.info("--> waiting for shards to be allocated");
ensureGreen("test");
ClusterState clusterState = client().admin().cluster().prepareState().execute().actionGet().getState();
final Map<String, Integer> counts = new HashMap<>();
for (IndexRoutingTable indexRoutingTable : clusterState.routingTable()) {
for (IndexShardRoutingTable indexShardRoutingTable : indexRoutingTable) {
for (ShardRouting shardRouting : indexShardRoutingTable) {
counts.merge(clusterState.nodes().get(shardRouting.currentNodeId()).getName(), 1, Integer::sum);
}
}
}
assertThat(counts.get(nodes.get(3)), anyOf(equalTo(2), equalTo(3)));
assertThat(counts.get(nodes.get(2)), anyOf(equalTo(2), equalTo(3)));
assertThat(counts.get(nodes.get(0)), anyOf(equalTo(2), equalTo(3)));
assertThat(counts.get(nodes.get(1)), anyOf(equalTo(2), equalTo(3)));
assertThat(counts.get(nodes.get(4)), anyOf(equalTo(2), equalTo(3)));
assertThat(counts.get(nodes.get(5)), anyOf(equalTo(2), equalTo(3)));
assertThat(counts.get(nodes.get(6)), anyOf(equalTo(2), equalTo(3)));
assertThat(counts.get(nodes.get(7)), anyOf(equalTo(2), equalTo(3)));
}
public void testAwarenessZonesIncrementalNodes() {
Settings commonSettings = Settings.builder()
.put("cluster.routing.allocation.awareness.force.zone.values", "a,b")
.put("cluster.routing.allocation.awareness.attributes", "zone")
.build();
logger.info("--> starting 2 nodes on zones 'a' & 'b'");
List<String> nodes = internalCluster().startNodes(
Settings.builder().put(commonSettings).put("node.attr.zone", "a").build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "b").build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "a").put(searchOnlyNode()).build(),
Settings.builder().put(commonSettings).put("node.attr.zone", "b").put(searchOnlyNode()).build()
);
createIndex(
"test",
Settings.builder()
.put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 5)
.put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 1)
.put(IndexMetadata.SETTING_NUMBER_OF_SEARCH_REPLICAS, 2)
.build()
);
ensureGreen("test");
ClusterState clusterState = client().admin().cluster().prepareState().execute().actionGet().getState();
Map<String, Integer> counts = new HashMap<>();
for (IndexRoutingTable indexRoutingTable : clusterState.routingTable()) {
for (IndexShardRoutingTable indexShardRoutingTable : indexRoutingTable) {
for (ShardRouting shardRouting : indexShardRoutingTable) {
counts.merge(clusterState.nodes().get(shardRouting.currentNodeId()).getName(), 1, Integer::sum);
}
}
}
assertThat(counts.get(nodes.get(0)), equalTo(5));
assertThat(counts.get(nodes.get(1)), equalTo(5));
assertThat(counts.get(nodes.get(2)), equalTo(5));
assertThat(counts.get(nodes.get(3)), equalTo(5));
logger.info("--> starting another data and search node in zone 'b'");
String B_2 = internalCluster().startNode(Settings.builder().put(commonSettings).put("node.attr.zone", "b").build());
String B_3 = internalCluster().startNode(
Settings.builder().put(commonSettings).put("node.attr.zone", "b").put(searchOnlyNode()).build()
);
ensureGreen("test");
client().admin().cluster().prepareReroute().get();
ensureGreen("test");
clusterState = client().admin().cluster().prepareState().execute().actionGet().getState();
counts = new HashMap<>();
for (IndexRoutingTable indexRoutingTable : clusterState.routingTable()) {
for (IndexShardRoutingTable indexShardRoutingTable : indexRoutingTable) {
for (ShardRouting shardRouting : indexShardRoutingTable) {
counts.merge(clusterState.nodes().get(shardRouting.currentNodeId()).getName(), 1, Integer::sum);
}
}
}
assertThat(counts.get(nodes.get(0)), equalTo(5));
assertThat(counts.get(nodes.get(1)), equalTo(3));
assertThat(counts.get(nodes.get(2)), equalTo(5));
assertThat(counts.get(nodes.get(3)), equalTo(3));
assertThat(counts.get(B_2), equalTo(2));
assertThat(counts.get(B_3), equalTo(2));
logger.info("--> starting another data node without any zone");
String noZoneNode = internalCluster().startNode();
ensureGreen("test");
client().admin().cluster().prepareReroute().get();
ensureGreen("test");
clusterState = client().admin().cluster().prepareState().execute().actionGet().getState();
counts = new HashMap<>();
for (IndexRoutingTable indexRoutingTable : clusterState.routingTable()) {
for (IndexShardRoutingTable indexShardRoutingTable : indexRoutingTable) {
for (ShardRouting shardRouting : indexShardRoutingTable) {
counts.merge(clusterState.nodes().get(shardRouting.currentNodeId()).getName(), 1, Integer::sum);
}
}
}
logger.info("--> Ensure there was not rerouting");
assertThat(counts.get(nodes.get(0)), equalTo(5));
assertThat(counts.get(nodes.get(1)), equalTo(3));
assertThat(counts.get(nodes.get(2)), equalTo(5));
assertThat(counts.get(nodes.get(3)), equalTo(3));
assertThat(counts.get(B_2), equalTo(2));
assertThat(counts.get(B_3), equalTo(2));
assertThat(counts.containsKey(noZoneNode), equalTo(false));
logger.info("--> Remove the awareness attribute setting");
client().admin()
.cluster()
.prepareUpdateSettings()
.setTransientSettings(Settings.builder().put("cluster.routing.allocation.awareness.attributes", "").build())
.get();
ensureGreen("test");
clusterState = client().admin().cluster().prepareState().execute().actionGet().getState();
counts = new HashMap<>();
for (IndexRoutingTable indexRoutingTable : clusterState.routingTable()) {
for (IndexShardRoutingTable indexShardRoutingTable : indexRoutingTable) {
for (ShardRouting shardRouting : indexShardRoutingTable) {
counts.merge(clusterState.nodes().get(shardRouting.currentNodeId()).getName(), 1, Integer::sum);
}
}
}
assertThat(counts.get(nodes.get(0)), equalTo(3));
assertThat(counts.get(nodes.get(1)), equalTo(3));
assertThat(counts.get(nodes.get(2)), equalTo(4));
assertThat(counts.get(nodes.get(3)), equalTo(3));
assertThat(counts.get(B_2), equalTo(2));
assertThat(counts.get(B_3), equalTo(3));
assertThat(counts.get(noZoneNode), equalTo(2));
}
public void testAwarenessBalanceWithForcedAwarenessCreateIndex() {
Settings settings = Settings.builder()
.put("cluster.routing.allocation.awareness.force.zone.values", "a,b,c")
.put("cluster.routing.allocation.awareness.attributes", "zone")
.put("cluster.routing.allocation.awareness.balance", "true")
.build();
logger.info("--> starting 3 nodes on zones a,b,c");
internalCluster().startNodes(
Settings.builder().put(settings).put("node.attr.zone", "a").build(),
Settings.builder().put(settings).put("node.attr.zone", "b").build(),
Settings.builder().put(settings).put("node.attr.zone", "c").build()
);
// Create index with 2 replicas and 2 search replicas
assertThrows(IllegalArgumentException.class, () -> {
createIndex(
"test-idx",
Settings.builder()
.put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1)
.put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 2)
.put(IndexMetadata.SETTING_NUMBER_OF_SEARCH_REPLICAS, 2)
.build()
);
});
}
public void testAwarenessBalanceWithForcedAwarenessUpdateIndex() {
Settings settings = Settings.builder()
.put("cluster.routing.allocation.awareness.force.zone.values", "a,b,c")
.put("cluster.routing.allocation.awareness.attributes", "zone")
.put("cluster.routing.allocation.awareness.balance", "true")
.build();
logger.info("--> starting 3 nodes on zones a,b,c");
internalCluster().startNodes(
Settings.builder().put(settings).put("node.attr.zone", "a").build(),
Settings.builder().put(settings).put("node.attr.zone", "b").build(),
Settings.builder().put(settings).put("node.attr.zone", "c").build()
);
// Create index with 2 replicas and 3 search replicas
createIndex(
"test-idx",
Settings.builder()
.put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1)
.put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 2)
.put(IndexMetadata.SETTING_NUMBER_OF_SEARCH_REPLICAS, 3)
.build()
);
// Update the number of search replicas to 4
assertThrows(IllegalArgumentException.class, () -> {
assertAcked(
client().admin()
.indices()
.prepareUpdateSettings("test-idx")
.setSettings(Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SEARCH_REPLICAS, 4).build())
);
});
}
}