Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The config above will ensure that elastic only switches to read-only mode when there is less then 10gb available. 

To force elastic to leave the read-only mode when there is more disk space available or when the settings in the elasticsearch.yml are adjusted you can execute the following commands at the elastic server.


windows

curl -XPUT -H "Content-Type:application/json" http://localhost:9200/_all/_settings -d "{ \"index.blocks.read_only_allow_delete\": null }"


linux

curl -XPUT -H "Content-Type:application/json" http://localhost:9200/_all/_settings -d '{ "index.blocks.read_only_allow_delete": null }'