Elasticsearch根据条件进行删除索引命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elasticsearch根据条件进行删除索引命令相关的知识,希望对你有一定的参考价值。
以前都是按照索引中文档的id进行删除,其实Elasticsearch支持按照条件进行删除操作:
删除索引中某个type的符合条件记录:
curl -XDELETE http://localhost:9200/indexname/typename/_query?pretty -d ‘{
"query":{
"filtered":{
"filter":{
"bool":{
"must":{
"range":{
"logtime":{
"gt":"20171214235459",
"lt":"20171215235959"
}
}
}
}
}
}
}
}‘;
删除索引中所有的符合条件记录:
curl -XDELETE http://localhost:9200/indexname/_query?pretty -d ‘{
"query":{
"filtered":{
"filter":{
"bool":{
"must":{
"range":{
"logtime":{
"gt":"20171214235459",
"lt":"20171215235959"
}
}
}
}
}
}
}
}‘;
以上是关于Elasticsearch根据条件进行删除索引命令的主要内容,如果未能解决你的问题,请参考以下文章