“Удалить индекс в Elasticsearch Python” Ответ

Удалить индекс в Elasticsearch Python

from elasticsearch import Elasticsearch
es = Elasticsearch()

es.indices.delete(index='test-index', ignore=[400, 404])
Disgusted Deer

Удалить индекс Elasticsearch

curl -X DELETE 'http://localhost:9200/_all'
Amused Aardvark

Ответы похожие на “Удалить индекс в Elasticsearch Python”

Вопросы похожие на “Удалить индекс в Elasticsearch Python”

Больше похожих ответов на “Удалить индекс в Elasticsearch Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования