Class FileStoreGCMonitor
- java.lang.Object
-
- org.apache.jackrabbit.oak.segment.file.FileStoreGCMonitor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.jackrabbit.oak.spi.gc.GCMonitor
GCMonitor.Empty
-
-
Constructor Summary
Constructors Constructor Description FileStoreGCMonitor(@NotNull Clock clock)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcleaned(long reclaimed, long current)The cleanup phase of the garbage collection process terminated successfully.voidcompacted()The compaction phase of the garbage collection process terminated successfully.voiderror(String message, Exception exception)An error caused the garbage collection process to terminate prematurely.longgetLastCleanup()longgetLastCompaction()StringgetLastError()@NotNull StringgetLastLogMessage()longgetLastReclaimedSize()longgetLastRepositorySize()@NotNull StringgetStatus()voidinfo(String message, Object... arguments)Informal notification on the progress of garbage collection.voidskipped(String reason, Object... arguments)A garbage collection cycle is skipped for a specificreason.voidupdateStatus(String status)The garbage collection entered a new phase e.g.voidwarn(String message, Object... arguments)Warning about a condition that might have adverse effects on the overall garbage collection process but does not prevent the process from running.
-
-
-
Constructor Detail
-
FileStoreGCMonitor
public FileStoreGCMonitor(@NotNull @NotNull Clock clock)
-
-
Method Detail
-
info
public void info(String message, Object... arguments)
Description copied from interface:GCMonitorInformal notification on the progress of garbage collection.
-
warn
public void warn(String message, Object... arguments)
Description copied from interface:GCMonitorWarning about a condition that might have adverse effects on the overall garbage collection process but does not prevent the process from running.
-
error
public void error(String message, Exception exception)
Description copied from interface:GCMonitorAn error caused the garbage collection process to terminate prematurely.
-
skipped
public void skipped(String reason, Object... arguments)
Description copied from interface:GCMonitorA garbage collection cycle is skipped for a specificreason.
-
compacted
public void compacted()
Description copied from interface:GCMonitorThe compaction phase of the garbage collection process terminated successfully.
-
cleaned
public void cleaned(long reclaimed, long current)Description copied from interface:GCMonitorThe cleanup phase of the garbage collection process terminated successfully.
-
updateStatus
public void updateStatus(String status)
Description copied from interface:GCMonitorThe garbage collection entered a new phase e.g. idle, estimation, etc.- Specified by:
updateStatusin interfaceGCMonitor- Parameters:
status- short summary of the GC phase
-
getLastCompaction
public long getLastCompaction()
-
getLastCleanup
public long getLastCleanup()
-
getLastRepositorySize
public long getLastRepositorySize()
-
getLastReclaimedSize
public long getLastReclaimedSize()
-
getLastError
public String getLastError()
-
getLastLogMessage
@NotNull public @NotNull String getLastLogMessage()
-
getStatus
@NotNull public @NotNull String getStatus()
-
-