Hi all,
I have following question regarding the multiple search api _msearch
Is there a way to do the same by using the _update_by_query api ?
UseCase: change entries of fields based on mutliple bool query like:
POST /myindex/_update_by_query
{
"query" : {
"bool" : {
"filter" : {
"terms" : {
"Nr.keyword" : "12345"
}
}
}
},
"script" : {
"source" : "ctx._source.Wordcloud.keyword= 'Hallo'",
"lang" : "painless"
}
},
{
"query" : {
"bool" : {
"filter" : {
"terms" : {
"Nr.keyword" : "67890"
}
}
}
},
"script" : {
"source" : "ctx._source.Wordcloud.keyword= 'Welt'",
"lang" : "painless"
}
},
{
"query" : {
"bool" : {
"filter" : {
"terms" : {
"Nr.keyword" : "101112"
}
}
}
},
"script" : {
"source" : "ctx._source.Wordcloud.keyword= '!'",
"lang" : "painless"
}
}
Thanks in advance for your suggestions
Regards