I want to use the key-value pair feature of Cassandra. Until now, I have been using Kyotocabinet but it does not support multiple writes and hence, I want to use Cassandra for versioning my tabular data.
Roll No, Name, Age, Sex
14BCE1008, Aviral, 22, Male
14BCE1007, Shantanu, 22, Male
The above data is tabular(csv). It's version 1. Next is version 2:
Roll No, Name, Age, Sex
14BCE1008, Aviral, 22, Male
14BCE1007, Shantanu, 22, Male
14BCE1209, Piyush, 22, Male
Hence, I would call the above version as version 2 with the following diff:
insert_patch
: 14BCE1209
as key(PK) and 14BCE1209, Piyush, 22, Male
as value.
I am familiar with the creation of the table but unable to figure out the versioning part.