Is there any NoSQL data store that is ACID compliant?

I’ll post this as an answer purely to support the conversation – Tim Mahy , nawroth , and CraigTP have suggested viable databases. CouchDB would be my preferred due to the use of Erlang, but there are others out there.

I’d say ACID does not contradict or negate the concept of NoSQL… While there seems to be a trend following the opinion expressed by dove , I would argue the concepts are distinct.

NoSQL is fundamentally about simple key-value (e.g. Redis) or document-style schema (collected key-value pairs in a “document” model, e.g. MongoDB) as a direct alternative to the explicit schema in classical RDBMSs. It allows the developer to treat things asymmetrically, whereas traditional engines have enforced rigid same-ness across the data model. The reason this is so interesting is because it provides a different way to deal with change, and for larger data sets it provides interesting opportunities to deal with volumes and performance.

ACID provides principles governing how changes are applied to a database. In a very simplified way, it states (my own version):

  • (A) when you do something to change a database the change should work or fail as a whole
  • (C) the database should remain consistent (this is a pretty broad topic)
  • (I) if other things are going on at the same time they shouldn’t be able to see things mid-update
  • (D) if the system blows up (hardware or software) the database needs to be able to pick itself back up; and if it says it finished applying an update, it needs to be certain

The conversation gets a little more excitable when it comes to the idea of propagation and constraints. Some RDBMS engines provide the ability to enforce constraints (e.g. foreign keys) which may have propagation elements (a la cascade). In simpler terms, one “thing” may have a relationship with another “thing” in the database, and if you change an attribute of one it may require the other be changed (updated, deleted, … lots of options). NoSQL databases, being predominantly (at the moment) focused on high data volumes and high traffic, seem to be tackling the idea of distributed updates which take place within (from a consumer perspective) arbitrary time frames. This is basically a specialized form of replication managed via transaction – so I would say that if a traditional distributed database can support ACID, so can a NoSQL database.

Some resources for further reading:

Leave a Comment