index.asciidoc 1.4 KB

1234567891011121314151617181920212223242526272829
  1. [role="xpack"]
  2. [[xpack-autoscaling]]
  3. = Autoscaling
  4. NOTE: {cloud-only}
  5. The autoscaling feature enables an operator to configure tiers of nodes that
  6. self-monitor whether or not they need to scale based on an operator-defined
  7. policy. Then, via the autoscaling API, an Elasticsearch cluster can report
  8. whether or not it needs additional resources to meet the policy. For example, an
  9. operator could define a policy that a warm tier should scale on available disk
  10. space. Elasticsearch would monitor and forecast the available disk space in the
  11. warm tier, and if the forecast is such that the cluster will soon not be able to
  12. allocate existing and future shard copies due to disk space, then the
  13. autoscaling API would report that the cluster needs to scale due to disk space.
  14. It remains the responsibility of the operator to add the additional resources
  15. that the cluster signals it requires.
  16. A policy is composed of a list of roles and a list of deciders. Nodes matching
  17. the roles are governed by the policy. The deciders provide independent estimates
  18. of the capacity required. See <<autoscaling-deciders,Autoscaling deciders>> for
  19. more information on the deciders available.
  20. Autoscaling supports the scale-up and scale-down of dedicated {ml}
  21. nodes. Autoscaling also supports the scale-up of data nodes based on storage.
  22. [NOTE]
  23. Autoscaling is not supported on Debian 8.
  24. include::autoscaling-deciders.asciidoc[]