Interface CompactionStats
public interface CompactionStats
Statistics about compaction.
-
Method Summary
Modifier and TypeMethodDescriptionlong
The duration time of last compaction.long
The timestamp of last failed compaction.long
The removed event count of last compaction.long
The timestamp of last succeed compaction.
-
Method Details
-
getLastCompactionRemovedEventCount
long getLastCompactionRemovedEventCount()The removed event count of last compaction. -
getLastCompactionSucceedTimestamp
long getLastCompactionSucceedTimestamp()The timestamp of last succeed compaction. -
getLastCompactionFailedTimestamp
long getLastCompactionFailedTimestamp()The timestamp of last failed compaction. -
getLastCompactionDurationTimeInMills
long getLastCompactionDurationTimeInMills()The duration time of last compaction.
-