-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cluster awareness and decommission docs (#2438)
* Add cluster awareness and decommission docs Signed-off-by: Naarcha-AWS <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Bukhtawar Khan <[email protected]> * Edit technical feedback Signed-off-by: Naarcha-AWS <[email protected]> * Add new cluster awareness examples Signed-off-by: Naarcha-AWS <[email protected]> * Add technical feedback Signed-off-by: Naarcha-AWS <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Alice Williams <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Alice Williams <[email protected]> * Add Caroline's feedback Signed-off-by: Naarcha-AWS <[email protected]> * Add one more tweak Signed-off-by: Naarcha-AWS <[email protected]> * Update _ml-commons-plugin/cluster-settings.md Co-authored-by: Heather Halter <[email protected]> * Update _ml-commons-plugin/cluster-settings.md Co-authored-by: Heather Halter <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _ml-commons-plugin/cluster-settings.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _ml-commons-plugin/cluster-settings.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-decommission.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-awareness.md Co-authored-by: Nate Bower <[email protected]> * Update _api-reference/cluster-decommission.md Co-authored-by: Nate Bower <[email protected]> * Add editoiral feedback Signed-off-by: Naarcha-AWS <[email protected]> * Fix typos Signed-off-by: Naarcha-AWS <[email protected]> * Final editorial note Signed-off-by: Naarcha-AWS <[email protected]> Signed-off-by: Naarcha-AWS <[email protected]> Co-authored-by: Bukhtawar Khan <[email protected]> Co-authored-by: Alice Williams <[email protected]> Co-authored-by: Heather Halter <[email protected]> Co-authored-by: Nate Bower <[email protected]>
- Loading branch information
Showing
6 changed files
with
245 additions
and
9 deletions.
There are no files selected for viewing
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,121 @@ | ||
--- | ||
layout: default | ||
title: Cluster routing and awareness | ||
nav_order: 16 | ||
--- | ||
|
||
# Cluster routing and awareness | ||
|
||
To control the distribution of search or HTTP traffic, you can use the weights per awareness attribute to control the distribution of search or HTTP traffic across zones. This is commonly used for zonal deployments, heterogeneous instances, and routing traffic away from zones during zonal failure. | ||
|
||
## HTTP and path methods | ||
|
||
``` | ||
PUT /_cluster/routing/awareness/<attribute>/weights | ||
GET /_cluster/routing/awareness/<attribute>/weights?local | ||
GET /_cluster/routing/awareness/<attribute>/weights | ||
``` | ||
|
||
## Path parameters | ||
|
||
Parameter | Type | Description | ||
:--- | :--- | :--- | ||
attribute | String | The name of the awareness attribute, usually `zone`. The attribute name must match the values listed in the request body when assigning weights to zones. | ||
|
||
## Request body parameters | ||
|
||
Parameter | Type | Description | ||
:--- | :--- | :--- | ||
weights | JSON object | Assigns weights to attributes within the request body of the PUT request. Weights can be set in any ratio, for example, 2:3:5. In a 2:3:5 ratio with 3 zones, for every 100 requests sent to the cluster, each zone would receive either 20, 30, or 50 search requests in a random order. When assigned a weight of `0`, the zone does not receive any search traffic. | ||
_version | String | Implements optimistic concurrency control (OCC) through versioning. The parameter uses simple versioning, such as `1`, and increments upward based on each subsequent modification. This allows any servers from which a request originates to validate whether or not a zone has been modified. | ||
|
||
|
||
In the following example request body, `zone_1` and `zone_2` receive 50 requests each, whereas `zone_3` is prevented from receiving requests: | ||
|
||
``` | ||
{ | ||
"weights": | ||
{ | ||
"zone_1": "5", | ||
"zone_2": "5", | ||
"zone_3": "0" | ||
} | ||
"_version" : 1 | ||
} | ||
``` | ||
|
||
## Example: Weighted round robin search | ||
|
||
The following example request creates a round robin shard allocation for search traffic by using an undefined ratio: | ||
|
||
### Request | ||
|
||
PUT /_cluster/routing/awareness/zone/weights | ||
{ | ||
"weights": | ||
{ | ||
"zone_1": "1", | ||
"zone_2": "1", | ||
"zone_3": "0" | ||
} | ||
"_version" : 1 | ||
} | ||
|
||
### Response | ||
|
||
``` | ||
{ | ||
"acknowledged": true | ||
} | ||
``` | ||
|
||
|
||
## Example: Getting weights for all zones | ||
|
||
The following example request gets weights for all zones. | ||
|
||
### Request | ||
|
||
``` | ||
GET /_cluster/routing/awareness/zone/weights | ||
``` | ||
|
||
### Response | ||
|
||
OpenSearch responds with the weight of each zone: | ||
|
||
```json | ||
{ | ||
"weights": | ||
{ | ||
|
||
"zone_1": "1.0", | ||
"zone_2": "1.0", | ||
"zone_3": "0.0" | ||
}, | ||
"_version":1 | ||
} | ||
``` | ||
|
||
## Example: Deleting weights | ||
|
||
You can remove your weight ratio for each zone using the `DELETE` method. | ||
|
||
### Request | ||
|
||
``` | ||
DELETE /_cluster/routing/awareness/zone/weights | ||
``` | ||
|
||
### Response | ||
|
||
```json | ||
{ | ||
"_version":1 | ||
} | ||
``` | ||
|
||
## Next steps | ||
|
||
- For more information about zone commissioning, see [Cluster decommission]({{site.url}}{{site.baseurl}}/api-reference/cluster-decommission/). | ||
- For more information about allocation awareness, see [Cluster formation]({{site.url}}{{site.baseurl}}/opensearch/cluster/#advanced-step-6-configure-shard-allocation-awareness-or-forced-awareness). |
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,80 @@ | ||
--- | ||
layout: default | ||
title: Cluster decommission | ||
nav_order: 20 | ||
--- | ||
|
||
# Cluster decommission | ||
|
||
The cluster decommission operation adds support decommissioning based on awareness. It greatly benefits multi-zone deployments, where awareness attributes, such as `zones`, can aid in applying new upgrades to a cluster in a controlled fashion. This is especially useful during outages, in which case, you can decommission the unhealthy zone to prevent replication requests from stalling and prevent your request backlog from becoming too large. | ||
|
||
For more information about allocation awareness, see [Shard allocation awareness]({{site.url}}{{site.baseurl}}//opensearch/cluster/#shard-allocation-awareness). | ||
|
||
|
||
## HTTP and Path methods | ||
|
||
``` | ||
PUT /_cluster/decommission/awareness/{awareness_attribute_name}/{awareness_attribute_value} | ||
GET /_cluster/decommission/awareness/{awareness_attribute_name}/_status | ||
DELETE /_cluster/decommission/awareness | ||
``` | ||
|
||
## URL parameters | ||
|
||
Parameter | Type | Description | ||
:--- | :--- | :--- | ||
awareness_attribute_name | String | The name of awareness attribute, usually `zone`. | ||
awareness_attribute_value | String | The value of the awareness attribute. For example, if you have shards allocated in two different zones, you can give each zone a value of `zone-a` or `zoneb`. The cluster decommission operation decommissions the zone listed in the method. | ||
|
||
|
||
## Example: Decommissioning and recommissioning a zone | ||
|
||
You can use the following example requests to decommission and recommission a zone: | ||
|
||
### Request | ||
|
||
The following example request decommissions `zone-a`: | ||
|
||
``` | ||
PUT /_cluster/decommission/awareness/<zone>/<zone-a> | ||
``` | ||
|
||
If you want to recommission a decommissioned zone, you can use the `DELETE` method: | ||
|
||
``` | ||
DELETE /_cluster/decommission/awareness | ||
``` | ||
|
||
### Response | ||
|
||
|
||
```json | ||
{ | ||
"acknowledged": true | ||
} | ||
``` | ||
|
||
## Example: Getting zone decommission status | ||
|
||
The following example requests returns the decommission status of all zones. | ||
|
||
### Request | ||
|
||
``` | ||
GET /_cluster/decommission/awareness/zone/_status | ||
``` | ||
|
||
|
||
### Response | ||
|
||
```json | ||
{ | ||
"zone-1": "INIT | DRAINING | IN_PROGRESS | SUCCESSFUL | FAILED" | ||
} | ||
``` | ||
|
||
|
||
## Next steps | ||
|
||
- For more information about zone awareness and weight, see [Cluster awareness]({{site.url}}{{site.baseurl}}/api-reference/cluster-awareness/). | ||
- For more information about allocation awareness, see [Cluster formation]({{site.url}}{{site.baseurl}}/opensearch/cluster/#advanced-step-6-configure-shard-allocation-awareness-or-forced-awareness). |
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
layout: default | ||
title: Cluster settings | ||
nav_order: 17 | ||
nav_order: 18 | ||
--- | ||
|
||
# Cluster settings | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
layout: default | ||
title: Count | ||
nav_order: 20 | ||
nav_order: 21 | ||
--- | ||
|
||
# Count | ||
|
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