We know that it is easy to create auto increment IDs in SQL databases, iS there a good solution for it in Cassandra? The IDs should be for key or column name.
|
There is no good solution.
or
As soon as anything goes beyond a single instance the sequencing of id's gets complicated, at least if you want it to scale. That includes relational databases. |
|||
|
|
|
Creating a global sequential sequence of number does not really make any sense in a distributed system. Use UUIDs. |
|||
|
|
|
This question is pretty old but I'd like to complete it with an other solution. Any solution that relies on nodes synchronization is unreasonable. It's pretty sure to break either by blocking IDs generation or by creating duplicate IDs. MySQL wayYou can reproduce the way it's done with the mysql master-master replication with the To reproduce it, you need to know the number of nodes or the max number of expected nodes and you need to create a (non-cassandra) counter (a file per example) on each node. Each time you want to generate a new number, you find the current value, add the increment and save it. If it doesn't exist yet, it's the offset. So for 10 nodes, you would have an increment of 10 and an offset of 1 for the first node, 2 for the second node, etc. Node 1 would create the IDs 1, 11, 21. Node 2 would create the IDs 2, 21, 22. If you want your IDs to be (approximatively) ordered between nodes, you need to maintain a shared counter and make sure each generated ID is higher than the shared counter. That way, unless your nodes/datacenters are out of sync for a long time, you shouldn't notice much difference. PrefixingYou can do basically the same thing by prefixing the ID (if it's an acceptable solution) with the node number (or name). And you don't have to known the number of nodes. Node 1 would create 1_1, 1_2, 1_3. Node 2 would create 2_1, 2_2, 2_3. |
|||
|
|
