Package com.tangosol.io.journal
Interface AbstractJournalRM.Dependencies
- All Known Subinterfaces:
FlashJournalRM.Dependencies
,RamJournalRM.Dependencies
- All Known Implementing Classes:
AbstractJournalRM.DefaultDependencies
,FlashJournalRM.DefaultDependencies
,RamJournalRM.DefaultDependencies
- Enclosing class:
AbstractJournalRM
protected static interface AbstractJournalRM.Dependencies
The Dependencies interface provides AbstractJournalRM with its external dependencies.
-
Method Summary
Modifier and TypeMethodDescriptiondouble
Return the load factor threshold at which files become eligible for garbage collection (compaction).long
Return the number of milliseconds the Collector can be unresponsive prior to considering the Collector timed out.long
Return the maximum allowable size, in bytes, of each individual file used to hold Journal data.long
Return the total amount of memory, in bytes, that can be allocated for Journal storage.int
Return the maximum allowable size, in bytes, of a Binary value.
-
Method Details
-
getMaxValueSize
int getMaxValueSize()Return the maximum allowable size, in bytes, of a Binary value.- Returns:
- the maximum allowable size for a value to write
-
getMaxFileSize
long getMaxFileSize()Return the maximum allowable size, in bytes, of each individual file used to hold Journal data. This is not the total size limit of the Journal, since the Journal may use a number of files to store its data.- Returns:
- the maximum allowable size for an underlying file
-
getMaxJournalSize
long getMaxJournalSize()Return the total amount of memory, in bytes, that can be allocated for Journal storage.- Returns:
- the maximum number of bytes that can be allocated for Journal storage
-
getCollectorLoadFactor
double getCollectorLoadFactor()Return the load factor threshold at which files become eligible for garbage collection (compaction). The load factor threshold is the ratio between the portion of the file used for live data and the total size of the file, and is expressed as a double value in the interval (0.0, 1.0).When the portion of released data exceeds (1 - threshold), the file becomes eligible for compaction (garbage collection).
- Returns:
- the compaction factor threshold between 0.0 and 1.0
-
getCollectorTimeout
long getCollectorTimeout()Return the number of milliseconds the Collector can be unresponsive prior to considering the Collector timed out.- Returns:
- the number of milliseconds the Collector can be unresponsive
-