Answers for "how to remove index in elasticsearch"

1

delete index in elasticsearch python

from elasticsearch import Elasticsearch
es = Elasticsearch()

es.indices.delete(index='test-index', ignore=[400, 404])
Posted by: Guest on November-02-2021
2

elastic delete index

curl -X DELETE "localhost:9200/twitter?pretty"
Posted by: Guest on July-24-2020

Code answers related to "how to remove index in elasticsearch"

Browse Popular Code Answers by Language