forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add integration test for shard availability health indicator
This change adds integration test for shard availability health indicator with initial scenarios that verify health level is not degrading during number of operations.
- Loading branch information
1 parent
dfaec0d
commit 0ff1032
Showing
1 changed file
with
134 additions
and
0 deletions.
There are no files selected for viewing
134 changes: 134 additions & 0 deletions
134
.../elasticsearch/cluster/routing/allocation/ShardsAvailabilityHealthIndicatorServiceIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
package org.elasticsearch.cluster.routing.allocation; | ||
|
||
import org.elasticsearch.action.admin.indices.shrink.ResizeType; | ||
import org.elasticsearch.cluster.ClusterChangedEvent; | ||
import org.elasticsearch.cluster.ClusterStateListener; | ||
import org.elasticsearch.cluster.metadata.IndexMetadata; | ||
import org.elasticsearch.cluster.routing.RoutingNodes; | ||
import org.elasticsearch.cluster.service.ClusterService; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.health.HealthIndicatorResult; | ||
import org.elasticsearch.health.HealthStatus; | ||
import org.elasticsearch.health.node.HealthInfo; | ||
import org.elasticsearch.indices.SystemIndices; | ||
import org.elasticsearch.test.ESIntegTestCase; | ||
import org.hamcrest.Matcher; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Map; | ||
|
||
import static org.elasticsearch.health.HealthStatus.GREEN; | ||
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcked; | ||
import static org.hamcrest.Matchers.equalTo; | ||
|
||
public class ShardsAvailabilityHealthIndicatorServiceIT extends ESIntegTestCase { | ||
|
||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/99951") | ||
public void testIsGreenDuringIndexCreate() { | ||
internalCluster().ensureAtLeastNumDataNodes(2); | ||
|
||
assertHealthDuring(equalTo(GREEN), () -> { | ||
var index = randomIdentifier(); | ||
prepareCreate(index).setSettings(indexSettings(1, 1)).get(); | ||
ensureGreen(index); | ||
}); | ||
} | ||
|
||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/99951") | ||
public void testIsGreenWhenNewReplicaAdded() { | ||
internalCluster().ensureAtLeastNumDataNodes(2); | ||
|
||
var index = randomIdentifier(); | ||
prepareCreate(index).setSettings(indexSettings(1, 0)).get(); | ||
ensureGreen(index); | ||
|
||
assertHealthDuring(equalTo(GREEN), () -> { | ||
updateIndexSettings(Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 1), index); | ||
ensureGreen(index); | ||
}); | ||
} | ||
|
||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/99951") | ||
public void testIsGreenDuringSnapshotRestore() { | ||
|
||
internalCluster().ensureAtLeastNumDataNodes(2); | ||
|
||
var index = randomIdentifier(); | ||
prepareCreate(index).setSettings(indexSettings(1, 1)).get(); | ||
ensureGreen(index); | ||
|
||
var repositoryName = "repository"; | ||
var snapshotName = randomIdentifier(); | ||
assertAcked( | ||
clusterAdmin().preparePutRepository(repositoryName) | ||
.setType("fs") | ||
.setSettings(Settings.builder().put("location", randomRepoPath())) | ||
); | ||
clusterAdmin().prepareCreateSnapshot(repositoryName, snapshotName).setIndices(index).setWaitForCompletion(true).get(); | ||
assertAcked(indicesAdmin().prepareDelete(index)); | ||
|
||
assertHealthDuring(equalTo(GREEN), () -> { | ||
clusterAdmin().prepareRestoreSnapshot(repositoryName, snapshotName).setIndices(index).setWaitForCompletion(true).get(); | ||
ensureGreen(index); | ||
}); | ||
} | ||
|
||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/99951") | ||
public void testIsGreenDuringIndexClone() { | ||
|
||
internalCluster().ensureAtLeastNumDataNodes(2); | ||
|
||
var sourceIndex = randomIdentifier(); | ||
var targetIndex = randomIdentifier(); | ||
prepareCreate(sourceIndex).setSettings(indexSettings(1, 1)).get(); | ||
ensureGreen(sourceIndex); | ||
updateIndexSettings(Settings.builder().put("index.blocks.write", true), sourceIndex); | ||
|
||
assertHealthDuring(equalTo(GREEN), () -> { | ||
indicesAdmin().prepareResizeIndex(sourceIndex, targetIndex).setResizeType(ResizeType.CLONE).get(); | ||
ensureGreen(targetIndex); | ||
}); | ||
} | ||
|
||
private void assertHealthDuring(Matcher<HealthStatus> statusMatcher, Runnable action) { | ||
var clusterService = internalCluster().getCurrentMasterNodeInstance(ClusterService.class); | ||
var allocationService = internalCluster().getCurrentMasterNodeInstance(AllocationService.class); | ||
var systemIndices = internalCluster().getCurrentMasterNodeInstance(SystemIndices.class); | ||
|
||
var service = new ShardsAvailabilityHealthIndicatorService(clusterService, allocationService, systemIndices); | ||
var states = new ArrayList<RoutingNodesAndHealth>(); | ||
var listener = new ClusterStateListener() { | ||
@Override | ||
public void clusterChanged(ClusterChangedEvent event) { | ||
states.add( | ||
new RoutingNodesAndHealth(event.state().getRoutingNodes(), service.calculate(false, 1, new HealthInfo(Map.of()))) | ||
); | ||
} | ||
}; | ||
|
||
clusterService.addListener(listener); | ||
try { | ||
action.run(); | ||
|
||
for (RoutingNodesAndHealth state : states) { | ||
state.assertHealth(statusMatcher); | ||
} | ||
} finally { | ||
clusterService.removeListener(listener); | ||
} | ||
} | ||
|
||
private record RoutingNodesAndHealth(RoutingNodes routing, HealthIndicatorResult health) { | ||
private void assertHealth(Matcher<HealthStatus> statusMatcher) { | ||
assertThat("Health [" + health + "] for routing: " + routing, health.status(), statusMatcher); | ||
} | ||
} | ||
} |