-
-
-
-
Related MicroZone Resources
Like this piece? Share it with your friends:
In case you haven't seen it yet, Apache released Cassandra 1.2:
http://www.globenewswire.com/news-release/2013/01/02/514246/10016821/en/The-Apache-Software-Foundation-Announces-Apache-Cassandra-tm-v1-2.html
I'm stoked. Presently we write maps/lists as text blobs in Cassandra using JSON. This has obvious limitations. In order to add something to the map/list, we need to read the list, append the data then write the data back to C*. Read before write is not good, especially in a large distributed system. Two clients could read at the same time, append, and the second write would effectively remove the element added by the first. Not good.
Although I think the Thrift support is a bit clunky (via JSON), CQL3 supports native operations on collections.
Now, we just need to figure out how to migrate all of our data. =)
For more information see:
http://www.datastax.com/dev/blog/cql3_collections
Published at DZone with permission of Brian O' Neill, author and DZone MVB. (source)(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)