we are working on a project which should collect journal and audit data and store it in a datastore for archive purposes and some views. We are not quite sure which datastore would fit for us.
- we need to store small JSON documents, about 150 bytes, e.g.
"audit:{timestamp: '86346512',host':'foo',username:'bar',task:'foo',result:0}"or"journal:{timestamp:'86346512',host':'foo',terminalid:1,type='bar',rc=0}" - we are expecting about one million entries per day, about 150 MB data
- data will be stored and read but never modified
- data should stored in an efficient way, e.g. binary format used by Apache Avro
- after a retention time data may be deleted
- custom queries, such as
'get audit for user and time period'or'get journal for terminalid and time period' - replicated data base for failsave
- scaleable
Currently we are evaluation NoSQL databases like Hadoop/Hbase, CouchDB, MongoDB and Cassandra. Are these databases the right datastore for us? Which of them would fit best? Are there better options?
We would appreciate any idea.
Ismail.