shoothub
(Shoothub)
September 24, 2020, 2:15pm
9
You are probably out of storage, Elastic Search by default stop after you use 90% of disk space. If you can, empty some space or add new one or change watermark setting on Elastic Search, and run to unblock:
curl -XPUT -H "Content-Type: application/json" http://localhost:9200/_all/_settings -d ‘{"index.blocks.read_only_allow_delete": null}'
reference:
he @mmahacek
you reach the high/low watermark on your Elasticsearch server(s).
The following settings allow to control when Elasticsearch will first stop allocating new shards, and when it starts to relocate shards or when it sets the Cluster into read-only state because to many messages are coming in.
Setting: cluster.routing.allocation.disk.watermark.low
Controls the low watermark for disk usage. It defaults to 85%, meaning ES will not allocate new shards to nodes once they have more than …
Hi,
I didn’t see any posts related to this error, but maybe I searched with the incorrect key works.
Would be nice if you can send me the link if you say it was posted before.
Anyway, this is what I found by googling the web and it resolved it.
Add the following in elasticseach.yml
/etc/elasticsearch#
vim elasticsearch.yml
cluster.routing.allocation.disk.threshold_enabled: true
cluster.routing.allocation.disk.watermark.flood_stage: 5gb
cluster.routing.allocation.disk.watermark.low: 30gb …