elasticsearch删除指定索引下的数据

如图使用postman删除数据:

请求代码:

http://ip:9200/index/type/_delete_by_query?pretty={
    "query": {
        "match_all": {
        }
    }
}

猜你喜欢

转载自www.cnblogs.com/yanketao/p/11127966.html