org.apache.cassandra.repair.RepairParallelism Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
package org.apache.cassandra.repair;
/**
* Specify the degree of parallelism when calculating the merkle trees in a repair job.
*/
public enum RepairParallelism
{
/**
* One node at a time
*/
SEQUENTIAL,
/**
* All nodes at the same time
*/
PARALLEL,
/**
* One node per data center at a time
*/
DATACENTER_AWARE
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy