fix-common-cluster-issues.asciidoc 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [[fix-common-cluster-issues]]
  2. == Fix common cluster issues
  3. This guide describes how to fix common errors and problems with {es} clusters.
  4. <<fix-watermark-errors,Watermark errors>>::
  5. Fix watermark errors that occur when a data node is critically low on disk space
  6. and has reached the flood-stage disk usage watermark.
  7. <<circuit-breaker-errors,Circuit breaker errors>>::
  8. {es} uses circuit breakers to prevent nodes from running out of JVM heap memory.
  9. If Elasticsearch estimates an operation would exceed a circuit breaker, it stops
  10. the operation and returns an error.
  11. <<high-cpu-usage,High CPU usage>>::
  12. The most common causes of high CPU usage and their solutions.
  13. <<high-jvm-memory-pressure,High JVM memory pressure>>::
  14. High JVM memory usage can degrade cluster performance and trigger circuit
  15. breaker errors.
  16. <<red-yellow-cluster-status,Red or yellow cluster status>>::
  17. A red or yellow cluster status indicates one or more shards are missing or
  18. unallocated. These unassigned shards increase your risk of data loss and can
  19. degrade cluster performance.
  20. <<rejected-requests,Rejected requests>>::
  21. When {es} rejects a request, it stops the operation and returns an error with a
  22. `429` response code.
  23. <<task-queue-backlog,Task queue backlog>>::
  24. A backlogged task queue can prevent tasks from completing and put the cluster
  25. into an unhealthy state.
  26. <<diagnose-unassigned-shards,Diagnose unassigned shards>>::
  27. There are multiple reasons why shards might get unassigned, ranging from
  28. misconfigured allocation settings to lack of disk space.
  29. <<cluster-fault-detection-troubleshooting,Troubleshooting an unstable cluster>>::
  30. A cluster in which nodes leave unexpectedly is unstable and can create several
  31. issues.
  32. include::common-issues/disk-usage-exceeded.asciidoc[]
  33. include::common-issues/circuit-breaker-errors.asciidoc[]
  34. include::common-issues/high-cpu-usage.asciidoc[]
  35. include::common-issues/high-jvm-memory-pressure.asciidoc[]
  36. include::common-issues/red-yellow-cluster-status.asciidoc[]
  37. include::common-issues/rejected-requests.asciidoc[]
  38. include::common-issues/task-queue-backlog.asciidoc[]
  39. include::common-issues/diagnose-unassigned-shards.asciidoc[]