cluster.asciidoc 860 B

1234567891011121314151617181920212223242526
  1. [float]
  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. ====