Combining Relational and Document based "Databases" - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T17:39:22Z http://stackoverflow.com/feeds/question/1148387 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1148387/combining-relational-and-document-based-databases 1 Combining Relational and Document based "Databases" raoulsson http://stackoverflow.com/users/132396 2009-07-18T19:35:48Z 2009-07-23T09:21:01Z <p>I am developing a system that is all about media archiving, searching, uploading, distributing and thus about handling BLOBs.</p> <p>I am currently trying to find out the best way how to handle the BLOB's. I have limited resources for high end servers with a lot of memory and huge disks, but I can access a large array of medium performance off-the-shelf computers and hook them to the Internet. </p> <p>Therefore I decided to <em>not</em> store the BLOBs in a central Relational Database, because I would then have, in the worst case, one very heavy Database Instance, possibly on a single average machine. Not an option.</p> <p>Storing the BLOBs as files directly on the filesystem and storing their path in the database is also somewhat ugly and distribution would have to be managed manually, keeping track of the different copies myself. I don't even want to get close to that.</p> <p>I looked at CouchDB and I really like their peer-to-peer based design. This would allow me to run a distributed cluster of machines across the Internet, implies:</p> <ul> <li>Low cost Hardware</li> <li>Distribution for Redundancy and Failover out of the box</li> <li>Lightweight REST Interface</li> </ul> <p>So if I got it right, one could summarize it like this: <strong>Cloud like API and self managed, distributed, replicated system</strong></p> <p>The rest of the system does the normal stuff any average web application does: handling session, security, users, searching and the like. For this part I still want to use a relational datamodel. (CouchDB claims <em>not</em> to be a replacement for relational databases).</p> <p>So I would have all the standard data, including the BLOB's <em>meta data</em> in the relational database but the BLOBs themselves in CouchDB. </p> <p>Do you see a problem with this approach? Am I missing something important? Can you think of better solutions?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1148387/combining-relational-and-document-based-databases/1148398#1148398 0 Answer by Hugo S Ferreira for Combining Relational and Document based "Databases" Hugo S Ferreira http://stackoverflow.com/users/41652 2009-07-18T19:40:28Z 2009-07-18T19:40:28Z <p>No problem. I have done a design very similar to that one. You may also want to take a peek to HBase as an alternative to CouchDB and to the Adaptive Object-Model architectural pattern, as a way to manage your data and meta-data.</p> http://stackoverflow.com/questions/1148387/combining-relational-and-document-based-databases/1148429#1148429 1 Answer by Yrlec for Combining Relational and Document based "Databases" Yrlec http://stackoverflow.com/users/71354 2009-07-18T19:59:17Z 2009-07-18T19:59:17Z <p>You could try Amazon's relational database SimpleDB and S3 toghether with <a href="http://code.google.com/p/simplejpa/" rel="nofollow">SimpleJPA</a>. SimpleJPA is a JPA-implementation on top of SimpleDB. SimpleJPA uses SimpleDB for the relational structure and S3 to store BLOBs. </p> http://stackoverflow.com/questions/1148387/combining-relational-and-document-based-databases/1170601#1170601 2 Answer by Alan for Combining Relational and Document based "Databases" Alan http://stackoverflow.com/users/2958 2009-07-23T09:21:01Z 2009-07-23T09:21:01Z <p>Take a look at <a href="http://www.mongodb.org/display/DOCS/Storing+Files" rel="nofollow">MongoDB</a>, it supports storing binary data in an efficient format and is incredibly fast </p>