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"
}
}
}
}
}
}
}
}‘;
原文地址:http://blog.51cto.com/11091005/2126883