Skip to content

ElasticSearch - High Disk Watermark #858

Answered by lonvia
alternativesurfer asked this question in Q&A
Discussion options

You must be logged in to vote

You can usually safely ignore this warning. There is a more severe stage where ES goes into a read-only mode but even that shouldn't bother you when running Photon without updating.

If you want to get rid of the warnings nonetheless, try disabling the allocation checks like this:

curl -XPUT localhost:9200/_cluster/settings -d '{
    "transient" : {
        "cluster.routing.allocation.disk.threshold_enabled" : false
    }
}'

Make sure to run it within your container after Photon has started successfully. It is a transient setting, so you have to run it every time after startup.

(Borrowed from https://stackoverflow.com/questions/33369955/low-disk-watermark-exceeded-on which also describes …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by alternativesurfer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants