可以使用Python在Elastic Search中删除特定文档

时间:2016-07-19 19:27:50

标签: python elasticsearch

我知道我的数据库中的每个文档都有一个独特的' _id'。是否可以使用其_id属性删除特定文档?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:1)

是的,您可以使用delete method

实现这一目标
es.delete(index = "my_index", doc_type = "my_type", id = "1234")