Hello, I need to set a new value in a single value of all the documents on an Engine.
In SQL it would like UPDATE <field>=123 FROM <table>
Since the PATCH operation needs the ID to be sent, the only way i found is use the API to make multiple LIST requests (every LIST can return 10k documents and I have more), and then make several PATCH requests.
Logstash is discarded since it can't make PATCH requests (I made a topic with that issue and had no answer: How to generate PATCH requests using the AppSearch output plugin?)
Is there a more straightforward way to do this massive updates in all the engine?