J. Trades
J. Trades

Reputation: 131

Performing Full Repair after Migrating to Incremental Repair on Cassandra Nodes

We are currently running Cassandra v 3.0.5 on all our nodes. We recently migrated our nodes to perform incremental repairs. However, in the documentation, it states that incremental repairs should be run daily and full repairs weekly or monthly. We perform a parallel, incremental repair on each node by running

nodetool repair

And we will peform a sequential, full repair on each node by running

nodetool repair -full -seq

My concern is with running a full repair since we migrated. Can I just use the above command on each of the nodes or are there any other steps that I should perform first? I just want to make sure that we do not have to perform steps like the ones we used during the migration process:

Any advice would be appreciated. Thanks.

Upvotes: 6

Views: 841

Answers (1)

Pedro Gordo
Pedro Gordo

Reputation: 1865

This answer might come much later than you wanted, but no, you don't need to do those steps. If you run into issues with repairing large partitions, I recommend you use Reaper. Actually, this tool is so useful that I suggest you use it anyway.

Upvotes: 1

Related Questions