|
37 | 37 | import org.opensearch.action.support.IndicesOptions;
|
38 | 38 | import org.opensearch.action.support.PlainActionFuture;
|
39 | 39 | import org.opensearch.cluster.health.ClusterHealthStatus;
|
| 40 | +import org.opensearch.cluster.health.ClusterIndexHealth; |
| 41 | +import org.opensearch.cluster.health.ClusterShardHealth; |
40 | 42 | import org.opensearch.cluster.metadata.IndexMetadata;
|
41 | 43 | import org.opensearch.cluster.routing.UnassignedInfo;
|
42 | 44 | import org.opensearch.cluster.service.ClusterService;
|
|
49 | 51 |
|
50 | 52 | import java.util.ArrayList;
|
51 | 53 | import java.util.List;
|
| 54 | +import java.util.Map; |
52 | 55 | import java.util.concurrent.atomic.AtomicBoolean;
|
53 | 56 |
|
54 | 57 | import static org.opensearch.test.hamcrest.OpenSearchAssertions.assertAcked;
|
@@ -439,4 +442,154 @@ public void clusterStateProcessed(String source, ClusterState oldState, ClusterS
|
439 | 442 | completionFuture.actionGet(TimeValue.timeValueSeconds(30));
|
440 | 443 | }
|
441 | 444 | }
|
| 445 | + |
| 446 | + public void testHealthAtLevelParamEqualsClusterIsHonoured() { |
| 447 | + createIndex( |
| 448 | + "test1", |
| 449 | + Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1).put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0).build() |
| 450 | + ); |
| 451 | + ensureGreen(); |
| 452 | + ClusterHealthResponse healthResponse = client().admin() |
| 453 | + .cluster() |
| 454 | + .prepareHealth() |
| 455 | + .setHonourClusterHealthLevel(true) |
| 456 | + .execute() |
| 457 | + .actionGet(); |
| 458 | + assertEquals(ClusterHealthStatus.GREEN, healthResponse.getStatus()); |
| 459 | + assertTrue(healthResponse.getIndices().isEmpty()); |
| 460 | + assertEquals(1, healthResponse.getActiveShards()); |
| 461 | + assertEquals(1, healthResponse.getActivePrimaryShards()); |
| 462 | + assertEquals(0, healthResponse.getUnassignedShards()); |
| 463 | + assertEquals(0, healthResponse.getInitializingShards()); |
| 464 | + assertEquals(0, healthResponse.getRelocatingShards()); |
| 465 | + assertEquals(0, healthResponse.getDelayedUnassignedShards()); |
| 466 | + } |
| 467 | + |
| 468 | + public void testHealthAtLevelParamEqualIndicesIsHonoured() { |
| 469 | + createIndex( |
| 470 | + "test1", |
| 471 | + Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1).put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0).build() |
| 472 | + ); |
| 473 | + ensureGreen(); |
| 474 | + ClusterHealthResponse healthResponse = client().admin() |
| 475 | + .cluster() |
| 476 | + .prepareHealth() |
| 477 | + .setLevel("indices") |
| 478 | + .setHonourClusterHealthLevel(true) |
| 479 | + .execute() |
| 480 | + .actionGet(); |
| 481 | + assertEquals(ClusterHealthStatus.GREEN, healthResponse.getStatus()); |
| 482 | + |
| 483 | + assertEquals(1, healthResponse.getActiveShards()); |
| 484 | + assertEquals(1, healthResponse.getActivePrimaryShards()); |
| 485 | + assertEquals(0, healthResponse.getUnassignedShards()); |
| 486 | + assertEquals(0, healthResponse.getInitializingShards()); |
| 487 | + assertEquals(0, healthResponse.getRelocatingShards()); |
| 488 | + assertEquals(0, healthResponse.getDelayedUnassignedShards()); |
| 489 | + |
| 490 | + Map<String, ClusterIndexHealth> indices = healthResponse.getIndices(); |
| 491 | + assertFalse(indices.isEmpty()); |
| 492 | + assertEquals(1, indices.size()); |
| 493 | + for (Map.Entry<String, ClusterIndexHealth> indicesHealth : indices.entrySet()) { |
| 494 | + String indexName = indicesHealth.getKey(); |
| 495 | + assertEquals("test1", indexName); |
| 496 | + ClusterIndexHealth indicesHealthValue = indicesHealth.getValue(); |
| 497 | + assertEquals(1, indicesHealthValue.getActiveShards()); |
| 498 | + assertEquals(1, indicesHealthValue.getActivePrimaryShards()); |
| 499 | + assertEquals(0, indicesHealthValue.getInitializingShards()); |
| 500 | + assertEquals(0, indicesHealthValue.getUnassignedShards()); |
| 501 | + assertEquals(0, indicesHealthValue.getDelayedUnassignedShards()); |
| 502 | + assertEquals(0, indicesHealthValue.getRelocatingShards()); |
| 503 | + assertEquals(ClusterHealthStatus.GREEN, indicesHealthValue.getStatus()); |
| 504 | + assertTrue(indicesHealthValue.getShards().isEmpty()); |
| 505 | + } |
| 506 | + } |
| 507 | + |
| 508 | + public void testHealthAtLevelParamEqualShardsIsHonoured() { |
| 509 | + createIndex( |
| 510 | + "test1", |
| 511 | + Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1).put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 1).build() |
| 512 | + ); |
| 513 | + ensureGreen(TimeValue.timeValueSeconds(120), "test1"); |
| 514 | + createIndex( |
| 515 | + "test2", |
| 516 | + Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1).put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 1).build() |
| 517 | + ); |
| 518 | + ensureGreen(TimeValue.timeValueSeconds(120)); |
| 519 | + client().admin() |
| 520 | + .indices() |
| 521 | + .prepareUpdateSettings() |
| 522 | + .setIndices("test2") |
| 523 | + .setSettings(Settings.builder().put("index.number_of_replicas", 2).build()) |
| 524 | + .execute() |
| 525 | + .actionGet(); |
| 526 | + ClusterHealthResponse healthResponse = client().admin() |
| 527 | + .cluster() |
| 528 | + .prepareHealth() |
| 529 | + .setLevel("shards") |
| 530 | + .setHonourClusterHealthLevel(true) |
| 531 | + .execute() |
| 532 | + .actionGet(); |
| 533 | + assertEquals(ClusterHealthStatus.YELLOW, healthResponse.getStatus()); |
| 534 | + |
| 535 | + assertEquals(4, healthResponse.getActiveShards()); |
| 536 | + assertEquals(2, healthResponse.getActivePrimaryShards()); |
| 537 | + assertEquals(1, healthResponse.getUnassignedShards()); |
| 538 | + assertEquals(0, healthResponse.getInitializingShards()); |
| 539 | + assertEquals(0, healthResponse.getRelocatingShards()); |
| 540 | + assertEquals(0, healthResponse.getDelayedUnassignedShards()); |
| 541 | + |
| 542 | + Map<String, ClusterIndexHealth> indices = healthResponse.getIndices(); |
| 543 | + assertFalse(indices.isEmpty()); |
| 544 | + assertEquals(2, indices.size()); |
| 545 | + for (Map.Entry<String, ClusterIndexHealth> indicesHealth : indices.entrySet()) { |
| 546 | + String indexName = indicesHealth.getKey(); |
| 547 | + boolean indexHasMoreReplicas = indexName.equals("test2"); |
| 548 | + ClusterIndexHealth indicesHealthValue = indicesHealth.getValue(); |
| 549 | + assertEquals(2, indicesHealthValue.getActiveShards()); |
| 550 | + assertEquals(1, indicesHealthValue.getActivePrimaryShards()); |
| 551 | + assertEquals(0, indicesHealthValue.getInitializingShards()); |
| 552 | + assertEquals(indexHasMoreReplicas ? 1 : 0, indicesHealthValue.getUnassignedShards()); |
| 553 | + assertEquals(0, indicesHealthValue.getDelayedUnassignedShards()); |
| 554 | + assertEquals(0, indicesHealthValue.getRelocatingShards()); |
| 555 | + assertEquals(indexHasMoreReplicas ? ClusterHealthStatus.YELLOW : ClusterHealthStatus.GREEN, indicesHealthValue.getStatus()); |
| 556 | + Map<Integer, ClusterShardHealth> shards = indicesHealthValue.getShards(); |
| 557 | + assertFalse(shards.isEmpty()); |
| 558 | + assertEquals(1, shards.size()); |
| 559 | + for (Map.Entry<Integer, ClusterShardHealth> shardHealth : shards.entrySet()) { |
| 560 | + ClusterShardHealth clusterShardHealth = shardHealth.getValue(); |
| 561 | + assertEquals(2, clusterShardHealth.getActiveShards()); |
| 562 | + assertEquals(indexHasMoreReplicas ? 1 : 0, clusterShardHealth.getUnassignedShards()); |
| 563 | + assertEquals(0, clusterShardHealth.getDelayedUnassignedShards()); |
| 564 | + assertEquals(0, clusterShardHealth.getRelocatingShards()); |
| 565 | + assertEquals(0, clusterShardHealth.getInitializingShards()); |
| 566 | + assertTrue(clusterShardHealth.isPrimaryActive()); |
| 567 | + assertEquals(indexHasMoreReplicas ? ClusterHealthStatus.YELLOW : ClusterHealthStatus.GREEN, clusterShardHealth.getStatus()); |
| 568 | + } |
| 569 | + } |
| 570 | + } |
| 571 | + |
| 572 | + public void testHealthAtLevelParamEqualsAttributeAwarenessIsHonoured() { |
| 573 | + createIndex( |
| 574 | + "test1", |
| 575 | + Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1).put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0).build() |
| 576 | + ); |
| 577 | + ensureGreen(); |
| 578 | + ClusterHealthResponse healthResponse = client().admin() |
| 579 | + .cluster() |
| 580 | + .prepareHealth() |
| 581 | + .setLevel("awareness_attributes") |
| 582 | + .setHonourClusterHealthLevel(true) |
| 583 | + .execute() |
| 584 | + .actionGet(); |
| 585 | + assertEquals(ClusterHealthStatus.GREEN, healthResponse.getStatus()); |
| 586 | + assertTrue(healthResponse.getIndices().isEmpty()); |
| 587 | + assertNotNull(healthResponse.getClusterAwarenessHealth()); |
| 588 | + assertEquals(1, healthResponse.getActiveShards()); |
| 589 | + assertEquals(1, healthResponse.getActivePrimaryShards()); |
| 590 | + assertEquals(0, healthResponse.getUnassignedShards()); |
| 591 | + assertEquals(0, healthResponse.getInitializingShards()); |
| 592 | + assertEquals(0, healthResponse.getRelocatingShards()); |
| 593 | + assertEquals(0, healthResponse.getDelayedUnassignedShards()); |
| 594 | + } |
442 | 595 | }
|
0 commit comments