Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Elasticsearch Scripting: updating array value

This is my document

{
    "name": "andrew",
    "b": [{"x":"c1", "y": 0}, {"x":"c2", "y": 0}]
}

I want to find element in the array field "b" and update the entire object. I tried this script but it does not update. Any ideas?

{
    "script": "for (item in ctx._source.b) { if (item['x'] == x_id) { item = newobj; } };",
    "params": {
        "x_id": "c1",
        "newobj" : {"x":"c1", "y": 4222}
    },
    "lang":"groovy"
}
like image 276
user3658423 Avatar asked Jun 08 '16 20:06

user3658423


1 Answers

Use this instead:

{
  "script": "for (int i=0;i<ctx._source.b.size();i++) { item=ctx._source.b[i]; if (item['x'] == x_id) { ctx._source.b[i] = newobj} };",
  "params": {
    "x_id": "c1",
    "newobj": {
      "x": "c1",
      "y": 4222
    }
  },
  "lang": "groovy"
}
like image 110
Andrei Stefan Avatar answered Nov 01 '22 07:11

Andrei Stefan