What is the fastest way to perform multiple "_update_by_query" in elasticsearch
The brute force way is to just use a for that runs every single update,
Another way for my problem would be searching for each document an then using BULK API
to update the documents.
Update the documents with multiple "_update_by_query"