forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'elastic/master' into retention-lease-ex…
…piration * elastic/master: Removing unused methods in Numbers (elastic#37186) Fix setting by time unit (elastic#37192) [DOCS] Cleans up xpackml attributes ML: fix delayed data annotations on secured cluster (elastic#37193) Update version in SearchRequest and related test [DOCS] Adds overview and API ref for cluster voting configurations (elastic#36954) ML: changing JobResultsProvider.getForecastRequestStats to support > 1 index (elastic#37157) Separate out validation of groups of settings (elastic#34184)
- Loading branch information
Showing
47 changed files
with
605 additions
and
497 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
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,76 @@ | ||
[[voting-config-exclusions]] | ||
== Voting configuration exclusions API | ||
++++ | ||
<titleabbrev>Voting Configuration Exclusions</titleabbrev> | ||
++++ | ||
|
||
Adds or removes master-eligible nodes from the | ||
<<modules-discovery-voting,voting configuration exclusion list>>. | ||
|
||
[float] | ||
=== Request | ||
|
||
`POST _cluster/voting_config_exclusions/<node_name>` + | ||
|
||
`DELETE _cluster/voting_config_exclusions` | ||
|
||
[float] | ||
=== Path parameters | ||
|
||
`node_name`:: | ||
A <<cluster-nodes,node filter>> that identifies {es} nodes. | ||
|
||
[float] | ||
=== Description | ||
|
||
By default, if there are more than three master-eligible nodes in the cluster | ||
and you remove fewer than half of the master-eligible nodes in the cluster at | ||
once, the <<modules-discovery-voting,voting configuration>> automatically | ||
shrinks. | ||
|
||
If you want to shrink the voting configuration to contain fewer than three nodes | ||
or to remove half or more of the master-eligible nodes in the cluster at once, | ||
you must use this API to remove departed nodes from the voting configuration | ||
manually. It adds an entry for that node in the voting configuration exclusions | ||
list. The cluster then tries to reconfigure the voting configuration to remove | ||
that node and to prevent it from returning. | ||
|
||
If the API fails, you can safely retry it. Only a successful response | ||
guarantees that the node has been removed from the voting configuration and will | ||
not be reinstated. | ||
|
||
NOTE: Voting exclusions are required only when you remove at least half of the | ||
master-eligible nodes from a cluster in a short time period. They are not | ||
required when removing master-ineligible nodes or fewer than half of the | ||
master-eligible nodes. | ||
|
||
The <<modules-discovery-settings,`cluster.max_voting_config_exclusions` | ||
setting>> limits the size of the voting configuration exclusion list. The | ||
default value is `10`. Since voting configuration exclusions are persistent and | ||
limited in number, you must clear the voting config exclusions list once the | ||
exclusions are no longer required. | ||
|
||
There is also a | ||
<<modules-discovery-settings,`cluster.auto_shrink_voting_configuration` setting>>, | ||
which is set to true by default. If it is set to false, you must use this API to | ||
maintain the voting configuration. | ||
|
||
For more information, see <<modules-discovery-removing-nodes>>. | ||
|
||
[float] | ||
=== Examples | ||
|
||
Add `nodeId1` to the voting configuration exclusions list: | ||
[source,js] | ||
-------------------------------------------------- | ||
POST /_cluster/voting_config_exclusions/nodeId1 | ||
-------------------------------------------------- | ||
// CONSOLE | ||
// TEST[catch:bad_request] | ||
|
||
Remove all exclusions from the list: | ||
[source,js] | ||
-------------------------------------------------- | ||
DELETE /_cluster/voting_config_exclusions | ||
-------------------------------------------------- | ||
// CONSOLE |
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
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
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
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
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
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
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
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
Oops, something went wrong.