gpt4 book ai didi

elasticsearch - Elasticsearch 5.4.0-如何向现有文档添加新字段

转载 作者:行者123 更新时间:2023-12-03 00:32:52 25 4
gpt4 key购买 nike

在生产中,我们已经有2000多个文档。我们需要在现有文档中添加新字段。是否可以添加新字段?如何将新字段添加到现有字段

最佳答案

您可以使用update by query API来向所有现有文档添加新字段:

POST your_index/_update_by_query
{
"query": {
"match_all": {}
},
"script": {
"inline": "ctx._source.new_field = 0",
"lang": "painless"
}
}

注意:如果您的新字段是字符串,请改为将 0更改为 ''

关于elasticsearch - Elasticsearch 5.4.0-如何向现有文档添加新字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51168118/

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