Migrating to incremental repairs

To start using incremental repairs, migrate the SSTables on each node. Incremental repair skips SSTables that are already marked as repaired. These steps ensure the data integrity when changing the repair strategy from full to incremental.

DataStax recommends using full repairs. Incremental repairs may cause performance issues, see CASSANDRA-9143.

Prerequisites

Before starting this procedure, be aware that the first system-wide full repair (3) can take a long time, as the database recompacts all SSTables. To make this process less disruptive, migrate the cluster to incremental repair one node at a time.

Procedure

In a terminal:

  1. Disable autocompaction on the node:

    nodetool disableautocompaction

    Tarball path:`<install_directory>/bin`

    Running nodetool disableautocompaction without parameters disables autocompaction for all keyspaces.

  2. Before running a full repair (3), list the nodes SSTables located in /var/lib/cassandra/data. You will need this list to run the command to set the repairedAt flag in 5.

    The data directory contains a subdirectory for each keyspace. Each subdirectory contains a set of files for each SSTable. The name of the file that contains the SSTable data has the following format:

    <version_code>-<generation>-<format>-Data.db
  3. Run the default full, sequential repair on one node at a time:

    nodetool repair

    Tarball path: <install_directory>/bin

    Running nodetool repair without parameters runs a full sequential repair of all SSTables on the node and can take a substantial amount of time.

  4. Stop the node.

  5. Using the list you created in 2, set the repairedAt flag on each SSTable using sstablerepairedset to --is-repaired.

    Unless you set the repairedAt to repaired for each SSTable, the existing SSTables might not be changed by the repair process and any incremental repair process that runs later will not process these SSTables.

    • To mark a single SSTable:

      sudo sstablerepairedset --really-set --is-repaired <SSTable-example-Data.db>
    • For batch processing, use a text file of SSTable names:

      sudo sstablerepairedset --really-set --is-repaired -f <SSTable-names.txt>

    Tarball path:`<installation_location>/resources/cassandra/tools/bin`

    The value of the repairedAt flag is the timestamp of the last repair. The sstablerepairedset command applies the current date/time. To check the value of the repairedAt flag, use:

    sstablemetadata <example-keyspace>-<SSTable-example-Data.db> | grep "Repaired at"
  6. Restart the node.

What’s next

After you have migrated all nodes, you can run incremental repairs using nodetool repair with the -inc option.

Related information

Was this helpful?

Give Feedback

How can we improve the documentation?

© 2024 DataStax | Privacy policy | Terms of use

Apache, Apache Cassandra, Cassandra, Apache Tomcat, Tomcat, Apache Lucene, Apache Solr, Apache Hadoop, Hadoop, Apache Pulsar, Pulsar, Apache Spark, Spark, Apache TinkerPop, TinkerPop, Apache Kafka and Kafka are either registered trademarks or trademarks of the Apache Software Foundation or its subsidiaries in Canada, the United States and/or other countries. Kubernetes is the registered trademark of the Linux Foundation.

General Inquiries: +1 (650) 389-6000, info@datastax.com