Migrate from couchDB to RDBMS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:12:58Z http://stackoverflow.com/feeds/question/647556 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/647556/migrate-from-couchdb-to-rdbms 0 Migrate from couchDB to RDBMS mt3 2009-03-15T09:34:11Z 2009-03-16T06:36:04Z <p>Wondering if it is possible to migrate from a document-based DB (eg. couchDB) to a RDBMS (eg. MySQL). </p> http://stackoverflow.com/questions/647556/migrate-from-couchdb-to-rdbms/648755#648755 1 Answer by mdorseif for Migrate from couchDB to RDBMS mdorseif 2009-03-15T23:01:59Z 2009-03-16T06:36:04Z <p>Short Answer: Yes</p> <p>The long Answer: the more features of an Document-DB (e.g. CouchDB) you use, the more pain you will feel. Concepts like complex map-reduce based "view" generation, complex, nested documents and the like don't map well to RDBMS.</p> <p>Also thinks which are easy with CouchDB (Multi-Master with more than two Masters, Load balancing) are hard to nearly-impossible with RBMS. </p> <p>On the other hand, applications which make heavy use of a real RDBMS (usually not mySQL) are much harder to port to CouchDB &amp; friends, because they miss transactions and all the rest of the ACID properties. CouchDB provides much fewer guarantees in this regard. Therefore in general porting <em>from</em> couchdb is easier than porting <em>to</em> couchdb.</p> <p>That said, many applications use RDBMS only as glorified (key, value) stores - these are easy to port in all directions.</p>