Is there any NoSQL that is ACID compliant?
(Or is that even possible with NoSQL given it's just a bunch of loosely coupled key-value pairs.)
|
feedback
|
|
Well, according to the Wikipedia article on NoSQL:
and also:
and
So, in a nutshell, I'd say that one of the main benefits of a "NoSQL" data store is its distinct lack of ACID properties. Furthermore, IMHO, the more one tries to implement and enforce ACID properties, the further away from the "spirit" of a "NoSQL" data store you get, and the closer to a "true" RDBMS you get (relatively speaking, of course). However, all that said, "NoSQL" is a very vague term and is open to individual interpretations, and depends heavily upon just how much of a purist viewpoint you have. For example, most modern-day RDBMS systems don't actually adhere to all of Edgar F. Codd's 12 rules of his relation model! Taking a pragmatic approach, it would appear that Apache's CouchDB comes closest to embodying both ACID-compliance whilst retaining loosely-coupled, non-relational "NoSQL" mentality. | ||||
feedback
|
|
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 document-style schema (collected key-value pairs in a "document" model) 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 principals governing how changes are applied to a database. In a very simplified way, it states (my own version):
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: | ||||
feedback
|
|
In this question someone must mention OrientDB: OrientDB is a NoSQL database, one of the few, that support fully ACID transactions. ACID is not only for RDBMS because it's not part of the Relational algebra. So it IS possible to have a NoSQL database that support ACID. This feature is the one I miss the most in MongoDB | |||||
feedback
|
|
If you are looking for an ACID compliant key/value store, there's Berkeley DB. Among graph databases at least Neo4j and HyperGraphDB offer ACID transactions (HyperGraphDB actually uses Berkeley DB for low-level storage at the moment). | |||
|
feedback
|
|
"NoSQL" is not a well-defined term. It's a very vague concept. As such, it's not even possible to say what is and what is not a "NoSQL" product. Not nearly all of the products typcially branded with the label are key-value stores. | |||
|
feedback
|
|
according to http://couchdb.apache.org/docs/overview.html couchdb is acid compliant | |||
feedback
|
|
take a look at the CAP theorem EDIT: RavenDB seems to be ACID compliant | ||||
|
feedback
|
|
IMHO it is an axiom of NoSql that it is not ACID compliant. To elaborate: it would be possible to extend one to be ACID but in doing so you'd lose most of the reasons for using one in the first place. So like always it depends on your case. If you're looking for ACID compliance, it would be hard to look away from the more traditional relational databases. Of course, if you have the resources this could be implemented with a system that has a NoSql store for specifiic parts of the system. That is, it might store the user settings or shopping cart before going to the relational database. | |||||
feedback
|
|
VoltDB is an entrant which claims ACID compliance, and while it still uses SQL, its goals are the same in terms of scalability | |||||
feedback
|
|
Wait is over. ACID compliant NoSQL DB is out ----------- have a look at citrusleaf | |||
|
feedback
|
|
Couchdb claims ACID properties. But that being said, I think it will be hard to find full ACID compliancy in the NoSQL world I think. | |||
|
feedback
|
|
db4o
| |||
|
feedback
|
|
Yes, MarkLogic Server is a NoSQL solution (document database I like to call it) that works with ACID transactions | |||
|
feedback
|
|
Not only NoSQL is not ACID compliant by design. NoSQL movement embrace the BASE (Basically Available, Soft state, Eventual consistency) claimed to be the opposite of ACID. NoSQL database are often called Eventually-Consisted database. To understand the differences you should drill down into the CAP theorem (aka Brewer's theorem) Visit http://www.julianbrowne.com/article/viewer/brewers-cap-theorem | |||
|
feedback
|