Elasticsearch 怎么根据条件删除数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elasticsearch 怎么根据条件删除数据相关的知识,希望对你有一定的参考价值。
参考技术A curl -XDELETE 'localhost:9200/customer/external/_query?pretty' -d '"query": "match": "name": "John"
'
详见Deleting Documents
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 怎么根据条件删除数据的主要内容,如果未能解决你的问题,请参考以下文章