high-availability.asciidoc 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. [[high-availability]]
  2. = Set up a cluster for high availability
  3. [partintro]
  4. --
  5. Your data is important to you. Keeping it safe and available is important
  6. to {es}. Sometimes your cluster may experience hardware failure or a power
  7. loss. To help you plan for this, {es} offers a number of features
  8. to achieve high availability despite failures.
  9. * With proper planning, a cluster can be
  10. <<high-availability-cluster-design,designed for resilience>> to many of the
  11. things that commonly go wrong, from the loss of a single node or network
  12. connection right up to a zone-wide outage such as power loss.
  13. * You can use <<xpack-ccr,{ccr}>> to replicate data to a remote _follower_
  14. cluster which may be in a different data centre or even on a different
  15. continent from the leader cluster. The follower cluster acts as a hot
  16. standby, ready for you to fail over in the event of a disaster so severe that
  17. the leader cluster fails. The follower cluster can also act as a geo-replica
  18. to serve searches from nearby clients.
  19. * The last line of defence against data loss is to take
  20. <<backup-cluster,regular snapshots>> of your cluster so that you can restore
  21. a completely fresh copy of it elsewhere if needed.
  22. --
  23. include::high-availability/cluster-design.asciidoc[]
  24. include::high-availability/backup-cluster.asciidoc[]
  25. include::ccr/index.asciidoc[]