Re: Question: Behavior of inserting a list multiple times with same timestamp

2017-06-30 Thread Thakrar, Jayesh
Thanks Sander - this helps get a better understanding! From: Fridtjof Sander Date: Friday, June 30, 2017 at 4:19 AM To: Vladimir Yudovin , "Thakrar, Jayesh" Cc: Subroto Barua , Zhongxiang

RE: nodetool repair failure

2017-06-30 Thread Anubhav Kale
If possible, simply read the table under question with consistency=ALL. This will trigger a repair and is far more reliable than the nodetool command. From: Balaji Venkatesan [mailto:venkatesan.bal...@gmail.com] Sent: Thursday, June 29, 2017 7:26 PM To: user@cassandra.apache.org Subject: Re:

Re: Question: Behavior of inserting a list multiple times with same timestamp

2017-06-30 Thread Fridtjof Sander
On insert, C* creates a tombstone for the list-column with "T-1" (it's actually -1us) as timestamp. The second insert creates that tombstone again, but that doesn't delete the previous insert, since it's timestamp is T not T-1us: $ INSERT INTO test.test (k , v ) VALUES ( 1 ,[10]) USING