-
Notifications
You must be signed in to change notification settings - Fork 25.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable adaptive replica selection by default (#26522)
Relates to #24915
- Loading branch information
Showing
5 changed files
with
38 additions
and
21 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
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,20 @@ | ||
[[breaking_70_search_changes]] | ||
=== Search changes | ||
|
||
==== Adaptive replica selection enabled by default | ||
|
||
Adaptive replica selection has been enabled by default. If you wish to return to | ||
the older round robin of search requests, you can use the | ||
`cluster.routing.use_adaptive_replica_selection` setting: | ||
|
||
[source,js] | ||
-------------------------------------------------- | ||
PUT /_cluster/settings | ||
{ | ||
"transient": { | ||
"cluster.routing.use_adaptive_replica_selection": false | ||
} | ||
} | ||
-------------------------------------------------- | ||
// 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