Package org.eclipse.jgit.storage.file
Class WindowCacheConfig
java.lang.Object
org.eclipse.jgit.storage.file.WindowCacheConfig
Configuration parameters for JVM-wide buffer cache used by JGit.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate intprivate booleanstatic final int1024 (number of bytes in one kibibyte/kilobyte)static final int1024KB(number of bytes in one mebibyte/megabyte)private longprivate booleanprivate intprivate intprivate intprivate boolean -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfromConfig(Config rc) Update properties by setting fields from the configuration.intGet maximum number of bytes to cache in delta base cache for inflated, recently accessed objects, without delta chains.booleanTell whether the statistics JMX bean should be automatically registered.longGet maximum number bytes of heap memory to dedicate to caching pack file data.intGet maximum number of streams to open at a time.intGet size in bytes of a single window mapped or read in from the pack file.intGet the size threshold beyond which objects must be streamed.voidinstall()Install this configuration as the live settings.booleanWhether to use Java NIO virtual memory mapping for windowsbooleanGet whether the window cache should use strong references or SoftReferencesvoidsetDeltaBaseCacheLimit(int newLimit) Set maximum number of bytes to cache in delta base cache for inflated, recently accessed objects, without delta chains.voidsetExposeStatsViaJmx(boolean expose) Defines whether the statistics JMX MBean should be automatically set up.voidsetPackedGitLimit(long newLimit) Set maximum number bytes of heap memory to dedicate to caching pack file data.voidsetPackedGitMMAP(boolean usemmap) Set whether to enable use of Java NIO virtual memory mapping for windowsvoidsetPackedGitOpenFiles(int fdLimit) Set maximum number of streams to open at a time.voidsetPackedGitUseStrongRefs(boolean useStrongRefs) Set if the cache should use strong refs or soft refsvoidsetPackedGitWindowSize(int newSize) Set size in bytes of a single window read in from the pack file.voidsetStreamFileThreshold(int newLimit) Set new byte limit for objects that must be streamed.
-
Field Details
-
KB
public static final int KB1024 (number of bytes in one kibibyte/kilobyte)- See Also:
-
MB
public static final int MB1024KB(number of bytes in one mebibyte/megabyte)- See Also:
-
packedGitOpenFiles
private int packedGitOpenFiles -
packedGitLimit
private long packedGitLimit -
useStrongRefs
private boolean useStrongRefs -
packedGitWindowSize
private int packedGitWindowSize -
packedGitMMAP
private boolean packedGitMMAP -
deltaBaseCacheLimit
private int deltaBaseCacheLimit -
streamFileThreshold
private int streamFileThreshold -
exposeStats
private boolean exposeStats
-
-
Constructor Details
-
WindowCacheConfig
public WindowCacheConfig()Create a default configuration.
-
-
Method Details
-
getPackedGitOpenFiles
public int getPackedGitOpenFiles()Get maximum number of streams to open at a time.- Returns:
- maximum number of streams to open at a time. Open packs count against the process limits. Default is 128.
-
setPackedGitOpenFiles
public void setPackedGitOpenFiles(int fdLimit) Set maximum number of streams to open at a time.- Parameters:
fdLimit- maximum number of streams to open at a time. Open packs count against the process limits
-
getPackedGitLimit
public long getPackedGitLimit()Get maximum number bytes of heap memory to dedicate to caching pack file data.- Returns:
- maximum number bytes of heap memory to dedicate to caching pack file data. Default is 10 MB.
-
setPackedGitLimit
public void setPackedGitLimit(long newLimit) Set maximum number bytes of heap memory to dedicate to caching pack file data.- Parameters:
newLimit- maximum number bytes of heap memory to dedicate to caching pack file data.
-
isPackedGitUseStrongRefs
public boolean isPackedGitUseStrongRefs()Get whether the window cache should use strong references or SoftReferences- Returns:
trueif the window cache should use strong references, otherwise it will useSoftReferences- Since:
- 5.1.13
-
setPackedGitUseStrongRefs
public void setPackedGitUseStrongRefs(boolean useStrongRefs) Set if the cache should use strong refs or soft refs- Parameters:
useStrongRefs- if @{code true} the cache strongly references cache pages otherwise it usesSoftReferences which can be evicted by the Java gc if heap is almost full- Since:
- 5.1.13
-
getPackedGitWindowSize
public int getPackedGitWindowSize()Get size in bytes of a single window mapped or read in from the pack file.- Returns:
- size in bytes of a single window mapped or read in from the pack file. Default is 8 KB.
-
setPackedGitWindowSize
public void setPackedGitWindowSize(int newSize) Set size in bytes of a single window read in from the pack file.- Parameters:
newSize- size in bytes of a single window read in from the pack file.
-
isPackedGitMMAP
public boolean isPackedGitMMAP()Whether to use Java NIO virtual memory mapping for windows- Returns:
trueenables use of Java NIO virtual memory mapping for windows; false reads entire window into a byte[] with standard read calls. Default false.
-
setPackedGitMMAP
public void setPackedGitMMAP(boolean usemmap) Set whether to enable use of Java NIO virtual memory mapping for windows- Parameters:
usemmap-trueenables use of Java NIO virtual memory mapping for windows; false reads entire window into a byte[] with standard read calls.
-
getDeltaBaseCacheLimit
public int getDeltaBaseCacheLimit()Get maximum number of bytes to cache in delta base cache for inflated, recently accessed objects, without delta chains.- Returns:
- maximum number of bytes to cache in delta base cache for inflated, recently accessed objects, without delta chains. Default 10 MB.
-
setDeltaBaseCacheLimit
public void setDeltaBaseCacheLimit(int newLimit) Set maximum number of bytes to cache in delta base cache for inflated, recently accessed objects, without delta chains.- Parameters:
newLimit- maximum number of bytes to cache in delta base cache for inflated, recently accessed objects, without delta chains.
-
getStreamFileThreshold
public int getStreamFileThreshold()Get the size threshold beyond which objects must be streamed.- Returns:
- the size threshold beyond which objects must be streamed.
-
setStreamFileThreshold
public void setStreamFileThreshold(int newLimit) Set new byte limit for objects that must be streamed.- Parameters:
newLimit- new byte limit for objects that must be streamed. Objects smaller than this size can be obtained as a contiguous byte array, while objects bigger than this size require using anObjectStream.
-
getExposeStatsViaJmx
public boolean getExposeStatsViaJmx()Tell whether the statistics JMX bean should be automatically registered.Registration of that bean via JMX is additionally subject to a boolean JGit-specific user config "jmx.WindowCacheStats". The bean will be registered only if this user config is
trueandgetExposeStatsViaJmx() == true.By default, this returns
trueunless changed viasetExposeStatsViaJmx(boolean).- Returns:
- whether to expose WindowCacheStats statistics via JMX upon
install() - Since:
- 5.8
-
setExposeStatsViaJmx
public void setExposeStatsViaJmx(boolean expose) Defines whether the statistics JMX MBean should be automatically set up. (By defaulttrue.) If set tofalse, the JMX monitoring bean is not registered.- Parameters:
expose- whether to register the JMX Bean- Since:
- 5.8
-
fromConfig
Update properties by setting fields from the configuration.If a property is not defined in the configuration, then it is left unmodified.
- Parameters:
rc- configuration to read properties from.- Returns:
this.- Since:
- 3.0
-
install
public void install()Install this configuration as the live settings.The new configuration is applied immediately. If the new limits are smaller than what is currently cached, older entries will be purged as soon as possible to allow the cache to meet the new limit.
- Since:
- 3.0
-