gpt4 book ai didi

elasticsearch - 如何有条件地更新elasticsearch文档?

转载 作者:行者123 更新时间:2023-12-03 00:46:36 26 4
gpt4 key购买 nike

使用更新查询文档如下:

/<indexname>/_update/<id>
{
doc: {
/// the doc here
}
}

有没有办法,我可以将现有文档中的created_at字段之类的条件小于我们要传递的created_at?

最佳答案

您可能正在寻找update by query API。

例如

POST <index>/_update_by_query
{
"query": {
"range": {
"created_at": {
"lte": "2019-01-10"
}
}
}
}

关于elasticsearch - 如何有条件地更新elasticsearch文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59889052/

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