Cassandra's front page http://incubator.apache.org/cassandra/ states that:
Cassandra guarantees reads and writes to be atomic within a single ColumnFamily.
What exactly does that mean?
It sounds like it means that batch_insert() and batch_mutate() of two different rows, in the same CF is atomic and if the operation on one of the rows fails, the whole operation fails. but it sounds too good to be true... Is this correct?