A write for a single row is atomic, including writing to multiple CF's in with 
the same row key. http://wiki.apache.org/cassandra/FAQ#batch_mutate_atomic

They are not isolated though, reads may see the write partially applied. 

Have a look at the data modelling slides here 
http://www.datastax.com/events/cassandrasf2011/presentations for a discussion 
on how to create an application Tx log. 

Rollback is difficult / impossible if you are doing updates, you would need to 
understand what to roll the value back to and would have to lock anyone else 
updating until you have finished the abort. Which is probably (technically) an 
unbounded wait.

Most people use zookeeper / cages to serialise access to a particular key. 
Cheers

-----------------
-----------------
Aaron Morton
Freelance Cassandra Developer
@aaronmorton
http://www.thelastpickle.com

On 4 Aug 2011, at 17:31, Jérémy SEVELLEC wrote:

> Hi All,
> 
> Making "transaction" like is my actual preoccupation of the moment.
> 
> My (simplified) need is :
> 
> - update data in column family #1
> - insert data in column family #2
> 
> My need is to see these operations in a single "transaction" because the data 
> is tightly coupled.
> 
> I use zookeeper/cage to make distributed lock to avoid multiple client 
> inserting or updating on the same data.
> 
> But there is a problem there is a fail when inserting in column family 2  
> because i have to "rollback" updated data of the column family #1.
> 
> 
> My reading on the subject is that to solve the fail :
> - Can we really consider that "write never fail" with cassandra from the time 
> the execution of a mutation happened on a node. What can be the cause of fail 
> at this point?
> So is it important to thinking about this potential problem? (yes in my 
> opinion but i'm not totally sure).
> - Make a retry first. Is there really a chance for the second try to succeed 
> if the first fail?
> -  keep the "transaction data" to have the possibility to rollback 
> programmatically by deleting the inserting data. The problem is on the 
> updated data to rollback because old values are lost. I read what "Read 
> before write" is a bad idea to save old values before the update. the problem 
> remains, so how to do?
> 
> 
> Do you have any feedback on this topic?
> 
> Regards,
> 
> --
> Jérémy
> 

Reply via email to