Background see my talk here http://www.datastax.com/events/cassandrasummit2012/presentations
Mutations to a row are isolated. In practice this means that simultaneous writes to the same row are possible, however the first write thread to complete wins and the other threads start their work again. So if you have one very hot row you will see less throughput as the writers will have to do some re-work. I did a little test here http://www.slideshare.net/aaronmorton/cassandra-sf-2012-technical-deep-dive-query-performance on slide 30. > sort the columns at the same time? Don;t worry about sorting. Cheers ----------------- Aaron Morton Freelance Cassandra Developer New Zealand @aaronmorton http://www.thelastpickle.com On 22/01/2013, at 4:40 AM, Viktor Jevdokimov <viktor.jevdoki...@adform.com> wrote: > Do you experience any performance problems? > > This will be the last thing to look at. > > > Best regards / Pagarbiai > Viktor Jevdokimov > Senior Developer > > Email: viktor.jevdoki...@adform.com > Phone: +370 5 212 3063, Fax +370 5 261 0453 > J. Jasinskio 16C, LT-01112 Vilnius, Lithuania > Follow us on Twitter: @adforminsider > Take a ride with Adform's Rich Media Suite > <signature-logo7f56.png> > <signature-best-employer-logo42f0.png> > > Disclaimer: The information contained in this message and attachments is > intended solely for the attention and use of the named addressee and may be > confidential. If you are not the intended recipient, you are reminded that > the information remains the property of the sender. You must not use, > disclose, distribute, copy, print or rely on this e-mail. If you have > received this message in error, please contact the sender immediately and > irrevocably delete this message and any copies. > > From: Jay Svc [mailto:jaytechg...@gmail.com] > Sent: Monday, January 21, 2013 17:28 > To: user@cassandra.apache.org > Subject: Concurrent write performance > > Folks, > > I would like to write(insert or update) to a single row in a column family. I > have concurrent requests which will write to a single row. Do we see any > performance implications because of concurrent writes to a single row where > comparator has to sort the columns at the same time? > > Please share your thoughts. > > Thanks, > Jay >