Create index pattern in Kibana circle for 'creating' is spinning forever

0

Installed software: Elastic version: Kibana:

I hit the trouble described here: high disk watermark [90%] exceeded One way to spot the sign pointing at this state is to open Developer Tools in FF and see the 403 Error returned from server along with checking Elastic server logs. Unfortunately in the aforementioned link there is no description how to resolve this error since disk cleanup on Elastic server does not help.

Alex Barysevich

Posted 2019-08-04T21:26:32.020

Reputation: 1

Well, the trouble is disk full... time for spring cleaning. – vonbrand – 2019-08-12T13:44:54.793

Answers

0

Here is what needs to be done in order to bring your cluster back into a modifiable state:

  1. Clean up some disk space on Elastic host.

  2. Execute: curl -XPUT "http://elastic_host:9200/_cluster/settings" -H "Content-Type: application/json" -d '{ "persistent" : {"cluster.routing.allocation.disk.threshold_enabled" : false }}'

  3. Execute: curl -XPUT "http://elastic_host:9200/_settings" -H "Content-Type: application/json" -d '{"index": { "blocks": { "read_only_allow_delete": false }}}'

Alex Barysevich

Posted 2019-08-04T21:26:32.020

Reputation: 1