I will be getting documents from a filtered query (quite a lot of documents). I will then immediately create an index from them (in Python, using requests
to directly query the REST API), without any modification.
Is it possible to make this operation directly on the server, without the round-trip of data to the script and back?
Another question was similar (in the intent) and the only answer is to go via Logstash (equivalent to using my code, though possibly more efficient)