gpt4 book ai didi

Elasticsearch 批量索引 - 仅在存在时更新

转载 作者:行者123 更新时间:2023-11-29 02:48:44 27 4
gpt4 key购买 nike

我正在使用 Elasticsearch Bulk Index更新文档的一些统计信息,但可能会发生我要更新的文档不存在的情况——在这种情况下,我希望它什么也不做。

在这种情况下,我不希望它创建文档。

我没有在文档中找到任何内容,或者可能遗漏了它。

我当前的操作(在本例中它创建了文档):

{
update: {
_index: "index1",
_type: "interaction",
_id: item.id
}
},
{
script: {
file: "update-stats",
lang: "groovy",
params: {
newCommentsCount: newRetweetCount,
}
},
upsert: normalizedItem
}

如何仅在文档存在时更新文档,否则什么都不更新?

谢谢

最佳答案

不要使用 upsert 并使用正常更新。另外如果更新时文档不存在,更新也会失败。它应该很适合您。

关于Elasticsearch 批量索引 - 仅在存在时更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36769631/

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