Class RamJournalRM
- java.lang.Object
 - 
- com.tangosol.io.journal.AbstractJournalRM
 - 
- com.tangosol.io.journal.RamJournalRM
 
 
 
- 
- All Implemented Interfaces:
 Disposable,BinaryStoreManager,ClassLoaderAware,JournalMBean,Controllable,AutoCloseable
public class RamJournalRM extends AbstractJournalRM
A RamJournalRM manages memory buffers for journal-based storage in memory, and acts as a shared resource for any number of journals that share a common configuration. While the RamJournalRM can be used by itself, it is intended to be used with a FlashJournalRM instance: So that large objects can be stored using flash; to allow for spill-over when the amount of total memory allocated to the RAM journal is used; and to handle the case when the journal "garbage collection" is temporarily not able to keep up with demand.To use the Resource Manager, configure it using Dependency Injection by passing in the populated dependency object at instantiation.. Once configured, start the Resource Manager via the
AbstractJournalRM.start()method, and then obtainBinaryStoreinstances via theAbstractJournalRM.createBinaryStore()method. When a BinaryStore instance is no longer required, dispose of it via theDisposableinterface, and similarlystop()orAbstractJournalRM.dispose()of the Resource Manager when it is no longer needed to ensure that any resources it allocated are cleaned up and released.The limits on the journal are as follows:
- Values are limited by default to 16KB (and maximum 4MB);
 - An individual buffer (i.e. a journal "file") is limited by default to 2MB (and maximum 2GB);
 - A journal is composed of up to 512 files;
 - The total memory used by the journal is limited to 1GB by default (and maximum 64GB).
 
Note that with a flash journal backing up the RAM journal, the limits have a different meaning:
- Values that exceed the size limit will automatically be delegated to the flash journal;
 - All data that is attempted to be written when the total memory allocated to the RAM journal has been used will automatically be delegated to the flash journal.
 
Note that, outside of the initial configuration, there is no difference in the use of the RAM journal with or without the flash journal; the combination of the RAM journal with the flash journal is transparent to the clients, with the only obvious difference being the significantly reduced possibility of an exception due to the RAM being exhausted.
- Since:
 - Coherence 3.7
 - Author:
 - cp/cf 2010-06-24
 
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classRamJournalRM.BufferPoolA pooling implementation for WriteBuffer objects.static classRamJournalRM.DefaultDependenciesThe DefaultDependencies class provides a default implementation of Dependencies.static interfaceRamJournalRM.DependenciesThe Dependencies interface provides a RamJournalRM object with its external dependencies.protected classRamJournalRM.FlashConsumerThe FlashConsumer is a conduit between this RamJournalRM and the FlashJournalRM, allowing this journal to read/write to/from the other flash journal, and for the flash journal to notify this journal of lifecycle and other events.protected classRamJournalRM.JournalFileA JournalFile is created for each RAM buffer used to store the journal contents.protected classRamJournalRM.JournalImplA Journal implementation managed by this Journal Resource Manager.- 
Nested classes/interfaces inherited from class com.tangosol.io.journal.AbstractJournalRM
AbstractJournalRM.CollectorDaemon 
 - 
 
- 
Field Summary
Fields Modifier and Type Field Description protected RamJournalRM.FlashConsumerm_flashThe conduit between this RAM journal resource manager and the flash journal resource manager.protected FlashJournalRMm_jrnlrmA reference to a flash journal resource manager to use to read/write to/from flash for data that doesn't fit in memory.protected RamJournalRM.BufferPoolm_poolThe buffer pool.protected static longMASK_FILE_IDThe 64-bit bitmask for the file index.protected static longMASK_LENGTHThe 64-bit bitmask for the value length.protected static longMASK_OFFSETThe 64-bit bitmask for the value offset.protected static longMASK_RAM_FLAGThe 64-bit bitmask for the RAM flag.protected static intSHIFT_FILE_IDThe location of the file id within the ticket.protected static intSHIFT_LENGTHThe location of the value-length within the ticket.protected static intSHIFT_OFFSETThe location of the value-offset within the ticket.protected static intSHIFT_RAM_FLAGThe location of the RAM flag within the ticket.protected static StringTYPE_NAMEA simple type name to be used as part of MBean Objectnames.- 
Fields inherited from class com.tangosol.io.journal.AbstractJournalRM
DEDUPE_ENABLED, m_ajournalfile, m_cJournalFiles, m_daemonCollector, m_dblFileSizeFactor, m_dependencies, m_dflHighestLoadFactor, m_jrnlfile, m_loader, m_nState, m_setJournals, MASK_COMPACT_FLAG, MASK_COMPACT_LENGTH, SHIFT_COMPACT_FLAG, SHIFT_COMPACT_LENGTH, STATE_CONFIGURED, STATE_INITIAL, STATE_RUNNING, STATE_STOPPED, STATE_STOPPING 
 - 
 
- 
Constructor Summary
Constructors Constructor Description RamJournalRM(Cluster cluster, RamJournalRM.Dependencies deps)Construct a RAMJournalRM.RamJournalRM(Cluster cluster, RamJournalRM.Dependencies deps, FlashJournalRM jrnlmr)Construct a RAMJournalRM. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RamJournalRM.DefaultDependenciescloneDependencies(AbstractJournalRM.Dependencies deps)Clone the Dependencies object.protected longencodeTicket(int nFile, long of, int cb)Encode a file number, offset and length into a "ticket".protected intextractFileId(long lTicket)Extract a file index (a file ID) from the passed ticket.protected intextractLength(long lTicket)Extract a file offset from the passed ticket.protected longextractOffset(long lTicket)Extract a file offset from the passed ticket.intgetBacklogCount()Determine the number of serialized values that have not yet been persisted to disk.intgetBacklogSize()Determine the total size in bytes of the serialized values that have not yet been persisted to disk.protected RamJournalRM.BufferPoolgetBufferPool()Obtain the BufferPool instance.intgetBufferSize()Determine the size of the buffers used to write a chunk of data at a time to an underlying journal file.doublegetCollectorLoadFactor()Determine the load factor threshold at which files become eligible for garbage collection (compaction).RamJournalRM.DependenciesgetDependencies()Return the Dependencies object.protected StringgetDescription()Format the object attributes into a String for inclusion in the String returned from theAbstractJournalRM.toString()method.protected longgetEvacuationMask()Obtain the bit mask that is used to identify tickets that need to be evacuated for a particular file id.protected RamJournalRM.FlashConsumergetFlashConsumer()Obtain the FlashConsumer object used to read/write flash.protected JournalgetFlashJournal()Obtain the Journal used to read/write flash.FlashJournalRMgetFlashJournalRM()Obtain the FlashJournalRM used to store large values or whatever values don't fit in the configured amount of RAM.intgetHighFileCount()Determine the high file count for this Journal.protected RamJournalRM.JournalFilegetJournalFile(int nFileId)Obtain a JournalFile by its ID.intgetMaxBacklogSize()Determine the maximum allowable size, in bytes, of the backlog; when the backlog reaches this level, writes are delayed until the backlog drops below its maximum.protected intgetMaxJournalFiles()Determine the maximum number of journal files.longgetMaxPoolSize()Determine the maximum size (in bytes) of the buffers that can be held by the pool.longgetMaxTotalRam()Determine the total amount, in bytes, of RAM that will be used for the Journal.protected longgetMinCollectorSleepMillis()Determine the minimum sleep cycle between collections.protected StringgetName()Returns the name value to be used in MBean Objectname key "name".intgetPoolSize()Determine the size (in bytes) of the buffers that are currently available in the pool.protected AbstractJournalRM.JournalFilegetSurvivorFile()Return aAbstractJournalRM.JournalFilebased on the context of the calling thread or null if it is determined that an exhaustive evacuation will not reclaim sufficient memory.protected StringgetTicketDescription(long lTicket)Format the information encoded in a ticket into a debug string.protected RamJournalRM.BufferPoolinstantiateBufferPool()Factory: Instantiate a pool of buffers.protected RamJournalRM.FlashConsumerinstantiateConsumer()Factory: Instantiate a FlashConsumer object.protected RamJournalRM.JournalImplinstantiateJournal()Factory: Instantiate a JournalImpl object.protected RamJournalRM.JournalFileinstantiateJournalFile(int nFile)Factory: Instantiate a JournalFile or subclass thereof.protected booleanisCompact(long lTicket)Determine if the ticket is in the compact form.protected booleanisDedupEnabled()Determine if this journal resource manager should de-dup the keys that its JournalBinaryStore instances are managing.protected booleanisFlash(long lTicket)Determine if the ticket is neither in compact or RAM form.booleanisNioRam()Determine if the journal will use direct buffers (NIO RAM) instead of on-heap buffers (byte arrays).protected booleanisRam(long lTicket)Determine if the ticket is in the RAM form.protected booleanisSingleEvacuation()Determine if this journal resource manager should only evacuate one single JournalFile (at the most) per collection cycle.protected voidonDependencies(AbstractJournalRM.Dependencies deps)Process the Dependencies after they have been injected into this object.protected booleanshouldNotifyCollector()Check if the Collector daemon needs to be notified to come out of sleepprotected voidstartThreads()Create and start the various threads used by this Journal Resource Manager.voidstop()Hard-stop the controllable service.- 
Methods inherited from class com.tangosol.io.journal.AbstractJournalRM
calculateCurrentLoadFactor, close, compact, configure, createBinaryStore, createJournal, destroyBinaryStore, dispose, encodeTicket, ensureCurrentJournalFile, extractBinary, getBinaryStoreCount, getCluster, getCollectorDaemon, getCollectorTimeout, getCompactionCount, getContextClassLoader, getCurrentCollectorLoadFactor, getExhaustiveCompactionCount, getExhaustiveCompactionTime, getFileCount, getGuardian, getHighestLoadFactor, getMaxCollectorSleepMillis, getMaxFileSize, getMaxJournalFilesNumber, getMaxJournalSize, getMaxValueSize, getState, getStateDescription, getTotalDataSize, getTotalFileSize, instantiateCollectorDaemon, isRunning, iterateJournalFiles, iterateJournals, registerJournal, registerMBean, resetStatistics, setContextClassLoader, setState, shutdown, start, stopThreads, toString, unregisterJournal, unregisterMBean 
 - 
 
 - 
 
- 
- 
Field Detail
- 
SHIFT_RAM_FLAG
protected static final int SHIFT_RAM_FLAG
The location of the RAM flag within the ticket.- See Also:
 - Constant Field Values
 
 
- 
MASK_RAM_FLAG
protected static final long MASK_RAM_FLAG
The 64-bit bitmask for the RAM flag.The RAM flag is the bit that signifies that the ticket was produced by the RAM Journal Resource Manager, as opposed to either a "real" compact ticket or a delegated flash ticket.
- See Also:
 - Constant Field Values
 
 
- 
SHIFT_FILE_ID
protected static final int SHIFT_FILE_ID
The location of the file id within the ticket.- See Also:
 - Constant Field Values
 
 
- 
MASK_FILE_ID
protected static final long MASK_FILE_ID
The 64-bit bitmask for the file index. The 9 bits from 61-53.- See Also:
 - Constant Field Values
 
 
- 
SHIFT_OFFSET
protected static final int SHIFT_OFFSET
The location of the value-offset within the ticket.- See Also:
 - Constant Field Values
 
 
- 
MASK_OFFSET
protected static final long MASK_OFFSET
The 64-bit bitmask for the value offset. The 31 bits 52-22.- See Also:
 - Constant Field Values
 
 
- 
SHIFT_LENGTH
protected static final int SHIFT_LENGTH
The location of the value-length within the ticket.- See Also:
 - Constant Field Values
 
 
- 
MASK_LENGTH
protected static final long MASK_LENGTH
The 64-bit bitmask for the value length. The 22 bits 21-0.- See Also:
 - Constant Field Values
 
 
- 
TYPE_NAME
protected static final String TYPE_NAME
A simple type name to be used as part of MBean Objectnames.- See Also:
 - Constant Field Values
 
 
- 
m_pool
protected RamJournalRM.BufferPool m_pool
The buffer pool. 
- 
m_jrnlrm
protected FlashJournalRM m_jrnlrm
A reference to a flash journal resource manager to use to read/write to/from flash for data that doesn't fit in memory. 
- 
m_flash
protected RamJournalRM.FlashConsumer m_flash
The conduit between this RAM journal resource manager and the flash journal resource manager. 
 - 
 
- 
Constructor Detail
- 
RamJournalRM
public RamJournalRM(Cluster cluster, RamJournalRM.Dependencies deps)
Construct a RAMJournalRM.- Parameters:
 cluster- theClusterfor which theRamJournalRMis storing datadeps- the Dependencies object
 
- 
RamJournalRM
public RamJournalRM(Cluster cluster, RamJournalRM.Dependencies deps, FlashJournalRM jrnlmr)
Construct a RAMJournalRM.- Parameters:
 cluster- theClusterfor which theRamJournalRMis storing datadeps- the Dependencies objectjrnlmr- the Flash Journal object
 
 - 
 
- 
Method Detail
- 
stop
public void stop()
Hard-stop the controllable service. UseControllable.shutdown()for normal service termination. Calling this method for a service that has already stopped has no effect.- Specified by:
 stopin interfaceControllable- Overrides:
 stopin classAbstractJournalRM
 
- 
getBacklogCount
public int getBacklogCount()
Determine the number of serialized values that have not yet been persisted to disk.This property is specific to a
FlashJournalRMimplementation.- Returns:
 - the number of serialized values queued to be written
 
 
- 
getBacklogSize
public int getBacklogSize()
Determine the total size in bytes of the serialized values that have not yet been persisted to disk. This value is also referred to as the "backlog".This property is specific to a
FlashJournalRMimplementation.- Returns:
 - the number of bytes queued to be written
 
 
- 
getMaxBacklogSize
public int getMaxBacklogSize()
Determine the maximum allowable size, in bytes, of the backlog; when the backlog reaches this level, writes are delayed until the backlog drops below its maximum.This property is specific to a
FlashJournalRMimplementation.- Returns:
 - the maximum allowable size of the backlog
 
 
- 
getPoolSize
public int getPoolSize()
Determine the size (in bytes) of the buffers that are currently available in the pool. This is not a measurement of how many buffers are currently in use or how many have been allocated.This property is specific to a
FlashJournalRMimplementation.- Returns:
 - the total size in bytes of all of the buffers that are currently in the buffer pool
 
 
- 
getMaxTotalRam
public long getMaxTotalRam()
Determine the total amount, in bytes, of RAM that will be used for the Journal.This property is specific to a
RamJournalRMimplementation.- Returns:
 - the maximum number of bytes that will be allocated for Journal storage
 
 
- 
isNioRam
public boolean isNioRam()
Determine if the journal will use direct buffers (NIO RAM) instead of on-heap buffers (byte arrays).This property is specific to a
RamJournalRMimplementation.- Returns:
 - true iff the journal is configured to use NIO "direct buffer" RAM
 
 
- 
getMaxPoolSize
public long getMaxPoolSize()
Determine the maximum size (in bytes) of the buffers that can be held by the pool. This is not a limit of how many buffers can be allocated, since some may be in use at any time, but rather how many will be held by the pool (i.e. recycled) as they are released.- Returns:
 - the maximum size in bytes of all of the buffers that the buffer pool can hold onto
 
 
- 
getBufferSize
public int getBufferSize()
Determine the size of the buffers used to write a chunk of data at a time to an underlying journal file.This property is specific to a
FlashJournalRMimplementation.- Returns:
 - the size, in bytes, of each buffer
 
 
- 
getHighFileCount
public int getHighFileCount()
Determine the high file count for this Journal. Compulsory compaction (GC) occurs when the journal file count reaches the high file count.This property is specific to a
FlashJournalRMimplementation.- Returns:
 - the high file count for this journal
 
 
- 
getFlashJournalRM
public FlashJournalRM getFlashJournalRM()
Obtain the FlashJournalRM used to store large values or whatever values don't fit in the configured amount of RAM.- Returns:
 - the FlashJournalRM used by this RamJournalRM, or null if none
 
 
- 
getName
protected String getName()
Returns the name value to be used in MBean Objectname key "name".- Specified by:
 getNamein classAbstractJournalRM- Returns:
 - the name
 
 
- 
getDependencies
public RamJournalRM.Dependencies getDependencies()
Return the Dependencies object.- Overrides:
 getDependenciesin classAbstractJournalRM- Returns:
 - the journal dependencies object
 
 
- 
cloneDependencies
public RamJournalRM.DefaultDependencies cloneDependencies(AbstractJournalRM.Dependencies deps)
Clone the Dependencies object.- Specified by:
 cloneDependenciesin classAbstractJournalRM- Parameters:
 deps- the populated Dependencies object- Returns:
 - the cloned Dependencies object
 
 
- 
onDependencies
protected void onDependencies(AbstractJournalRM.Dependencies deps)
Process the Dependencies after they have been injected into this object.- Overrides:
 onDependenciesin classAbstractJournalRM- Parameters:
 deps- the populated Dependencies object
 
- 
startThreads
protected void startThreads()
Create and start the various threads used by this Journal Resource Manager.- Overrides:
 startThreadsin classAbstractJournalRM
 
- 
getDescription
protected String getDescription()
Format the object attributes into a String for inclusion in the String returned from theAbstractJournalRM.toString()method.- Overrides:
 getDescriptionin classAbstractJournalRM- Returns:
 - a comma-delimited String listing the attributes of this object in the form "attribute=value"
 
 
- 
getCollectorLoadFactor
public double getCollectorLoadFactor()
Determine 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).
- Specified by:
 getCollectorLoadFactorin interfaceJournalMBean- Overrides:
 getCollectorLoadFactorin classAbstractJournalRM- Returns:
 - the compaction factor threshold between 0.0 and 1.0
 
 
- 
shouldNotifyCollector
protected boolean shouldNotifyCollector()
Check if the Collector daemon needs to be notified to come out of sleep- Overrides:
 shouldNotifyCollectorin classAbstractJournalRM- Returns:
 - true if collector daemon should be notified
 
 
- 
getMaxJournalFiles
protected int getMaxJournalFiles()
Determine the maximum number of journal files.- Overrides:
 getMaxJournalFilesin classAbstractJournalRM- Returns:
 - the maximum number of simultaneous journal files that will be used to store the contents of this journal
 
 
- 
getMinCollectorSleepMillis
protected long getMinCollectorSleepMillis()
Determine the minimum sleep cycle between collections.- Overrides:
 getMinCollectorSleepMillisin classAbstractJournalRM- Returns:
 - the minimum number of milliseconds to sleep between collections
 
 
- 
isDedupEnabled
protected boolean isDedupEnabled()
Determine if this journal resource manager should de-dup the keys that its JournalBinaryStore instances are managing.- Overrides:
 isDedupEnabledin classAbstractJournalRM- Returns:
 - true iff this journal resource manager should routinely cause its JournalBinaryStore instances to de-dup their keys
 
 
- 
isSingleEvacuation
protected boolean isSingleEvacuation()
Determine if this journal resource manager should only evacuate one single JournalFile (at the most) per collection cycle.- Overrides:
 isSingleEvacuationin classAbstractJournalRM- Returns:
 - true iff this journal resource manager should only evacuate the emptiest JournalFile instead of all the JournalFile instances that qualify for evacuation
 
 
- 
getFlashJournal
protected Journal getFlashJournal()
Obtain the Journal used to read/write flash.- Returns:
 - the flash Journal or null if there is none
 
 
- 
getSurvivorFile
protected AbstractJournalRM.JournalFile getSurvivorFile()
Return aAbstractJournalRM.JournalFilebased on the context of the calling thread or null if it is determined that an exhaustive evacuation will not reclaim sufficient memory. This method should only be invoked in a "depleted" state when:- the maximum number of files is used
 - all those files are 
non-appending 
When called on the CollectorDaemon thread this method returns a normal JournalFile, with the only exception that it will be in excess to the maximum number of permitted journal files and used exclusively by the CollectorDaemon to perform evacuation in a depleted state.
- Overrides:
 getSurvivorFilein classAbstractJournalRM- Returns:
 - either a JournalFile whose usage triggers a full collection or
         a JournalFile used exclusively by the CollectorDaemon. 
nullmay be returned if it is determined that an exhaustive evacuation will not reclaim sufficient memory 
 
- 
instantiateJournal
protected RamJournalRM.JournalImpl instantiateJournal()
Factory: Instantiate a JournalImpl object.- Overrides:
 instantiateJournalin classAbstractJournalRM- Returns:
 - a JournalImpl instance or subclass thereof
 
 
- 
instantiateConsumer
protected RamJournalRM.FlashConsumer instantiateConsumer()
Factory: Instantiate a FlashConsumer object.- Returns:
 - an instance of FlashConsumer or a subclass thereof.
 
 
- 
getFlashConsumer
protected RamJournalRM.FlashConsumer getFlashConsumer()
Obtain the FlashConsumer object used to read/write flash.- Returns:
 - the FlashConsumer instance, or null if there is no flash configured to use
 
 
- 
getJournalFile
protected RamJournalRM.JournalFile getJournalFile(int nFileId)
Obtain a JournalFile by its ID.- Overrides:
 getJournalFilein classAbstractJournalRM- Parameters:
 nFileId- the file id (0-511)- Returns:
 - the JournalFile for that file id, or null if there is currently no JournalFile for that file id
 
 
- 
instantiateJournalFile
protected RamJournalRM.JournalFile instantiateJournalFile(int nFile)
Factory: Instantiate a JournalFile or subclass thereof.- Specified by:
 instantiateJournalFilein classAbstractJournalRM- Parameters:
 nFile- the file number in the range 0-511 (inclusive)- Returns:
 - a new JournalFile instance
 
 
- 
isCompact
protected boolean isCompact(long lTicket)
Determine if the ticket is in the compact form.- Overrides:
 isCompactin classAbstractJournalRM- Parameters:
 lTicket- a "ticket" that was created by the Journal- Returns:
 - true iff the ticket is a compact ticket
 
 
- 
isRam
protected boolean isRam(long lTicket)
Determine if the ticket is in the RAM form.- Parameters:
 lTicket- a "ticket" that was returned previously by the Journal- Returns:
 - true iff the ticket is a RAM ticket
 
 
- 
isFlash
protected boolean isFlash(long lTicket)
Determine if the ticket is neither in compact or RAM form.- Parameters:
 lTicket- a "ticket" that was returned previously by the Journal- Returns:
 - true iff the ticket is from an underlying FlashJournalRM
 
 
- 
getEvacuationMask
protected long getEvacuationMask()
Obtain the bit mask that is used to identify tickets that need to be evacuated for a particular file id.- Specified by:
 getEvacuationMaskin classAbstractJournalRM- Returns:
 - the the bit mask for the file index within a ticket and whatever other bits are necessary to ensure that a ticket refers to that file
 
 
- 
extractFileId
protected int extractFileId(long lTicket)
Extract a file index (a file ID) from the passed ticket.- Specified by:
 extractFileIdin classAbstractJournalRM- Parameters:
 lTicket- a "ticket" that was created by the Journal- Returns:
 - the file index for the value represented by that ticket
 
 
- 
extractOffset
protected long extractOffset(long lTicket)
Extract a file offset from the passed ticket.- Specified by:
 extractOffsetin classAbstractJournalRM- Parameters:
 lTicket- a "ticket" that was created by the Journal- Returns:
 - the file offset for the value represented by that ticket
 
 
- 
extractLength
protected int extractLength(long lTicket)
Extract a file offset from the passed ticket.- Specified by:
 extractLengthin classAbstractJournalRM- Parameters:
 lTicket- a "ticket" that was created by the Journal- Returns:
 - the file offset for the value represented by that ticket
 
 
- 
encodeTicket
protected long encodeTicket(int nFile, long of, int cb)Encode a file number, offset and length into a "ticket".- Specified by:
 encodeTicketin classAbstractJournalRM- Parameters:
 nFile- a file number (aka a file index)of- a value offsetcb- a value length- Returns:
 - a "ticket" containing the file number, offset and length
 
 
- 
getTicketDescription
protected String getTicketDescription(long lTicket)
Format the information encoded in a ticket into a debug string.- Overrides:
 getTicketDescriptionin classAbstractJournalRM- Parameters:
 lTicket- the ticket value- Returns:
 - a description of the contents of the ticket value
 
 
- 
instantiateBufferPool
protected RamJournalRM.BufferPool instantiateBufferPool()
Factory: Instantiate a pool of buffers.- Returns:
 - a BufferPool or subclass thereof
 
 
- 
getBufferPool
protected RamJournalRM.BufferPool getBufferPool()
Obtain the BufferPool instance.- Returns:
 - the BufferPool for this FlashJournalRM
 
 
 - 
 
 -