public class DfsGarbageCollector extends Object
Constructor and Description |
---|
DfsGarbageCollector(DfsRepository repository)
Initialize a garbage collector.
|
Modifier and Type | Method and Description |
---|---|
long |
getCoalesceGarbageLimit() |
List<DfsPackDescription> |
getNewPacks() |
List<PackStatistics> |
getNewPackStatistics() |
PackConfig |
getPackConfig() |
List<DfsPackDescription> |
getSourcePacks() |
boolean |
pack(ProgressMonitor pm)
Create a single new pack file containing all of the live objects.
|
DfsGarbageCollector |
setCoalesceGarbageLimit(long limit)
Set the byte size limit for garbage packs to be repacked.
|
DfsGarbageCollector |
setPackConfig(PackConfig newConfig) |
public DfsGarbageCollector(DfsRepository repository)
repository
- repository objects to be packed will be read from.public PackConfig getPackConfig()
public DfsGarbageCollector setPackConfig(PackConfig newConfig)
newConfig
- the new configuration to use when creating the pack file.this
public long getCoalesceGarbageLimit()
public DfsGarbageCollector setCoalesceGarbageLimit(long limit)
Any UNREACHABLE_GARBAGE pack smaller than this limit will be repacked at the end of the run. This allows the garbage collector to coalesce unreachable objects into a single file.
If an UNREACHABLE_GARBAGE pack is already larger than this limit it will be left alone by the garbage collector. This avoids unnecessary disk IO reading and copying the objects.
If limit is set to 0 the UNREACHABLE_GARBAGE coalesce is disabled.
If limit is set to Long.MAX_VALUE
, everything is coalesced.
Keeping unreachable garbage prevents race conditions with repository changes that may suddenly need an object whose only copy was stored in the UNREACHABLE_GARBAGE pack.
limit
- size in bytes.this
public boolean pack(ProgressMonitor pm) throws IOException
This method safely decides which packs can be expired after the new pack is created by validating the references have not been modified in an incompatible way.
pm
- progress monitor to receive updates on as packing may take a
while, depending on the size of the repository.IOException
- a new pack cannot be created.public List<DfsPackDescription> getSourcePacks()
public List<DfsPackDescription> getNewPacks()
public List<PackStatistics> getNewPackStatistics()
getNewPacks()
.Copyright © 2016 Eclipse JGit Project. All rights reserved.