cluster.asciidoc 1.1 KB

123456789101112131415161718192021222324252627
  1. [float]
  2. [[breaking_70_cluster_changes]]
  3. === Cluster changes
  4. [float]
  5. ==== `:` is no longer allowed in cluster name
  6. Due to cross-cluster search using `:` to separate a cluster and index name,
  7. cluster names may no longer contain `:`.
  8. [float]
  9. ==== New default for `wait_for_active_shards` parameter of the open index command
  10. The default value for the `wait_for_active_shards` parameter of the open index API
  11. is changed from 0 to 1, which means that the command will now by default wait for all
  12. primary shards of the opened index to be allocated.
  13. [float]
  14. ==== Shard preferences `_primary`, `_primary_first`, `_replica`, and `_replica_first` are removed
  15. These shard preferences are removed in favour of the `_prefer_nodes` and `_only_nodes` preferences.
  16. [float]
  17. ==== Cluster-wide shard soft limit
  18. Clusters now have soft limits on the total number of open shards in the cluster
  19. based on the number of nodes and the `cluster.max_shards_per_node` cluster
  20. setting, to prevent accidental operations that would destabilize the cluster.
  21. More information can be found in the <<misc-cluster,documentation for that setting>>.