Re: Does repair count as read/writes

2020-10-25 Thread Ayub M
Thanks Erick. On Sun, Oct 25, 2020 at 6:45 AM Erick Ramirez wrote: > Not quite. Cassandra does a validation compaction for the merkle tree > calculation. And it streams SSTables instead of individual mutations from > one node to another to synchronise data between replicas. Cheers! > > -- Rega

Re: Does repair count as read/writes

2020-10-25 Thread Erick Ramirez
Not quite. Cassandra does a validation compaction for the merkle tree calculation. And it streams SSTables instead of individual mutations from one node to another to synchronise data between replicas. Cheers!

Does repair count as read/writes

2020-10-25 Thread Ayub M
Hello, when repairs are run in Cassandra, does the read and writes done for repair count in the read/write metrics? Repair has to read the table to build merkle tree, similarly when it has to do repair it has to write to the table, logically i feel it should. If so, is there any way to identify su