voldemort vs. couchdb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:49:56Z http://stackoverflow.com/feeds/question/600851 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/600851/voldemort-vs-couchdb 3 voldemort vs. couchdb py213py 2009-03-01T23:46:46Z 2009-03-15T18:19:28Z <p>I am trying to decide whether to use voldemort or couchdb for an upcoming healthcare project. I want a storage system that has high availability , fault tolerance, and can scale for the massive amounts of data being thrown at it. </p> <p>What is the pros/cons of each?</p> <p>Thanks</p> http://stackoverflow.com/questions/600851/voldemort-vs-couchdb/600876#600876 1 Answer by scunliffe for voldemort vs. couchdb scunliffe 2009-03-02T00:04:47Z 2009-03-02T00:04:47Z <p>Is <strong>memcacheDB</strong> an option? I've heard that's how Digg handled HA issues.</p> http://stackoverflow.com/questions/600851/voldemort-vs-couchdb/602006#602006 3 Answer by mdorseif for voldemort vs. couchdb mdorseif 2009-03-02T11:35:21Z 2009-03-02T11:35:21Z <p><a href="http://project-voldemort.com/" rel="nofollow">Project Voldemort</a> looks nice, but I haven't looked deeply into it so far. </p> <p>In it current state CouchDB might not be the right thing for "massive amounts of data". Distributing data between nodes and routing queries accordingly is on the roadmap but not implemented so far. The biggest known production setups of CouchDB use "tables" ("databases" in couch-speak) of about 200G.</p> <p>HA is not natively supported by CouchDB but can build easily: All CouchDB nodes are replicating the database nodes between each other in a multi-master setup. We put two <a href="http://varnish.projects.linpro.no/" rel="nofollow">Varnish proxies</a> in front of the CouchDB machines and the Varnish boxes are made redundant with <a href="http://en.wikipedia.org/wiki/Common%5FAddress%5FRedundancy%5FProtocol" rel="nofollow">CARP</a>. CouchDBs "build from the Web" design makes such things very easy. </p> <p>The most pressing issue in <a href="http://stackoverflow.com/questions/28975/anyone-using-couchdb/411024#411024">our setup</a> is the fact that there are still issues with the replication of large (multi MB) attachments to CouchDB documents.</p> <p>I suggest you also check the traditional RDBMS route. <a href="http://stackoverflow.com/questions/348939/eventual-consistency/411176#411176">There are huge issues</a> with available talent outside the RDBMS approach and there are very capable offerings available from Oracle &amp; Co.</p> http://stackoverflow.com/questions/600851/voldemort-vs-couchdb/647558#647558 2 Answer by Stephan Schmidt for voldemort vs. couchdb Stephan Schmidt 2009-03-15T09:35:40Z 2009-03-15T18:19:28Z <p>Not knowing enough from your question, I would nevertheless say Project Voldemort or distributed hash tables (<strong>DHTs</strong>) like CouchDB in general are a solution to your problem of HA. </p> <p>Those DHTs are very nice for high availability but harder to write code for than traditional relational databases (RDBMS) concerning consistency.</p> <p>They are quite good to store document type information, which may fit nicely with your healthcare project but make development harder for data.</p> <ul> <li>The biggest limitation of most stores is that they are <strong>not transactionally safe</strong> (See <strong>Scalaris</strong> for an transactionally safe store) and you need to ensure data consistency by yourself - most use read time consistency by merging conflicting data). RDBMS are much easier to use for consistency of data (ACID)</li> <li>Joining data is much harder too. In RDBMs you can easily query data over several tables, you need to write code in CouchDB to aggregate data. For other stores <strong>Hadoop</strong> may be a good choice for aggregating information.</li> </ul> <p>Read about <strong>BASE</strong> and the <strong>CAP</strong> theorem on consistency vs. availability.</p> <p>See </p> <ul> <li><a href="http://www.metabrew.com/article/anti-rdbms-a-list-of-distributed-key-value-stores/" rel="nofollow">http://www.metabrew.com/article/anti-rdbms-a-list-of-distributed-key-value-stores/</a></li> <li><a href="http://queue.acm.org/detail.cfm?id=1394128" rel="nofollow">http://queue.acm.org/detail.cfm?id=1394128</a></li> </ul>