Transaction locking

Hi ,
is there any way where i can lock the transaction? If there is a situation where two users are trying to update data in ES at same time or more precisely if data is added offline and has to be synchronized when comes to online. Also can i have some kind of times stamping for each transaction done(modified time)?

Thanks.

Elasticsearch is not ACID compliant and does not support transactions, so I suspect this may be something you meed to handle at the application layer.

We support optimistic locking through the use of version numbers generated internally.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.