Migrate from couchDB to RDBMS - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T14:12:58Zhttp://stackoverflow.com/feeds/question/647556http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/647556/migrate-from-couchdb-to-rdbms0Migrate from couchDB to RDBMSmt32009-03-15T09:34:11Z2009-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#6487551Answer by mdorseif for Migrate from couchDB to RDBMSmdorseif2009-03-15T23:01:59Z2009-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 & 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>