Class CompactionStatsImpl
- java.lang.Object
-
- org.apache.pulsar.common.policies.data.stats.CompactionStatsImpl
-
- All Implemented Interfaces:
org.apache.pulsar.common.policies.data.CompactionStats
public class CompactionStatsImpl extends java.lang.Object implements org.apache.pulsar.common.policies.data.CompactionStatsStatistics about compaction.
-
-
Field Summary
Fields Modifier and Type Field Description longlastCompactionDurationTimeInMillsThe duration time of last compaction.longlastCompactionFailedTimestampThe timestamp of last failed compaction.longlastCompactionRemovedEventCountThe removed event count of last compaction.longlastCompactionSucceedTimestampThe timestamp of last succeed compaction.
-
Constructor Summary
Constructors Constructor Description CompactionStatsImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreset()
-
-
-
Field Detail
-
lastCompactionRemovedEventCount
public long lastCompactionRemovedEventCount
The removed event count of last compaction.
-
lastCompactionSucceedTimestamp
public long lastCompactionSucceedTimestamp
The timestamp of last succeed compaction.
-
lastCompactionFailedTimestamp
public long lastCompactionFailedTimestamp
The timestamp of last failed compaction.
-
lastCompactionDurationTimeInMills
public long lastCompactionDurationTimeInMills
The duration time of last compaction.
-
-