I need to update tags in docs based on query search. I am able to do it 
using the update by query plugin.

Is there a way to do it using Python or Java API client.

Here is the query that works perfectly fine. Search for a phrase and update 
a tag.

curl -XPOST 'localhost:9200/index/type/_update_by_query' -d '{
"query" : { "match_phrase" : { "content" : "michael aronstein" } },
    "script" : "ctx._source.tags += tag",
    "params" : {
        "tag" : "ABC"
    }
}'


Amay

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/b755711b-16e8-41e1-98b6-38f16b8b2031%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to