Re: Delete too wide partitions

2023-07-16 Thread Dipan Shah
Hello Sébastien, No there is no in-built solution to perform such an operation in Cassandra. Thanks, Dipan On Sun, 16 Jul 2023 at 4:03 PM, Sébastien Rebecchi wrote: > Hi everyone > > Is there a way to tell Cassandra to automatically delete a partition when > its size increase a given

Delete too wide partitions

2023-07-16 Thread Sébastien Rebecchi
Hi everyone Is there a way to tell Cassandra to automatically delete a partition when its size increase a given threshold? Best regard Sébastien

Re: write on ONE node vs replication factor

2023-07-16 Thread Dipan Shah
Hello Anurag, In Cassandra, Strong consistency is guaranteed when "R + W > N" where R is Read consistency, W is Write consistency and N is the Replication Factor. So in your case, R(2) + W(1) = 3 which is NOT greater than your replication factor(3) so you will not be able to guarantee strong

Re: write on ONE node vs replication factor

2023-07-16 Thread Anurag Bisht
Thank you Dipan, it makes sense now. Cheers, Anurag On Sun, Jul 16, 2023 at 12:43 AM Dipan Shah wrote: > Hello Anurag, > > In Cassandra, Strong consistency is guaranteed when "R + W > N" where R is > Read consistency, W is Write consistency and N is the Replication Factor. > > So in your case,