Interface RepushCandidateFilter

All Known Implementing Classes:
StoreRepushCandidateFilter

public interface RepushCandidateFilter
RepushCandidateFilter defines a contract for determining whether a given store should be considered a candidate for log compaction and repush operations.

The apply(String, StoreInfo) method should return true if the store should be compacted (i.e., not filtered out), and false otherwise.

Example for an implementation can be found here: StoreRepushCandidateFilter

  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    apply(String clusterName, StoreInfo store)
     
  • Method Details