Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Storing schema less data in cassandra

I am creating an application for auditing my web application. so I want to store all audit log in CASSANDRA db, and data is not pre-defined that, what we gonna store into db, basically It should be store into a schema less db. so how we can store it into Cassandra. Please help me guys.

like image 431
Nitish Mishra Avatar asked Oct 13 '14 09:10

Nitish Mishra


1 Answers

Cassandra is not anymore "schemaless", however using a Map on Cassandra 2.1 you can have a behaviour similar to what you could do in older versions. In this post you can find a detailed answer.

HTH, Carlo

like image 162
Carlo Bertuccini Avatar answered Sep 30 '22 15:09

Carlo Bertuccini