Example usage for org.apache.cassandra.db.compaction AbstractCompactionStrategy filterSuspectSSTables

List of usage examples for org.apache.cassandra.db.compaction AbstractCompactionStrategy filterSuspectSSTables

Introduction

In this page you can find the example usage for org.apache.cassandra.db.compaction AbstractCompactionStrategy filterSuspectSSTables.

Prototype

public static List<SSTableReader> filterSuspectSSTables(Iterable<SSTableReader> originalCandidates) 

Source Link

Document

Filters SSTables that are to be blacklisted from the given collection

Usage

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

License:Apache License

/**
 * Filters SSTables that are to be blacklisted from the given collection
 *
 * @param originalCandidates The collection to check for blacklisted SSTables
 * @return list of the SSTables with blacklisted ones filtered out
 *///from  w  w w .  j a  v a  2  s .  c om
public static Iterable<SSTableReader> filterSuspectSSTables(Iterable<SSTableReader> originalCandidates) {
    return AbstractCompactionStrategy.filterSuspectSSTables(originalCandidates);
}