vote up 16 vote down star
2

Apart from the google/bigtable scenario, when shouldn't you use a relational database? Why not, and what should you use? (did you learn 'the hard way'?)

flag
1  
When you schema varies a lot you will have a hard time with relational databases. This is where XML databases or key-value pair databases work best. or you could use IBM DB2 and have both relational data and XML data managed by a single database engine. Get it free - check FreeDB2.com. – Leon Katsnelson Mar 20 at 20:36
+1 for interesting. I like questions like this where people discuss when things must be done differently e.g. "When is xml not actually a sensible method for data storage?", etc, etc, etc – J M Mar 21 at 1:08

7 Answers

vote up 10 vote down check

In my experience, you shouldn't use a relational database when any one of these criteria are true:

  • your data is structured as a hierarchy or a graph (network),
  • the typical access pattern emphasizes reading over writing, or
  • there’s no requirement for ad-hoc queries.

Hierarchies and graphs do not translate well to relational tables. Even with the assistance of proprietary extensions like Oracle's CONNECT BY, chasing down trees is a mighty pain using SQL.

Relational databases add a lot of overhead for simple read access. Transactional and referential integrity are powerful, but overkill for some applications. So for read-mostly applications, a file metaphor is good enough.

Finally, you simply don’t need a relational database with its full-blown query language if there are no unexpected queries anticipated. If there are no suits asking questions like "how many 5%-discounted blue widgets did we sell in on the east coast grouped by salesperson?", and there never will be, then you, sir, can live free of DB.

link|flag
+1 for specifics. What about the scenario where part of your data is hierarchical e.g. a sales/stock database where there are customers, products, orders, etc, tens of thousands of products with tens of thousands of product categories which are hierarchical? – J M Mar 21 at 1:05
If the hierarchy is more wide than deep, then a relational DB could still be a reasonable choice. If the maximum depth is fixed, then you can always denormalize and flatten the hierarchy (not very pretty, though). – yukondude Mar 21 at 2:47
Wouldn't nested sets work pretty well even in relational databases? en.wikipedia.org/wiki/Nested_set_model – Henrik Paul May 6 at 19:07
There's nothing conflicting about a hierarchy. That's exactly what JOINs with 1:m relationships are. And why shouldn't you use an RDBMS just because you emphasize reading over writing? That's 99% of web sites. Ditto for "no ad hoc queries". This answer is just plain wrong. All three points are wrong. And it didn't even provide any suggested alternatives as requested. And it gets 10 votes plus accepted? Looks like a setup question to me. – le dorfier May 6 at 19:12
1  
le dorfier: 1. Hierarchies are 1:m reflexive relationships, which are easy enough to JOIN with to find the next level, but not for joins to arbitrary depths. 2. True, most read-only websites use RDBMSs, but again, referential integrity and transactional consistency are not nearly as useful for read-only use. 3. Ad-hoc queries are the reason relational theory exists--review your E.F. Codd. 4. Sorry, not a setup. In fact, I am a great believer in the power of RDBMSs, and teach courses in using them, but one has to grasp the limitations in any technology. – yukondude May 7 at 3:02
show 2 more comments
vote up 7 vote down

I suggest you visit the High Scalability blog, which discusses this topic almost on a daily basis and has many articles about projects that chose distributed hashes, etc. over RDMBS.

The quick (but very incomplete answer) is that not all data translates well to tables in efficient ways. For example, if your data is essentially one big dictionary, there are probably much faster alternatives that plain old RDBMS. Having said that, it mostly a matter of performance, and if performance isn't a huge concern in a project, and stability, consistency and reliability, for example, are, then I don't see much point in delving into these technologies when RDBMS is a much more mature and well developed scheme, with support in all languages and platforms and a huge set of solutions to choose from.

link|flag
vote up 4 vote down

Fifteen years ago I was working on a credit risk system (basically a big tree walking system). We were using Sybase on HPUX & solaris and performnce was killing us. We hired in consultants direct from Sybase who said it couldn't be done. Then we switched to an OO database (Object store in this case) and got a about a 100x performance increase (and the code was about 100x easier to write too)

But such situations are quite rare - a relational database is a good first choice.

link|flag
vote up 6 vote down

The relational database paradigm makes some assumptions about usage of data.

  • A relation consists of an unordered set of rows.
  • All rows in a relation have the same set of columns.
  • Each column has a fixed name and data type and semantic meaning on all rows.
  • Rows in a relation are identified by unique values in primary key column(s).
  • etc.

These assumptions support simplicity and structure, at the cost of some flexibility. Not all data management tasks fit into this kind of structure. Entities with complex attributes or variable attributes do not, for instance. If you need flexibility in areas where a relational database solution doesn't support it, you need to use a different kind of solution.

There are other solutions for managing data with different requirements. Semantic Web technology, for example, allows each entity to define its own attributes and to be self-describing, by treating metadata as attributes just like data. This is more flexible than the structure imposed by a relational database, but that flexibility comes with a cost of its own.

Overall, you should use the right tool for each job.

See also my other answer to "The Next-gen databases."

link|flag
+1 for the specifics of relational database paradigm assumptions. I think most beginner-to-intermediate devs (like me) forget that it was designed with assumptions and just don't remember it may not be the best way. In what types of systems would you come across the need for more flexibility? – J M Mar 21 at 1:17
@JM: It is the best way if you need the database to enforce a consistent set of attributes on all entities in a given relation. You'd need more flexibility if you have a collection of entities with variable attributes, e.g. a product catalog with many different types of products. – Bill Karwin Mar 21 at 1:49
I really like this answer. I'm so tired of hearing "a RDBMS can model anything" in discussions, but that's not what really matters. It's about the assumptions of the relational database paradigm and if these make a good fit for the problem at hand or not. – nawroth Aug 2 at 10:42
@nawroth: Yep! You don't use a screwdriver to drive in a nail, and you don't use a hammer to drive in a screw. Maybe it's possible to do either of those things, given enough determination and patience. But it'd be easier, more efficient, and more successful if you use the right tools. – Bill Karwin Aug 2 at 18:14
vote up 0 vote down

About 7-8 years ago I worked on a web site that grew in popularity beyond our initial expectations and it got us in trouble performance-wise. Since we were all relatively inexperienced in web based projects it posed a significant strain on us about what to do beyond usual database separation onto separate server, load balancing etc.

One day I've thought of something pretty simple. Since site was based on users, their profiles were stored in a database table the usual way someone would do it - user id, lots of info variables and stuff like that - which would show up as a users profile page which other users could look up. I've flushed all that data into a simple html file, already prepared as a users profile page and got a significant boost - basically a cache. I even made a system that when user edited their profile info, it would parse original html file, put it up for edit, and then flush out html back to the file system - got even more boost.

I made something simillar with messages users sent to each other. Basically wherever I could make a system bypass a database altogether, avoiding a INSERT or UPDATE, I got a significant boost. It may sound like a common sense, but it was an enlightening moment. It is not an avoidance of relational setup per se, but it is an avoidance of the database altogether - KISS.

link|flag
vote up 4 vote down

When you schema varies a lot you will have a hard time with relational databases. This is where XML databases or key-value pair databases work best. or you could use IBM DB2 and have both relational data and XML data managed by a single database engine. Get it free - check http://FreeDB2.com.

link|flag
Do you have any real world examples of when you may be in this situation to help less experienced developers (meaning me) get a feel for when this kind of issue may crop up? – J M Mar 21 at 1:11
vote up 0 vote down

A very good reason not to use a relational DBMS is the case when you can't properly design a relational schema, that means you are unaware of Relational Model:

  • Relational algebra
  • Functional dependencies theory
  • Normalization theory and normal forms
link|flag
I can sympathize, having taken over relational DBs from designers quite unfamiliar with relational theory. However, if the situation calls for an RDB, then the developer should learn relational theory--or hire someone proficient--rather than choose an alternate, and therefore lesser, technology. – yukondude Mar 21 at 15:44

Your Answer

Get an OpenID
or

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