0
我想刪除某個類型的所有文檔。ElasticSearch刪除批量項目
但這僅適用於1.0及更高版本:
curl -XDELETE 'http://localhost:9200/index/type/_query?pretty' -d
'{
"query" : {
"bool" : {
"must" : [
{
"match_all" : {}
}
]
}
}
}'
我想這對ES v1.4.x並能正常工作。這是我在ES v0.90.13上運行失敗的地方。 任何幫助,將不勝感激。