Example usage for org.apache.cassandra.service ActiveRepairService UNREPAIRED_SSTABLE

List of usage examples for org.apache.cassandra.service ActiveRepairService UNREPAIRED_SSTABLE

Introduction

In this page you can find the example usage for org.apache.cassandra.service ActiveRepairService UNREPAIRED_SSTABLE.

Prototype

long UNREPAIRED_SSTABLE

To view the source code for org.apache.cassandra.service ActiveRepairService UNREPAIRED_SSTABLE.

Click Source Link

Usage

From source file:com.protectwise.cassandra.db.compaction.BackupSinkForDeletingCompaction.java

License:Apache License

@Override
public void begin() {
    writer = new SSTableWriter(cfs.getTempSSTablePath(targetDirectory), keysPerSSTable,
            ActiveRepairService.UNREPAIRED_SSTABLE, cfs.metadata, cfs.partitioner,
            new MetadataCollector(cfs.metadata.comparator));
    logger.info("Opening backup writer for {}", writer.getFilename());
}