cluster.asciidoc 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. .The voting configuration exclusions API endpoint has changed.
  8. [%collapsible]
  9. ====
  10. *Details* +
  11. The `POST /_cluster/voting_config_exclusions/{node_filter}` API has been
  12. removed in favour of `POST /_cluster/voting_config_exclusions?node_names=...`
  13. and `POST /_cluster/voting_config_exclusions?node_ids=...` which allow you to
  14. specify the names or IDs of the nodes to exclude.
  15. *Impact* +
  16. Use `POST /_cluster/voting_config_exclusions?node_ids=...` and specify the nodes
  17. to exclude instead of using a node filter. Requests submitted to the
  18. `/_cluster/voting_config_exclusions/{node_filter}` endpoint will return an
  19. error.
  20. ====
  21. .The `cluster.join.timeout` setting has been removed.
  22. [%collapsible]
  23. ====
  24. *Details* +
  25. The `cluster.join.timeout` setting has been removed. Join attempts no longer
  26. time out.
  27. *Impact* +
  28. Do not set `cluster.join.timeout` in your `elasticsearch.yml` file.
  29. ====
  30. // end::notable-breaking-changes[]