ElasticSearch - High Disk Watermark #858
-
I'm getting a warning when running Photon in docker: Anyone know how to modify the config for Elasticseach to remove this check? Yes, my disk is below 10% free space, but that 10% is still 2.8TB so I am not too worried about it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
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:
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 a couple of other settings you can tweak instead.) |
Beta Was this translation helpful? Give feedback.
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:
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 …