gpt4 book ai didi

python - 如何使用 elasticsearch-py 更新文档?

转载 作者:IT老高 更新时间:2023-10-28 21:47:07 25 4
gpt4 key购买 nike

有人有如何使用更新的例子吗?已记录 here ,但文档不清楚,不包括工作示例。我尝试了以下方法:

coll = Elasticsearch()
coll.update(index='stories-test',doc_type='news',id=hit.meta.id,
body={"stanford": 1, "parsed_sents": parsed })

我明白了

elasticsearch.exceptions.RequestError: 
TransportError(400, u'ActionRequestValidationException[Validation Failed: 1: script or doc is missing;]')

我想使用部分文档进行更新,但更新方法不接受任何名为“文档”或“文档”的参数。

最佳答案

你就快到了,你只需要将你的 body 包含在一个“doc”字段中。使用 elasticsearch-py 进行部分更新的正确方法如下:

coll = Elasticsearch()
coll.update(index='stories-test',doc_type='news',id=hit.meta.id,
body={"doc": {"stanford": 1, "parsed_sents": parsed }})

关于python - 如何使用 elasticsearch-py 更新文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30598152/

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