gpt4 book ai didi

elasticsearch - 如何从索引中删除多个字段?

转载 作者:行者123 更新时间:2023-12-02 22:11:47 24 4
gpt4 key购买 nike

我想从索引中删除多个字段,例如 ('person_full','company_full')。使用 ES: 5.6.14
删除一个字段 -> 以下代码运行良好

POST firma-2019.04/_update_by_query?conflicts=proceed
{
"script": {
"source": "ctx._source.remove('person_full')",
"lang": "painless"
}
}

但我想一次删除多个字段,此代码不起作用。
POST firma-2019.04/_update_by_query?conflicts=proceed
{
"script": {
"source": "ctx._source.remove('person_full','company_full')",
"lang": "painless"
}
}

预先感谢您的帮助

最佳答案

以下查询应该有效:

POST firma-2019.04/_update_by_query?conflicts=proceed
{
"script": {
"source": "ctx._source.remove('person_full');ctx._source.remove('company_full')",
"lang": "painless"
}
}

要删除更多字段,请在脚本中添加更多 remove 语句。

关于elasticsearch - 如何从索引中删除多个字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55656044/

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