gpt4 book ai didi

python:如何使用 doc _id 检查 Elasticsearch 中是否存在文档

转载 作者:行者123 更新时间:2023-12-03 01:16:42 26 4
gpt4 key购买 nike

有没有办法通过任何 pythonic Elasticsearch 库,使用 _id 字段检查给定索引中是否存在文档?

假设我有一个 73H316Dhgh 的随机文档 _id,我想检查它是否存在于给定索引上?我将如何使用任一 python Elasticsearch 库来解决这个问题?

最佳答案

您可以使用 get method获取文档:

es.get(index="my-index", id="73H316Dhgh")

否则,如果您不需要完整文档,而只是检查是否存在,则可以使用 exists method :

es.exists(index="my-index", id="73H316Dhgh")

关于python:如何使用 doc _id 检查 Elasticsearch 中是否存在文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62265456/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com