Add the RepairParallelism enum
This takes the RepairParallelism enum from origin Signed-off-by: Amnon Heiman <amnon@cloudius-systems.com>
This commit is contained in:
parent
6fc2c5c720
commit
e96e62b6bd
@ -22,6 +22,19 @@
|
||||
*/
|
||||
package org.apache.cassandra.repair;
|
||||
|
||||
public class RepairParallelism {
|
||||
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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user