Is there any client synchronization using cassandra built-in functions?
I need to perform some operations, and these operations need to be synchronized with all other clients (mutual exclusion).
In the DBMS, I can lock the entire table or prepare a special table for synchronization purposes and use SELECT ... FOR UPDATE on it.
Can I achieve this with Cassandra without any third-party applications? If not the best way to do this? Preferred languages ββare Java and Python.
synchronization locking cassandra mutual-exclusion
Daimon
source share