I want to update two fields for all documents in elasticsearch. According to the elasticsearch document:
In Updating a Whole Document, we said that the way to update a document is to retrieve it, change it, and then reindex the whole document.
1- what is the difference between partial update and the whole update in index structure?
2- Is the partial update documents equivalence to the with delete and insertion to documents?