Re: get_range_slices getting deleted rows

2011-01-25 Thread Roshan Dawrani
No, checking the key will not do. You will need to check if row.getColumnSlice().getColumns() is empty or not. That's what I do and it works for me. On Wed, Jan 26, 2011 at 4:53 AM, Nick Santini wrote: > thanks, > so I need to check the returned slice for the key to verify that is a valid > row

Re: get_range_slices getting deleted rows

2011-01-25 Thread Nick Santini
thanks, so I need to check the returned slice for the key to verify that is a valid row and not a deleted one? Nicolas Santini On Wed, Jan 26, 2011 at 12:16 PM, Narendra Sharma wrote: > Yes. See this http://wiki.apache.org/cassandra/FAQ#range_ghosts > > -Naren > > > On Tue, Jan 25, 2011 at 2:

Re: get_range_slices getting deleted rows

2011-01-25 Thread Narendra Sharma
Yes. See this http://wiki.apache.org/cassandra/FAQ#range_ghosts -Naren On Tue, Jan 25, 2011 at 2:59 PM, Nick Santini wrote: > Hi, > I'm trying a test scenario where I create 100 rows in a CF, then > use get_range_slices to get all the rows, and I get 100 rows, so far so good > then after the tes

get_range_slices getting deleted rows

2011-01-25 Thread Nick Santini
Hi, I'm trying a test scenario where I create 100 rows in a CF, then use get_range_slices to get all the rows, and I get 100 rows, so far so good then after the test I delete the rows using "remove" but without a column or super column, this deletes the row, I can confirm that cos if I try to get i