ElasticSearch 删除所有数据

清空索引全部数据

1
2
3
4
5
6
POST /索引/_delete_by_query?pretty
{
"query" : {
"match_all" : {}
}
}
坚持原创技术分享,您的支持将鼓励我继续创作!