Cassandra atomic reads/writes within a single ColumnFamily -


cassandra's front page http://incubator.apache.org/cassandra/ states that:

cassandra guarantees reads , writes atomic within single columnfamily.

what mean?
sounds means batch_insert() , batch_mutate() of two different rows, in same cf atomic , if operation on 1 of rows fails, whole operation fails. sounds true... correct?

i have answer jonathan ellis, cassandra maintainer:

it's correct, if understood correctly. should remove since it's confusing written.

what means is, if write given row acked, eventually, all data updated in row available reads. no, it's not atomic @ batch_mutate level @ list level.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -