I need to store around 100 millions of records on the database. Around 60-70% of them will be deleted daily and same amount of records are inserted daily. I feel a document database like Hbase, Big Table would fit in this. There are many other data stores like Cassandra, MongoDb, etc. Which data store would be useful for this kind of problem as there will be huge amount of reads/writes(order of 10's of millions) daily.

link|improve this question

60% accept rate
Perhaps you wanted a efficiency comparison. You may see each of these data-stores performances on their websites. We use Cassandra for similar situation, but I haven't played with other datastores – Nishant Dec 23 '11 at 8:14
the nature of your data probably affects this database comparision as well – Prescott Dec 23 '11 at 8:21
a lot of data stores can handle 100 million of records and these read/delete rates. What's the size of the records? what are your data access patterns etc. write vs. read ratios etc.? – Arnon Rotem-Gal-Oz Dec 24 '11 at 13:24
@ArnonRotem-Gal-Oz: The size of each record could be ~100KB, and read-to-write ratio would be 24:25 on non-weekend and 5:7 on weekends. – sravan_kumar Dec 26 '11 at 7:05
@sravan_kumar what about accessing the data ? by key? complex queries? – Arnon Rotem-Gal-Oz Dec 26 '11 at 19:29
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Based on the characteristics you've mentioned (JSON Documents, accesses by key, 100 million records, balanced read/write) I'd say CouchDB or Membase are good candidates (here's a quick comparison)

Both HBase and Cassandra can probably also work but for HBase you'd need to install a lot of components (Hadoop, ZooKeeper etc) that you won't really use d only use and Cassandra is better when you have more writes than read (at least the last time I used it).

Big Table, is unfortunately internal to google : )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.