Delete row, TombstoneOverwhelmingException and multiple datacenters

2014-08-20 Thread Modha, Digant
Hi All, We have two data centers running Cassandra 2.0.9. Using local quorum consistency, I deleted an entire row that had 52,509 records by doing delete using only the partition key.When I count number of records for that row, I get 0 in the local datacenter from where the row was dele

Re: Delete row

2010-04-21 Thread Jonathan Ellis
You can serialize any RowMutation for BMT but if all you're doing is deleting rows why bother with BMT? It is not significantly more efficient than Thrift for that. On Tue, Apr 20, 2010 at 12:47 PM, Sonny Heer wrote: > How do i delete a row using BMT method? > > Do I simply do a mutate with colu

Delete row

2010-04-20 Thread Sonny Heer
How do i delete a row using BMT method? Do I simply do a mutate with column delete flag set to true? Thanks.