cluster.asciidoc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [[modules-cluster]]
  2. == Cluster
  3. One of the main roles of the master is to decide which shards to allocate to
  4. which nodes, and when to move shards between nodes in order to rebalance the
  5. cluster.
  6. There are a number of settings available to control the shard allocation process:
  7. * <<shards-allocation>> lists the settings to control the allocation and
  8. rebalancing operations.
  9. * <<disk-allocator>> explains how Elasticsearch takes available disk space
  10. into account, and the related settings.
  11. * <<allocation-awareness>> and <<forced-awareness>> control how shards can
  12. be distributed across different racks or availability zones.
  13. * <<allocation-filtering>> allows certain nodes or groups of nodes excluded
  14. from allocation so that they can be decommissioned.
  15. Besides these, there are a few other <<misc-cluster,miscellaneous cluster-level settings>>.
  16. All of the settings in this section are _dynamic_ settings which can be
  17. updated on a live cluster with the
  18. <<cluster-update-settings,cluster-update-settings>> API.
  19. include::cluster/shards_allocation.asciidoc[]
  20. include::cluster/disk_allocator.asciidoc[]
  21. include::cluster/allocation_awareness.asciidoc[]
  22. include::cluster/allocation_filtering.asciidoc[]
  23. include::cluster/misc.asciidoc[]