Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.2)

E26043-01


com.tangosol.io.journal
Class FlashJournalRM.DefaultDependencies

java.lang.Object
  extended by com.tangosol.io.journal.AbstractJournalRM.DefaultDependencies
      extended by com.tangosol.io.journal.FlashJournalRM.DefaultDependencies

All Implemented Interfaces:
AbstractJournalRM.Dependencies, FlashJournalRM.Dependencies
Enclosing class:
FlashJournalRM

public static class FlashJournalRM.DefaultDependencies
extends AbstractJournalRM.DefaultDependencies
implements FlashJournalRM.Dependencies

The DefaultDependencies class provides a default implementation of Dependencies.


Field Summary
static int DFT_BACKLOG_SIZE
          Default maximum backlog (16MB).
static int DFT_BLOCK_SIZE
          Default block size (256KB).
static double DFT_COLLECT_PCT
          Default collection factor (collect files that are 25% or less utilized).
static long DFT_FILE_SIZE
          Default size of a file (2GB).
static long DFT_JOURNAL_SIZE
          Default Journal Size (1TB).
static int DFT_POOL_SIZE
          Default pool size (16MB).
static int DFT_PURGE_DELAY_MILLIS
          Default delay until a tmp file is eligible for purging. 2 hours is the default.
static int MAX_BACKLOG_SIZE
          Maximum backlog size (1GB).
static int MAX_BLOCK_SIZE
          Maximum block size (1MB).
static long MAX_FILE_SIZE
          Maximum size of a file (4GB).
static long MAX_JOURNAL_SIZE
          Maximum Journal Size (2TB).
static int MAX_POOL_SIZE
          Maximum pool size (1GB).
static int MAX_VALUE_SIZE
          Maximum value size (64MB).
static int MIN_BACKLOG_SIZE
          Minimum backlog size (4KB).
static int MIN_BLOCK_SIZE
          Minimum block size (4KB).
static long MIN_FILE_SIZE
          Minimum maximum size of a file (1MB).

 

Fields inherited from class com.tangosol.io.journal.AbstractJournalRM.DefaultDependencies
m_cbMaxFile, m_cbMaxValue, m_dflLoadFactorGC, MAX_COLLECT_PCT, MAX_FILE_COUNT, MIN_COLLECT_PCT

 

Constructor Summary
FlashJournalRM.DefaultDependencies()
          Construct a DefaultDependencies object.
FlashJournalRM.DefaultDependencies(FlashJournalRM.Dependencies deps)
          Construct a DefaultDependencies object.

 

Method Summary
 int getBufferSize()
          Return the size of the write buffers.
protected  double getDefaultCollectorLoadFactor()
          Get the default percentage at which a file is eligible for garbage collection.
protected  long getDefaultMaxFileSize()
          Get the default maximum file size for this Journal Resource Manager.
protected  int getDefaultMaxValueSize()
          Get the default maximum value size for this Journal Resource Manager.
 java.lang.String getDirectory()
          Return the directory used to store the underlying disk files for the journal.
 int getHighFileCount()
          Return the file count at which compulsory garbage collection (compaction) should start.
 long getHighJournalSize()
          The high journal size is a soft limit on the journal size.
 int getMaxBacklogSize()
          Return the size in bytes of the maximum backlog.
 long getMaxPoolSize()
          Return the maximum size of the write buffers pool.
 long getPurgeDelayMillis()
          Return the delay since the last touch of a tmp file until it is eligible for purging.
 FlashJournalRM.DefaultDependencies setBufferSize(int cb)
          Configure the size of the write buffers.
 FlashJournalRM.DefaultDependencies setDirectory(java.lang.String dirTemp)
          Configure the directory to use for journal files.
 FlashJournalRM.DefaultDependencies setHighFileCount(int cHighFiles)
          Set the high file count at which compulsory garbage collection (compaction) occurs.
 FlashJournalRM.DefaultDependencies setHighJournalSize(long cbHighJournalSize)
          Set the high journal size.
 FlashJournalRM.DefaultDependencies setMaxBacklogSize(int cb)
          Specify the size, in bytes, of the maximum backlog.
 FlashJournalRM.DefaultDependencies setMaxPoolSize(long cb)
          Configure the size of the write buffers pool.
 FlashJournalRM.DefaultDependencies setPurgeDelayMillis(long cPurgeDelayMillis)
          Sets the delay from the last touch of a tmp file until it is eligible for purging.
 java.lang.String toString()
          Return the DefaultDependencies in String format.
 FlashJournalRM.DefaultDependencies validate()
          Validate the supplied dependencies.

 

Methods inherited from class com.tangosol.io.journal.AbstractJournalRM.DefaultDependencies
getCollectorLoadFactor, getMaxFileSize, getMaxValueSize, setCollectorLoadFactor, setMaxFileSize, setMaxValueSize, validateLoadFactor

 

Methods inherited from interface com.tangosol.io.journal.AbstractJournalRM.Dependencies
getCollectorLoadFactor, getMaxFileSize, getMaxValueSize

 

Field Detail

MAX_VALUE_SIZE

public static final int MAX_VALUE_SIZE
Maximum value size (64MB).
See Also:
Constant Field Values

MIN_BACKLOG_SIZE

public static final int MIN_BACKLOG_SIZE
Minimum backlog size (4KB).
See Also:
Constant Field Values

MAX_BACKLOG_SIZE

public static final int MAX_BACKLOG_SIZE
Maximum backlog size (1GB).
See Also:
Constant Field Values

DFT_BACKLOG_SIZE

public static final int DFT_BACKLOG_SIZE
Default maximum backlog (16MB).
See Also:
Constant Field Values

MIN_FILE_SIZE

public static final long MIN_FILE_SIZE
Minimum maximum size of a file (1MB).
See Also:
Constant Field Values

MAX_FILE_SIZE

public static final long MAX_FILE_SIZE
Maximum size of a file (4GB).
See Also:
Constant Field Values

DFT_FILE_SIZE

public static final long DFT_FILE_SIZE
Default size of a file (2GB).
See Also:
Constant Field Values

MIN_BLOCK_SIZE

public static final int MIN_BLOCK_SIZE
Minimum block size (4KB).
See Also:
Constant Field Values

MAX_BLOCK_SIZE

public static final int MAX_BLOCK_SIZE
Maximum block size (1MB).
See Also:
Constant Field Values

DFT_BLOCK_SIZE

public static final int DFT_BLOCK_SIZE
Default block size (256KB).
See Also:
Constant Field Values

MAX_POOL_SIZE

public static final int MAX_POOL_SIZE
Maximum pool size (1GB).
See Also:
Constant Field Values

DFT_POOL_SIZE

public static final int DFT_POOL_SIZE
Default pool size (16MB).
See Also:
Constant Field Values

DFT_COLLECT_PCT

public static final double DFT_COLLECT_PCT
Default collection factor (collect files that are 25% or less utilized).
See Also:
Constant Field Values

DFT_PURGE_DELAY_MILLIS

public static final int DFT_PURGE_DELAY_MILLIS
Default delay until a tmp file is eligible for purging. 2 hours is the default.
See Also:
Constant Field Values

MAX_JOURNAL_SIZE

public static final long MAX_JOURNAL_SIZE
Maximum Journal Size (2TB).
See Also:
Constant Field Values

DFT_JOURNAL_SIZE

public static final long DFT_JOURNAL_SIZE
Default Journal Size (1TB).
See Also:
Constant Field Values

Constructor Detail

FlashJournalRM.DefaultDependencies

public FlashJournalRM.DefaultDependencies()
Construct a DefaultDependencies object.

FlashJournalRM.DefaultDependencies

public FlashJournalRM.DefaultDependencies(FlashJournalRM.Dependencies deps)
Construct a DefaultDependencies object. Copy the values from the specified Dependencies object.
Parameters:
deps - the dependencies to copy, or null

Method Detail

getMaxPoolSize

public long getMaxPoolSize()
Return the maximum size of the write buffers pool.
Specified by:
getMaxPoolSize in interface FlashJournalRM.Dependencies
Returns:
maximum size of write buffers pool

setMaxPoolSize

public FlashJournalRM.DefaultDependencies setMaxPoolSize(long cb)
Configure the size of the write buffers pool. The default is defined by DFT_POOL_SIZE, with a maximum defined by MAX_POOL_SIZE and a minimum enforced as the size of a single buffer.

Note: This value can only be set before the ResourceManager is started.

Parameters:
cb - the size, in bytes, for the buffer pool
Returns:
this object

getBufferSize

public int getBufferSize()
Return the size of the write buffers.
Specified by:
getBufferSize in interface FlashJournalRM.Dependencies
Returns:
size of write buffers

setBufferSize

public FlashJournalRM.DefaultDependencies setBufferSize(int cb)
Configure the size of the write buffers. This is the size that writes to an underlying disk file will occur in, and the size should match or be a multiple of the physical device's optimal block size. The value must be a power of two. The default is 256KB, as specified by DFT_BLOCK_SIZE, with a minimum defined by MIN_BLOCK_SIZE and a maximum defined by MAX_BLOCK_SIZE.

Note: This value can only be set before the ResourceManager is started.

Parameters:
cb - the size, in bytes, for the buffers to write to the underlying journal files
Returns:
this object

getMaxBacklogSize

public int getMaxBacklogSize()
Return the size in bytes of the maximum backlog.
Specified by:
getMaxBacklogSize in interface FlashJournalRM.Dependencies
Returns:
the size in bytes of the maximum backlog

setMaxBacklogSize

public FlashJournalRM.DefaultDependencies setMaxBacklogSize(int cb)
Specify the size, in bytes, of the maximum backlog. The backlog defaults to 16MB as defined by DFT_BACKLOG_SIZE, with a minimum defined by MIN_BACKLOG_SIZE and a maximum defined by MAX_BACKLOG_SIZE. The backlog is the amount of data that has been "dropped off" for the journal to write to disk, but which has not yet been written to disk; when the amount of backlog exceeds the maximum configured backlog, client threads attempting to "drop off" data are blocked until the backlog recedes below the maximum, thus helping to prevent out-of-memory conditions. Note that the maximum amount of memory used by the backlog is at least twice the configured amount, since the data dropped off is held in it Binary form and rendered to the write-behind buffers.

Note: This value can be modified while the ResourceManager is running.

Parameters:
cb - the maximum allowable size of the backlog
Returns:
this object

getDirectory

public java.lang.String getDirectory()
Return the directory used to store the underlying disk files for the journal.
Specified by:
getDirectory in interface FlashJournalRM.Dependencies
Returns:
the directory that is used to hold the journal files, or null if the default temporary directory is used

setDirectory

public FlashJournalRM.DefaultDependencies setDirectory(java.lang.String dirTemp)
Configure the directory to use for journal files. This property is provided so that servers with multiple physical storage devices and/or file systems can select an ideal storage location for a journal; the ideal device is a flash (solid state disk, aka SSD) device, since the journal is designed as a block-writing, append-only implementation.

Note: This value can only be set before the ResourceManager is started.

Parameters:
dirTemp - the directory to use for journal files
Returns:
this object

getPurgeDelayMillis

public 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.
Specified by:
getPurgeDelayMillis in interface FlashJournalRM.Dependencies
Returns:
the delay in milliseconds

setPurgeDelayMillis

public FlashJournalRM.DefaultDependencies setPurgeDelayMillis(long cPurgeDelayMillis)
Sets the delay from the last touch of a tmp file until it is eligible for purging.
Parameters:
cPurgeDelayMillis - the delay in milliseconds
Returns:
this object

getHighFileCount

public 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.

Specified by:
getHighFileCount in interface FlashJournalRM.Dependencies
Returns:
the high file count

setHighFileCount

public FlashJournalRM.DefaultDependencies setHighFileCount(int cHighFiles)
Set the high file count at which compulsory garbage collection (compaction) occurs.
Parameters:
cHighFiles - the high file count
Returns:
this object

getHighJournalSize

public long getHighJournalSize()
The high journal size is a soft limit on the journal size. This allows the GC thread to tune itself to try to avoid growing the journal beyond the high journal size. This is not a hard-limit and the journal could still grow beyond that up to the max file count (512).
Specified by:
getHighJournalSize in interface FlashJournalRM.Dependencies
Returns:
the high journal size

setHighJournalSize

public FlashJournalRM.DefaultDependencies setHighJournalSize(long cbHighJournalSize)
Set the high journal size. High file count is adjusted based on the high journal size.
Parameters:
cbHighJournalSize - the high journal size
Returns:
this object

validate

public FlashJournalRM.DefaultDependencies validate()
Validate the supplied dependencies.
Overrides:
validate in class AbstractJournalRM.DefaultDependencies
Returns:
this object
Throws:
java.lang.IllegalArgumentException - if the dependencies are not valid

getDefaultMaxFileSize

protected long getDefaultMaxFileSize()
Get the default maximum file size for this Journal Resource Manager.
Specified by:
getDefaultMaxFileSize in class AbstractJournalRM.DefaultDependencies
Returns:
the default maximum file size

getDefaultMaxValueSize

protected int getDefaultMaxValueSize()
Get the default maximum value size for this Journal Resource Manager.
Specified by:
getDefaultMaxValueSize in class AbstractJournalRM.DefaultDependencies
Returns:
the default maximum value size

getDefaultCollectorLoadFactor

protected double getDefaultCollectorLoadFactor()
Get the default percentage at which a file is eligible for garbage collection.
Specified by:
getDefaultCollectorLoadFactor in class AbstractJournalRM.DefaultDependencies
Returns:
the default garbage collection load factor

toString

public java.lang.String toString()
Return the DefaultDependencies in String format.
Overrides:
toString in class AbstractJournalRM.DefaultDependencies
Returns:
this object in String format

Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.2)

E26043-01


Copyright © 2000, 2013, Oracle and/or its affiliates. All rights reserved.