项目用到es存储部分数据,但是es2.X版本后不支持批量的复合查询删除操作了,使用es_head无法批量操作。因此尝试使用python来操作es进行查询结果的批量删除操作。
1.在ide中安装elasticsearch模块(需要联网)
2.代码如下
#coding=utf-8
import requests
import json
import time
from elasticsearch import Elasticsearch
def es_del():
#连接es
es = Elasticsearch("10.5.4.20",http_auth=("elastic", "elastic"),port=9209)
#查询es结果 ,指定index,type
query = es.search(index="dmt",doc_type="request_log" ,body={"query": {"match_all": {}}}, size=100)
res_list =query["hits"]["hits"]
##遍历返回结果,按照id删除所有记录
for i in range(len(res_list)):
id = res_list[i]["_id"]
delete = es.delete(index="dmt",doc_type="request_log",id=id)
if __name__ == '__main__':
es_del()
过程是建立连接,发送查询请求并解析返回结果,根据id进行循环删除