I have some table in Cassandra employee_list (id int, name text, PRIMARY KEY (id)) . Supposing i want to add the names of employees to that table and i need unique integer IDs for every employee. Is there any way to add auto generated sequencial integer numbers in cassandra?
For example, i am just adding some name Jon Snow, and Cassandra attributes to that name number 1, for the next name Arya Stark number 2 and so on..
Thank you
P.S. I am familiar with UUID