elasticsearch-5.6.1删除index下的某个type
Posted 不积跬步,无以至千里;不积小流,无以成江海
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch-5.6.1删除index下的某个type相关的知识,希望对你有一定的参考价值。
由于elasticsearch-5.6.1不支持type直接删除,只能删除数据。
执行命令:
curl -H "Content-Type: application/json" -XPOST "http://localhost:9200/test_index/test_type/_delete_by_query?conflicts=proceed&pretty" -d ‘ { "query": { "match_all": {} } }‘
即可删除test_index索引下type为test_type中的所有数据。
以上是关于elasticsearch-5.6.1删除index下的某个type的主要内容,如果未能解决你的问题,请参考以下文章