Class MarkSweepGarbageCollector
- java.lang.Object
-
- org.apache.jackrabbit.oak.plugins.blob.MarkSweepGarbageCollector
-
- All Implemented Interfaces:
BlobGarbageCollector
public class MarkSweepGarbageCollector extends java.lang.Object implements BlobGarbageCollector
Mark and sweep garbage collector. Uses the file system to store internal state while in process to account for huge data. This class is not thread safe.
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_BATCH_COUNT
static java.lang.String
DELIM
static Logger
LOG
static java.lang.String
TEMP_DIR
-
Constructor Summary
Constructors Constructor Description MarkSweepGarbageCollector(BlobReferenceRetriever marker, GarbageCollectableBlobStore blobStore, java.util.concurrent.Executor executor, long maxLastModifiedInterval, @Nullable java.lang.String repositoryId, @Nullable Whiteboard whiteboard, @Nullable StatisticsProvider statisticsProvider)
Instantiates a new blob garbage collector.MarkSweepGarbageCollector(BlobReferenceRetriever marker, GarbageCollectableBlobStore blobStore, java.util.concurrent.Executor executor, java.lang.String root, int batchCount, long maxLastModifiedInterval, boolean checkConsistencyAfterGc, boolean sweepIfRefsPastRetention, @Nullable java.lang.String repositoryId, @Nullable Whiteboard whiteboard, @Nullable StatisticsProvider statisticsProvider)
Creates an instance of MarkSweepGarbageCollectorMarkSweepGarbageCollector(BlobReferenceRetriever marker, GarbageCollectableBlobStore blobStore, java.util.concurrent.Executor executor, java.lang.String root, int batchCount, long maxLastModifiedInterval, @Nullable java.lang.String repositoryId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
checkConsistency()
Checks for the DataStore consistency and reports the number of missing blobs still referenced.void
collectGarbage(boolean markOnly)
Marks garbage blobs from the passed node store instance.void
collectGarbage(boolean markOnly, boolean forceBlobRetrieve)
Marks garbage blobs from the passed node store instance.OperationsStatsMBean
getConsistencyOperationStats()
Returns consistency operation statisticsOperationsStatsMBean
getOperationStats()
Returns operation statisticsjava.util.List<GarbageCollectionRepoStats>
getStats()
Returns the stats related to GC for all reposvoid
setClock(Clock clock)
void
setTraceOutput(boolean trace)
-
-
-
Field Detail
-
LOG
public static final Logger LOG
-
TEMP_DIR
public static final java.lang.String TEMP_DIR
-
DEFAULT_BATCH_COUNT
public static final int DEFAULT_BATCH_COUNT
- See Also:
- Constant Field Values
-
DELIM
public static final java.lang.String DELIM
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MarkSweepGarbageCollector
public MarkSweepGarbageCollector(BlobReferenceRetriever marker, GarbageCollectableBlobStore blobStore, java.util.concurrent.Executor executor, java.lang.String root, int batchCount, long maxLastModifiedInterval, boolean checkConsistencyAfterGc, boolean sweepIfRefsPastRetention, @Nullable @Nullable java.lang.String repositoryId, @Nullable @Nullable Whiteboard whiteboard, @Nullable @Nullable StatisticsProvider statisticsProvider) throws java.io.IOException
Creates an instance of MarkSweepGarbageCollector- Parameters:
marker
- BlobReferenceRetriever instanced used to fetch refereed blob entriesblobStore
- the blob store instanceexecutor
- executorroot
- the root absolute path of directory under which temporary files would be createdbatchCount
- batch sized used for saving intermediate statemaxLastModifiedInterval
- lastModifiedTime in millis. Only files with time less than this time would be considered for GCrepositoryId
- unique repository id for this nodewhiteboard
- whiteboard instancestatisticsProvider
- statistics provider instance- Throws:
java.io.IOException
-
MarkSweepGarbageCollector
public MarkSweepGarbageCollector(BlobReferenceRetriever marker, GarbageCollectableBlobStore blobStore, java.util.concurrent.Executor executor, java.lang.String root, int batchCount, long maxLastModifiedInterval, @Nullable @Nullable java.lang.String repositoryId) throws java.io.IOException
- Throws:
java.io.IOException
-
MarkSweepGarbageCollector
public MarkSweepGarbageCollector(BlobReferenceRetriever marker, GarbageCollectableBlobStore blobStore, java.util.concurrent.Executor executor, long maxLastModifiedInterval, @Nullable @Nullable java.lang.String repositoryId, @Nullable @Nullable Whiteboard whiteboard, @Nullable @Nullable StatisticsProvider statisticsProvider) throws java.io.IOException
Instantiates a new blob garbage collector.- Throws:
java.io.IOException
-
-
Method Detail
-
collectGarbage
public void collectGarbage(boolean markOnly) throws java.lang.Exception
Description copied from interface:BlobGarbageCollector
Marks garbage blobs from the passed node store instance. Collects them only if markOnly is false.- Specified by:
collectGarbage
in interfaceBlobGarbageCollector
- Parameters:
markOnly
- whether to only mark references and not sweep in the mark and sweep operation.- Throws:
java.lang.Exception
- the exception
-
collectGarbage
public void collectGarbage(boolean markOnly, boolean forceBlobRetrieve) throws java.lang.Exception
Description copied from interface:BlobGarbageCollector
Marks garbage blobs from the passed node store instance. Collects them only if markOnly is false. Also forces retrieval of blob ids from the blob store rather than using any local tracking.- Specified by:
collectGarbage
in interfaceBlobGarbageCollector
- Parameters:
markOnly
- whether to only mark references and not sweep in the mark and sweep operation.forceBlobRetrieve
- whether to force retrieve of blob ids from datastore- Throws:
java.lang.Exception
-
getStats
public java.util.List<GarbageCollectionRepoStats> getStats() throws java.lang.Exception
Returns the stats related to GC for all repos- Specified by:
getStats
in interfaceBlobGarbageCollector
- Returns:
- a list of GarbageCollectionRepoStats objects
- Throws:
java.lang.Exception
-
getOperationStats
public OperationsStatsMBean getOperationStats()
Description copied from interface:BlobGarbageCollector
Returns operation statistics- Specified by:
getOperationStats
in interfaceBlobGarbageCollector
- Returns:
- stats object
-
getConsistencyOperationStats
public OperationsStatsMBean getConsistencyOperationStats()
Description copied from interface:BlobGarbageCollector
Returns consistency operation statistics- Specified by:
getConsistencyOperationStats
in interfaceBlobGarbageCollector
- Returns:
- stats object
-
checkConsistency
public long checkConsistency() throws java.lang.Exception
Checks for the DataStore consistency and reports the number of missing blobs still referenced.- Specified by:
checkConsistency
in interfaceBlobGarbageCollector
- Returns:
- the missing blobs
- Throws:
java.lang.Exception
-
setTraceOutput
public void setTraceOutput(boolean trace)
-
setClock
public void setClock(Clock clock)
-
-