5

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.

Nitish Mishra
  • 77
  • 2
  • 9

1 Answers1

7

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

Community
  • 1
  • 1
Carlo Bertuccini
  • 19,615
  • 3
  • 28
  • 39
  • thank you very much Carlo for your help. please help me in this also http://stackoverflow.com/questions/26353213/storing-json-object-in-cassandra – Nitish Mishra Oct 14 '14 at 05:27