select… for update in NoSql databases
I have a task: I have records in the READY status. My java application selects these records in batches of 50, processes them and deletes them. The application is running in multiple instances. Each record must be processed exactly once, that is, two applications should not receive the same record. In postgreSql I would use select... for update
. Is there a similar behavior somewhere in NoSql databases?