Package com.tangosol.io.journal
Interface FlashJournalRM.Dependencies
- All Superinterfaces:
AbstractJournalRM.Dependencies
- All Known Implementing Classes:
FlashJournalRM.DefaultDependencies
- Enclosing class:
FlashJournalRM
The Dependencies interface provides a FlashJournalRM object with its external dependencies.
-
Method Summary
Modifier and TypeMethodDescriptionint
Return the size of the write buffers.Return the directory used to store the underlying disk files for the journal.int
Return the file count at which compulsory garbage collection (compaction) should start.float
Return the soft limit on the journal size expressed as a percentage of the journal maximum size.long
Return the soft limit on the journal size expressed as memory size.int
Return the size in bytes of the maximum backlog.long
Return the maximum size of the write buffers pool.long
Return the delay since the last touch of a tmp file until it is eligible for purging.long
Return the number of milliseconds the Writer daemon can be unresponsive prior to considering it timed out.Methods inherited from interface com.tangosol.io.journal.AbstractJournalRM.Dependencies
getCollectorLoadFactor, getCollectorTimeout, getMaxFileSize, getMaxJournalSize, getMaxValueSize
-
Method Details
-
getBufferSize
int getBufferSize()Return the size of the write buffers.- Returns:
- size of write buffers
-
getMaxPoolSize
long getMaxPoolSize()Return the maximum size of the write buffers pool.- Returns:
- maximum size of write buffers pool
-
getDirectory
String getDirectory()Return the directory used to store the underlying disk files for the journal.- Returns:
- the directory that is used to hold the journal files, or null if the default temporary directory is used
-
getMaxBacklogSize
int getMaxBacklogSize()Return the size in bytes of the maximum backlog.- Returns:
- the size in bytes of the maximum backlog
-
getPurgeDelayMillis
long getPurgeDelayMillis()Return the delay since the last touch of a tmp file until it is eligible for purging. Tmp files are purged at startup of the FlashJournalRM to clean up tmp files from a previous instance of the FlashJournalRM.- Returns:
- the delay in milliseconds
-
getHighFileCount
int getHighFileCount()Return the file count at which compulsory garbage collection (compaction) should start. During compulsory GC, the file with the least live data is considered for compaction irrespective of the CollectorLoadFactor.This allows the GC thread to tune itself to try to avoid growing the journal beyond the high file count. However, this is not a hard-limit and the journal could still grow beyond that up to the max file count.
- Returns:
- the high file count
-
getHighJournalFactor
float getHighJournalFactor()Return the soft limit on the journal size expressed as a percentage of the journal maximum size.- Returns:
- the high journal percentage factor
-
getHighJournalSize
long getHighJournalSize()Return the soft limit on the journal size expressed as memory size.- Returns:
- the high journal size
-
getWriterTimeout
long getWriterTimeout()Return the number of milliseconds the Writer daemon can be unresponsive prior to considering it timed out.- Returns:
- the number of milliseconds the Writer can be unresponsive
-