gpt4 book ai didi

java - Elasticsearch : To get all the document id depending on _field in source and update the _field with new data

转载 作者:太空宇宙 更新时间:2023-11-04 10:09:46 24 4
gpt4 key购买 nike

我想根据字段数据获取 Elasticsearch 存储库中存在的所有文档 ID,并使用新数据更新该字段。

例如:“_index”:“conn2”,“_type”:“conn2”,"_id": "doc1537857086536",“_score”:1,“_来源”: {“套件名称”:“TestSuite”

我想将 suitename 替换为“TestSuite2”,其中 suitename="TestSuite"对于包含“suitename”的所有文档 ID:“TestSuite”

  • 我尝试使用更新 API,因为它需要提及文档 ID。

如果我可以使用任何现有的 API 或任何方法,请帮助我。

谢谢

最佳答案

您可以使用Update by Query API .

您的调用将如下所示:

[编辑]:更新了此调用以使用脚本更新 suitename 字段。

POST conn2/_update_by_query
{
"script": {
"inline": "ctx._source.suitename = 'TestSuite2'",
"lang": "painless"
},
"query": {
"term": {
"suitename": "TestSuite"
}
}
}

或者,您也可以使用_reindex .

POST _reindex
{
"source": {
"index": "conn2"
},
"dest": {
"index": "new_index"
},
"script": {
"source": "if (ctx._source.suitename == 'TestSuite') {ctx._source.suitename = 'TestSuite2'}",
"lang": "painless"
}
}

关于java - Elasticsearch : To get all the document id depending on _field in source and update the _field with new data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52503104/

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