If I have a document with just one field called "subject"
and I create three update requests for same document.
update request1(with upsert as entire doc):- Creates document1 with subject "abcd"
Update request2: Updates subject from "abcd" to "efgh"
Update request3: Updates subject from "efgh" to "ijkl"
and create a bulk request out of this,
Is it always executed in the same order? If at the end if I query the subject will I always get "ijkl" or is there any possibility that I will get "efgh"
Note: All these updates are for same document.