I'm new in Cassandra. I can't understand what is the advantage of using counter in a table (or even in a different table if the non-counter columns are not part of the composite PRIMARY KEY)? Why we don't use a column with Int type, when I will have some statements like x=x++; what is the different between using int or counter?
Is that possible to use increments or decrements for Int Type in Cassandra at all?
Why we don't use a column with Int type, when I will have some statements like x=x++; what is the different between using int or counter?
Because using a normal Int column would require read-before-write and lock for operations like x=x++
Indeed, for a distributed database when you can have concurrent updates on the same value, the only way to guarantee consistent behaviour for x=x++
is:
Counter type allows concurrent increment/decrement on the value without neither requiring read-before-write nor locking
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With