Re: Achieving isolation on single row modifications with batch_mutate

2010-11-30 Thread E S
30, 2010 12:57:07 AM Subject: Re: Achieving isolation on single row modifications with batch_mutate In this case, it sounds like you should combine columns A and B if you are writing them both at the same time, reading them both at the same time, and need them to be consistent. Obviously, you're

Re: Achieving isolation on single row modifications with batch_mutate

2010-11-30 Thread Jonathan Ellis
On Sat, Nov 27, 2010 at 10:12 AM, E S tr1skl...@yahoo.com wrote: I'm trying to figure out the best way to achieve single row modification isolation for readers. I have a lot of No's for you. :) As an example, I have 2 rows (1,2) with 2 columns (a,b).  If I modify both rows, I don't care if

Re: Achieving isolation on single row modifications with batch_mutate

2010-11-30 Thread Ed Anuff
It's hard to tell without knowing the the nature of the data you're writing, but you might want to think about whether you can embed any sort of version number and/or checksum into the column names of the chunk columns. That way, you could very easily determine that the data you wanted to

Re: Achieving isolation on single row modifications with batch_mutate

2010-11-30 Thread E S
9:50:51 AM Subject: Re: Achieving isolation on single row modifications with batch_mutate On Sat, Nov 27, 2010 at 10:12 AM, E S tr1skl...@yahoo.com wrote: I'm trying to figure out the best way to achieve single row modification isolation for readers. I have a lot of No's for you

Re: Achieving isolation on single row modifications with batch_mutate

2010-11-29 Thread Tyler Hobbs
In this case, it sounds like you should combine columns A and B if you are writing them both at the same time, reading them both at the same time, and need them to be consistent. Obviously, you're probably dealing with more than two columns here, but there's generally not any value in splitting