List of usage examples for org.apache.cassandra.db.compaction AbstractCompactionStrategy filterSuspectSSTables
public static List<SSTableReader> filterSuspectSSTables(Iterable<SSTableReader> originalCandidates)
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); }