본문 바로가기
Etc

Elasticsearch – Index Delete, disk full, can’t gathering data on some node

by 올엠 2020. 11. 3.
반응형

If you cluster Elasticsearch.

When can indexing some node data before disk full, unplaned reboot.

However, you must delete last index.

 

If you have Kibana just use

DELETE /logstash-<lastdate> or /<some problem index name>

OR You haven’t any UI, You can use CLI command,

curl -XDELETE ‘localhost:9200/logstash-<lastdate> or /<some problem index name>

 

Cluster is sync automatically so, don’t care about any node.

 

Cheers!

반응형