如何更新和剥离elasticsearch中数组字段的第一个字符

vbopmzt1  于 2021-06-14  发布在  ElasticSearch
关注(0)|答案(1)|浏览(364)

在ElasticSearch的索引中,我将以下内容列为json文档
现在的

{
"bar": {
    "bar": [{
            "bar": [{
                    "bar": [{
                            "foo": "Y111111111111"
                        }
                    ]
        }
    ]
}

} }
需要更新

{
"bar": {
    "bar": [{
            "bar": [{
                    "bar": [{
                            "foo": "111111111111"
                        }
                    ]
        }
    ]
}

} }
我该如何更新索引以去掉字符串的第一个字符(其中等于bar)?
我尝试了以下语法,该语法适用于单个字段,但在数组字段上运行时收到异常

{
  "error": {
  "root_cause": [
  {
    "type": "script_exception",
    "reason": "runtime error",
    "script_stack": [
      "ctx._source.foo = ctx._source.foo.substring(1);",
      "           ^---- HERE"
    ],
    "script": "ctx._source.foo = ctx._source.foo.substring(1);",
    "lang": "painless"
  }
 ],
 "type": "script_exception",
 "reason": "runtime error",
 "script_stack": [
  "ctx._source.foo = ctx._source.foo.substring(1);",
  "           ^---- HERE"
],
"script": "ctx._source.foo = ctx._source.foo.substring(1);",
"lang": "painless",
"caused_by": {
  "type": "illegal_argument_exception",
  "reason": "Illegal list shortcut value [foo]."
  }
 },
 "status": 400
}

POST test/_update_by_query 
{
"query": {
"prefix": {
  "foo": "Y"
}
},
"script": {
"source": "ctx._source.foo = ctx._source.foo.substring(1);"
}

Map

{
"TEST": {
    "mappings": {
        "properties": {
            "bar": {
                "properties": {
                "bar": {
                        "properties": {
                            "bar: {
                                "properties": {
                                "bar": {
                                        "properties": {
                                        "foo": {
                                                "type": "keyword"
                                            }
                                            }
                                    }
                                }
                            }
                        }
                    }
                   }
            }
        }
    }
    }

}

fumotvh3

fumotvh31#

我会按以下步骤做。查找所有 foo 字段以开头 Y 然后更新所有 foo 剥离第一个字符的字段:

POST test/_update_by_query
{
  "query": {
    "prefix": {
      "bar.bar.bar.bar.foo": "Y"
    }
  },
  "script": {
    "source": "ctx._source.bar.bar[0].bar[0].bar[0].foo = ctx._source.bar.bar[0].bar[0].bar[0].foo.substring(1);"
  }
}

ps:查询将取决于您的 bar 字段是否嵌套,但如果不是,则上面的查询应该可以工作。

相关问题