It has been recommended to me that I investigate Key/Value pair data systems to replace a relational database I have been using.

What I am not quite understanding is how this improves efficiency of queries. From what I understand you are going to be throwing away a lot information that would help to make queries more efficient, by simply turning your structure database into one big long list of keys and values?

Have I missed the point completely?

link|improve this question

67% accept rate
why do you want to "... replace a relational database I have been using."?? – Mitch Wheat Mar 1 '10 at 6:42
because the amount of data that will soon be stored (when a a new group that is coming on board starts automatically submitting data from their instruments) will apparently make the system very slow. – Ankur Mar 1 '10 at 6:43
1  
A properly configured relational database, on good hardware will be able to cope with most loads. – Mitch Wheat Mar 1 '10 at 6:56
feedback

3 Answers

up vote 11 down vote accepted

The advantage of a relational database is the ability to relate and index information. Most key-value systems don't provide that.

What you need to ask yourself is, does switching make sense for my intended use case?

You have kind of missed the point. The point is, you sometimes don't have an index (in the way you do with a general relational DB anyways). Even when you do have an index, the ability to relate it together is difficult and what relational databases excel at. What makes nosql key-value stores so quick is that you store and retrieve what you need in a key-based approach. You need that blurb on someone's profile page? Just go fetch it. No need to maintain a table with everything in it. NoSQL solutions have a number of novel structure which make many usecases trivially easy, e.g. Redis is a data-structure oriented DB well-suited to rapidly building anything with queues or its pub-sub architecture. MongoDB is a freeform document database which stores documents as JSON (BSON). BigTable solutions are a little less structured that that but expand the idea of a row to have families of columns — key value pairs contained in each row. You can build an inverted index on top of this with a technology like Apache Solr.

Not everything really needs to be tabular. Another major usecase of NoSQL is massive scale, many solutions (e.g. BigTable -- HBase/Cassandra) are designed to shard and scale horizontally easily (not so easy with SQL!). Cassandra in particular is designed for no SPOF. Unless you really need it, SQL generally is good enough.

There's advantages and disadvantages. Personally, I use a mix of both. Use the right tool for the right job but that may end up being PostgreSQL more often than not.

You can liken a key-value system to making an SQL table with two columns, a unique key and a value. This is quite fast. You have no need to do any relations or correlations or collation of data. Just find the value and return it. This is an oversimplification, NoSQL databases do have a lot of interesting functionality beyond simple K,V stores.

I do not think scientific data is well suited to most nosql implementations, but if you look at HBase or Cassandra, it may well suit a scientist's needs (with proper rowkey design -- timestamp must not be first, check out OpenTSDB). I know of many companies that store sensor readings in Cassandra by using a random-order partitioner and the UUID of the sensor.

link|improve this answer
feedback

The efficiency comes from three main areas:

  1. The database has far fewer functions: there is no concept of a join and lessened or absent transactional integrity requirements. Less function means less work means faster, on the server side at least.
  2. Another design principle is that the data store lives in a cloud of servers so your request may have multiple respondents. These systems also claim the multi-server system improves fault tolerance through replication.
  3. It is fully buzzword compliant, using a bunch of ideas and descriptions that are not wholly invented yet. For example, Amazon is currently giving their services away in order to better understand how people might use them and get some experience to refine the specification.

To my eye, someone coming to you with a requirement that "our new data will be too much for our RDBMS" ought either have numbers to back that assertion up or admit they just want to try the new shiny. Is noSQL meritless? Probably not. Is it going to turn the world upside-down as Java 1.0 was hyped to? Probably not.

There's no harm in investigating new things, just don't bet the farm on them in favor of 50 year old, well-established, well-understood technology.

link|improve this answer
feedback

Here I'm assuming that you want to optimize one particular query, which is simply looking up a record by key. One example of this might be looking up a userinfo record by username. For some systems a query like that has to be incredibly fast and all other queries are unimportant.

The biggest factor in database performance will be the number of I/O operation required to read/write data. Most database systems use similar data structures (i.e. b-trees) which can retieve uncached data in O(log(n)) I/Os. In order to give durable updates the data will have to be written to disk: most systems do that sequentially, which is the fastest way.

So, where can a Key-Value store get efficiencies?

  1. Non-normalized data. Putting all the data in one row means no joins.
  2. Low CPU overhead. A key-value store avoids the CPU cost of query processing/optimization, security checks, constraint checks, etc.
  3. It is easier to have the store be in-process (as opposed to a SQL server running as a separate service) this eliminate IPC overhead.

Most RDBMS systems are built on top of something which looks like a key-value store so you could view this as cutting out the middleman.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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