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
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
How do i delete a row using BMT method?
Do I simply do a mutate with column delete flag set to true? Thanks.