由于elasticsearch-5.6.1不支持type直接删除,只能删除数据。
执行命令:
curl -H "Content-Type: application/json" -XPOST "http://localhost:9200/test_index/test_type/_delete_by_query?conflicts=proceed&pretty" -d ‘ { "query": { "match_all": {} } }‘
即可删除test_index索引下type为test_type中的所有数据。
原文地址:https://www.cnblogs.com/tanglc/p/11951956.html
时间: 2024-10-19 04:42:27