cluster.asciidoc 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [discrete]
  2. [[breaking_80_cluster_changes]]
  3. === Cluster changes
  4. //NOTE: The notable-breaking-changes tagged regions are re-used in the
  5. //Installation and Upgrade Guide
  6. //tag::notable-breaking-changes[]
  7. // end::notable-breaking-changes[]
  8. .The voting configuration exclusions API endpoint has changed.
  9. [%collapsible]
  10. ====
  11. *Details* +
  12. The `POST /_cluster/voting_config_exclusions/{node_filter}` API has been
  13. removed in favour of `POST /_cluster/voting_config_exclusions?node_names=...`
  14. and `POST /_cluster/voting_config_exclusions?node_ids=...` which allow you to
  15. specify the names or IDs of the nodes to exclude.
  16. *Impact* +
  17. Use `POST /_cluster/voting_config_exclusions?node_ids=...` and specify the nodes
  18. to exclude instead of using a node filter. Requests submitted to the
  19. `/_cluster/voting_config_exclusions/{node_filter}` endpoint will return an
  20. error.
  21. ====
  22. .The `cluster.join.timeout` setting has been removed.
  23. [%collapsible]
  24. ====
  25. *Details* +
  26. The `cluster.join.timeout` setting has been removed. Join attempts no longer
  27. time out.
  28. *Impact* +
  29. Do not set `cluster.join.timeout` in your `elasticsearch.yml` file.
  30. ====