elasticsearch 查询删除文档

先安装查询删除插件
Installation
This plugin can be installed using the plugin manager:
sudo bin / plugin install delete - by - query
The plugin must be installed on every node in the cluster, and each node must be restarted after installation.
Removal
The plugin can be removed with the following command:
sudo bin / plugin remove delete - by - query
The node must be stopped before removing the plugin.

curl -XDELETE '127.0.0.1:9200/type/index/_query?pretty' -d '
{
"query": { "match_all": {} }
}'

猜你喜欢

转载自blog.csdn.net/abc595951988/article/details/71430000