Flood Stage Watermark 🌊 in ElasticSearch
May 1, 2024 #elasticsearch A watermark is simply a threshold set on a ElasticSearch cluster. In this case, **Flood Stage Watermark is indicating a major disk space issue**, 3 watermarks are related to that:- low: 85% of disk usage (default)
- high: 90% of disk usage (default)
- flood_stage: 95% of disk usage (default) <- critical
All watermarks can be verified running a GET requests to the cluster:
|
|
When the last threshold or watermark is reached, ElasticSearch will force read-only mode. This is the security mecanism to prevent nodes from running out of space, so no write operations are allowed at this stage.
In order to fix this issue, ensure to:
- Remove unused indices
- Remove documents
- Increase disk space
Basically anything you can do to free up space. After that, you will need to exit the read only mode manually:
|
|