Delete documents of type in Elasticsearch

前端 未结 7 1603
南旧
南旧 2021-02-18 16:50

I want to delete all the documents indexed within a type in Elasticsearch, using the HTTP/REST api, but I don\'t want to delete the mapping for this type

How can I build

7条回答
  •  没有蜡笔的小新
    2021-02-18 17:26

    $ curl -XDELETE 'http://localhost:9200/twitter/tweet/_query?q=user:kimchy'
    
    $ curl -XDELETE 'http://localhost:9200/twitter/tweet/_query' -d '{
        "query" : {
            "term" : { "user" : "kimchy" }
        }
    }
    

提交回复
热议问题