Skip navigation links

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

E47890-01


com.tangosol.net.partition
Class ObservableSplittingBackingCache

java.lang.Object
  extended by com.tangosol.util.Base
      extended by com.tangosol.util.AbstractKeyBasedMap
          extended by com.tangosol.util.AbstractKeySetBasedMap
              extended by com.tangosol.util.WrapperObservableMap
                  extended by com.tangosol.net.partition.ObservableSplittingBackingMap
                      extended by com.tangosol.net.partition.ObservableSplittingBackingCache

All Implemented Interfaces:
com.oracle.common.base.Disposable, CacheMap, ConfigurableCacheMap, PartitionAwareBackingMap, ObservableMap, java.util.Map

public class ObservableSplittingBackingCache
extends ObservableSplittingBackingMap
implements ConfigurableCacheMap

The ObservableSplittingBackingCache is an implementation of the ConfigurableCacheMap interface that works as an observable backing map in a partitioned system. In other words, it acts like a LocalCache, but it internally partitions its data across any number of caches that implement the ConfigurableCacheMap interface. Note that the underlying backing maps must implement the ConfigurableCacheMap interface or a runtime exception will occur.

Author:
cp 2009.01.16

Nested Class Summary
protected static class ObservableSplittingBackingCache.CapacityAwareMap
          A subclass of PartitionSplittingBackingMap which allows an injected instance of ObservableSplittingBackingMap to be called immediately before inserting a value(s) in a partition map.
 class ObservableSplittingBackingCache.EntrySet
          A set of ConfigurableCacheMap entries backed by this map.

 

Nested classes/interfaces inherited from class com.tangosol.util.WrapperObservableMap
WrapperObservableMap.InternalListener

 

Nested classes/interfaces inherited from class com.tangosol.util.AbstractKeySetBasedMap
AbstractKeySetBasedMap.KeyIterator, AbstractKeySetBasedMap.KeySet, AbstractKeySetBasedMap.ValuesCollection

 

Nested classes/interfaces inherited from interface com.tangosol.net.cache.ConfigurableCacheMap
ConfigurableCacheMap.Entry, ConfigurableCacheMap.EvictionApprover, ConfigurableCacheMap.EvictionPolicy, ConfigurableCacheMap.UnitCalculator

 

Field Summary
protected  ConfigurableCacheMap[] m_acache
          A cached array of the backing ConfigurableCacheMap instances.
protected  ConfigurableCacheMap.EvictionApprover m_apprvrEvict
          An optional EvictionApprover registered with this cache.
protected  ConfigurableCacheMap.UnitCalculator m_calculator
          The unit calculator.
protected  int m_cExpiryDelayMillis
          The expiry delay.
protected  int m_cHighUnitFairShare
          The fair share of high units for each partition map.
protected  int m_cHighUnits
          High units is the number of units that triggers eviction.
protected  int m_cHighUnitsCalibrated
          The high units adjusted based on the partition unit factor.
protected  int m_cLowUnitFairShare
          The fair share of low units for each partition map.
protected  int m_cLowUnits
          Low units is the number of units to evict down to.
protected  int m_cLowUnitsCalibrated
          The low units adjusted based on the partition unit factor.
protected  java.lang.Class m_clzPartitionMap
           
protected  int m_nUnitFactor
          The unit factor.
protected  ConfigurableCacheMap.EvictionPolicy m_policy
          The eviction policy.
protected static int MAX_PARTITION_MAP_UNIT_FACTOR
          The maximum unit factor for partition maps.

 

Fields inherited from class com.tangosol.util.WrapperObservableMap
m_fDeferredEvent, m_fTranslateEvents, m_listenerInternal, m_listenerSupport, m_map, m_stats

 

Fields inherited from interface com.tangosol.net.cache.CacheMap
EXPIRY_DEFAULT, EXPIRY_NEVER

 

Constructor Summary
ObservableSplittingBackingCache(BackingMapManager bmm, java.lang.String sName)
          Create a ObservableSplittingBackingCache that adds ConfigurableCacheMap functionality to an ObservableSplittingBackingMap.

 

Method Summary
protected  void adjustUnits(int cUnits)
          Adjust the number of units for each map with the pool of units provided.
protected  int calcUnitFairShare(int cUnits)
          Return the fair share of units for each child maps.
protected  void claimAll(ConfigurableCacheMap mapRequestor)
          Claim the full entitlement of units for mapRequestor.
protected  void claimUnused(ConfigurableCacheMap mapRequestor)
          Claim as many units as possible from existing maps without causing over-allocated maps to evict.
 void createPartition(int nPid)
          Add a partition to the PartitionAwareBackingMap.
 void destroyPartition(int nPid)
          Remove a partition from the PartitionAwareBackingMap.
 void evict()
          Evict all entries from the cache that are no longer valid, and potentially prune the cache size if the cache is size-limited and its size is above the caching low water mark.
 void evict(java.lang.Object oKey)
          Evict a specified key from the cache, as if it had expired from the cache.
 void evictAll(java.util.Collection colKeys)
          Evict the specified keys from the cache, as if they had each expired from the cache.
 ConfigurableCacheMap.Entry getCacheEntry(java.lang.Object oKey)
          Locate a cache Entry in the cache based on its key.
protected  int getCalibratedHighUnits()
          Determine the high units adjusted based on the partition unit factor.
protected  int getCalibratedLowUnits()
          Determine the low units adjusted based on the partition unit factor.
 ConfigurableCacheMap.EvictionApprover getEvictionApprover()
          Obtain the registered EvictionApprover.
 ConfigurableCacheMap.EvictionPolicy getEvictionPolicy()
          Obtain the current EvictionPolicy used by the cache.
 int getExpiryDelay()
          Determine the default "time to live" for each individual cache entry.
protected  int getHighUnitFairShare()
          Return the fair share of high-units per partition map.
 int getHighUnits()
          Determine the limit of the cache size in units.
protected  int getLowUnitFairShare()
          Return the fair share of low-units per partition map.
 int getLowUnits()
          Determine the point to which the cache will shrink when it prunes.
protected  ConfigurableCacheMap getPartitionCache(java.lang.Object oKey)
          Obtain the backing cache for a particular key.
protected  ConfigurableCacheMap[] getPartitionCacheArray()
          Obtain the array of backing caches.
 java.lang.Class getPartitionMapType()
          Return the uniform type used by each partition map.
protected  int getPartitionUnitFactor()
          Determine the unit factor for individual partition maps.
 ConfigurableCacheMap.UnitCalculator getUnitCalculator()
          Obtain the current UnitCalculator used by the cache.
 int getUnitFactor()
          Determine the factor by which the Units, LowUnits and HighUnits properties are adjusted.
 int getUnits()
          Determine the number of units that the cache currently stores.
protected  void initializeConfiguredProperties()
          Initialize the configurable properties of this cache-map.
protected  java.util.Set instantiateEntrySet()
          Factory pattern: Create a Set that represents the entries in the Map.
protected  void prepareUpdate(java.util.Map mapPartition, java.util.Map mapUpdate)
          Prepare mapPart, a map representing a partition, for the impending changes in which all of the mappings from mapUpdate will be copied to mapPart.
 void setEvictionApprover(ConfigurableCacheMap.EvictionApprover approver)
          Set the EvictionApprover for this ConfigurableCacheMap.
 void setEvictionPolicy(ConfigurableCacheMap.EvictionPolicy policy)
          Set the EvictionPolicy for the cache to use.
 void setExpiryDelay(int cMillis)
          Specify the default "time to live" for cache entries.
 void setHighUnits(int cMax)
          Update the maximum size of the cache in units.
 void setLowUnits(int cUnits)
          Specify the point to which the cache will shrink when it prunes.
 void setUnitCalculator(ConfigurableCacheMap.UnitCalculator calculator)
          Set the UnitCalculator for the cache to use.
 void setUnitFactor(int nFactor)
          Determine the factor by which the Units, LowUnits and HighUnits properties are adjusted.

 

Methods inherited from class com.tangosol.net.partition.ObservableSplittingBackingMap
addMapListener, addMapListener, dispose, getBackingMapManager, getCacheStatistics, getName, getPartitionMap, getPartitionMap, getPartitionSplittingBackingMap, isCollectStats, isEventFabricator, put, removeMapListener, removeMapListener, setTranslateEvents, toString

 

Methods inherited from class com.tangosol.util.WrapperObservableMap
addMapListener, clear, containsValue, dispatchEvent, dispatchPendingEvent, ensureInternalListener, ensureMapListenerSupport, get, getDescription, getInternalKeySet, getMap, getMapListenerSupport, hasListeners, instantiateInternalListener, isInternalKeySetIteratorMutable, isSynthetic, isTranslateEvents, put, putAll, remove, removeBlind, removeMapListener, setCollectStats

 

Methods inherited from class com.tangosol.util.AbstractKeySetBasedMap
containsKey, instantiateKeyIterator, instantiateKeySet, instantiateValues, isEmpty, iterateKeys, size

 

Methods inherited from class com.tangosol.util.AbstractKeyBasedMap
clone, entrySet, equals, getAll, hashCode, keySet, values

 

Methods inherited from interface com.tangosol.net.cache.CacheMap
getAll, put, put

 

Methods inherited from interface com.tangosol.util.ObservableMap
addMapListener, addMapListener, addMapListener, removeMapListener, removeMapListener, removeMapListener

 

Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, putAll, remove, size, values

 

Field Detail

MAX_PARTITION_MAP_UNIT_FACTOR

protected static final int MAX_PARTITION_MAP_UNIT_FACTOR
The maximum unit factor for partition maps.
See Also:
Constant Field Values

m_cHighUnits

protected int m_cHighUnits
High units is the number of units that triggers eviction. The value -1 indicates that this cache has not been instructed to override the high units of the underlying caches.

m_cLowUnits

protected int m_cLowUnits
Low units is the number of units to evict down to. The value -1 indicates that this cache has not been instructed to override the low units of the underlying caches.

m_cHighUnitsCalibrated

protected int m_cHighUnitsCalibrated
The high units adjusted based on the partition unit factor.

m_cLowUnitsCalibrated

protected int m_cLowUnitsCalibrated
The low units adjusted based on the partition unit factor.

m_nUnitFactor

protected int m_nUnitFactor
The unit factor. The value -1 indicates that this cache has not been instructed to override the unit factor of the underlying caches.

m_cExpiryDelayMillis

protected int m_cExpiryDelayMillis
The expiry delay. The value -1 indicates that this cache has not been instructed to override the expiry delay of the underlying caches.

m_cHighUnitFairShare

protected int m_cHighUnitFairShare
The fair share of high units for each partition map.

m_cLowUnitFairShare

protected int m_cLowUnitFairShare
The fair share of low units for each partition map.

m_policy

protected ConfigurableCacheMap.EvictionPolicy m_policy
The eviction policy. The value of null indicates that this cache has not been instructed to override the eviction policy of the underlying caches.

m_calculator

protected ConfigurableCacheMap.UnitCalculator m_calculator
The unit calculator. The value of null indicates that this cache has not been instructed to override the unit calculator of the underlying caches.

m_acache

protected ConfigurableCacheMap[] m_acache
A cached array of the backing ConfigurableCacheMap instances.

m_apprvrEvict

protected ConfigurableCacheMap.EvictionApprover m_apprvrEvict
An optional EvictionApprover registered with this cache.

m_clzPartitionMap

protected java.lang.Class m_clzPartitionMap

Constructor Detail

ObservableSplittingBackingCache

public ObservableSplittingBackingCache(BackingMapManager bmm,
                                       java.lang.String sName)
Create a ObservableSplittingBackingCache that adds ConfigurableCacheMap functionality to an ObservableSplittingBackingMap.
Parameters:
bmm - a callback that knows how to create and release the backing maps that this ObservableSplittingBackingCache is responsible for
sName - the cache name for which this backing map exists

Method Detail

createPartition

public void createPartition(int nPid)
Add a partition to the PartitionAwareBackingMap.
Specified by:
createPartition in interface PartitionAwareBackingMap
Overrides:
createPartition in class ObservableSplittingBackingMap
Parameters:
nPid - the partition id that the PartitionAwareBackingMap will be responsible for, starting at this instant

destroyPartition

public void destroyPartition(int nPid)
Remove a partition from the PartitionAwareBackingMap.
Specified by:
destroyPartition in interface PartitionAwareBackingMap
Overrides:
destroyPartition in class ObservableSplittingBackingMap
Parameters:
nPid - the partition id that the PartitionAwareBackingMap will no longer be responsible for, starting at this instant

getUnits

public int getUnits()
Determine the number of units that the cache currently stores.

Note: It is expected that the return type will be widened to a long in Coherence 4.

Specified by:
getUnits in interface ConfigurableCacheMap
Returns:
the current size of the cache in units

getHighUnits

public int getHighUnits()
Determine the limit of the cache size in units. The cache will prune itself automatically once it reaches its maximum unit level. This is often referred to as the "high water mark" of the cache.

Note: It is expected that the return type will be widened to a long in Coherence 4.

Specified by:
getHighUnits in interface ConfigurableCacheMap
Returns:
the limit of the cache size in units

setHighUnits

public void setHighUnits(int cMax)
Update the maximum size of the cache in units. This is often referred to as the "high water mark" of the cache.

Note: It is expected that the parameter will be widened to a long in Coherence 4.

Specified by:
setHighUnits in interface ConfigurableCacheMap
Parameters:
cMax - the new maximum size of the cache, in units

getLowUnits

public int getLowUnits()
Determine the point to which the cache will shrink when it prunes. This is often referred to as a "low water mark" of the cache. If the cache incrementally prunes, then this setting will have no effect.

Note: It is expected that the parameter will be widened to a long in Coherence 4.

Specified by:
getLowUnits in interface ConfigurableCacheMap
Returns:
the number of units that the cache prunes to

setLowUnits

public void setLowUnits(int cUnits)
Specify the point to which the cache will shrink when it prunes. This is often referred to as a "low water mark" of the cache.

Note: It is expected that the parameter will be widened to a long in Coherence 4.

Specified by:
setLowUnits in interface ConfigurableCacheMap
Parameters:
cUnits - the number of units that the cache prunes to

getUnitFactor

public int getUnitFactor()
Determine the factor by which the Units, LowUnits and HighUnits properties are adjusted. Using a binary unit calculator, for example, the factor 1048576 could be used to count megabytes instead of bytes.

Note: This property exists only to avoid changing the type of the units, low units and high units properties from 32-bit values to 64-bit values. It is expected that the parameter will be dropped in Coherence 4.

Specified by:
getUnitFactor in interface ConfigurableCacheMap
Returns:
the units factor; the default is 1

setUnitFactor

public void setUnitFactor(int nFactor)
Determine the factor by which the Units, LowUnits and HighUnits properties are adjusted. Using a binary unit calculator, for example, the factor 1048576 could be used to count megabytes instead of bytes.

Note: This property exists only to avoid changing the type of the units, low units and high units properties from 32-bit values to 64-bit values. It is expected that the parameter will be dropped in Coherence 4.

Specified by:
setUnitFactor in interface ConfigurableCacheMap
Parameters:
nFactor - the units factor; the default is 1

getEvictionPolicy

public ConfigurableCacheMap.EvictionPolicy getEvictionPolicy()
Obtain the current EvictionPolicy used by the cache.
Specified by:
getEvictionPolicy in interface ConfigurableCacheMap
Returns:
the EvictionPolicy used by the cache

setEvictionPolicy

public void setEvictionPolicy(ConfigurableCacheMap.EvictionPolicy policy)
Set the EvictionPolicy for the cache to use.
Specified by:
setEvictionPolicy in interface ConfigurableCacheMap
Parameters:
policy - an EvictionPolicy

evict

public void evict(java.lang.Object oKey)
Evict a specified key from the cache, as if it had expired from the cache. If the key is not in the cache, then the method has no effect.
Specified by:
evict in interface ConfigurableCacheMap
Parameters:
oKey - the key to evict from the cache

evictAll

public void evictAll(java.util.Collection colKeys)
Evict the specified keys from the cache, as if they had each expired from the cache.

The result of this method is defined to be semantically the same as the following implementation:


 for (Iterator iter = colKeys.iterator(); iter.hasNext(); )
     {
     Object oKey = iter.next();
     evict(oKey);
     }
 
Specified by:
evictAll in interface ConfigurableCacheMap
Parameters:
colKeys - a collection of keys to evict from the cache

evict

public void evict()
Evict all entries from the cache that are no longer valid, and potentially prune the cache size if the cache is size-limited and its size is above the caching low water mark.
Specified by:
evict in interface ConfigurableCacheMap

getEvictionApprover

public ConfigurableCacheMap.EvictionApprover getEvictionApprover()
Obtain the registered EvictionApprover.
Specified by:
getEvictionApprover in interface ConfigurableCacheMap
Returns:
the EvictionApprover (could be null)

setEvictionApprover

public void setEvictionApprover(ConfigurableCacheMap.EvictionApprover approver)
Set the EvictionApprover for this ConfigurableCacheMap.
Specified by:
setEvictionApprover in interface ConfigurableCacheMap
Parameters:
approver - the EvictionApprover

getExpiryDelay

public int getExpiryDelay()
Determine the default "time to live" for each individual cache entry.
Specified by:
getExpiryDelay in interface ConfigurableCacheMap
Returns:
the number of milliseconds that a cache entry value will live, or zero if cache entries are never automatically expired

setExpiryDelay

public void setExpiryDelay(int cMillis)
Specify the default "time to live" for cache entries. This does not affect the already-scheduled expiry of existing entries.
Specified by:
setExpiryDelay in interface ConfigurableCacheMap
Parameters:
cMillis - the number of milliseconds that cache entries will live, or zero to disable automatic expiry

getCacheEntry

public ConfigurableCacheMap.Entry getCacheEntry(java.lang.Object oKey)
Locate a cache Entry in the cache based on its key.
Specified by:
getCacheEntry in interface ConfigurableCacheMap
Parameters:
oKey - the key object to search for
Returns:
the Entry or null

getUnitCalculator

public ConfigurableCacheMap.UnitCalculator getUnitCalculator()
Obtain the current UnitCalculator used by the cache.
Specified by:
getUnitCalculator in interface ConfigurableCacheMap
Returns:
the UnitCalculator used by the cache

setUnitCalculator

public void setUnitCalculator(ConfigurableCacheMap.UnitCalculator calculator)
Set the UnitCalculator for the cache to use.
Specified by:
setUnitCalculator in interface ConfigurableCacheMap
Parameters:
calculator - a UnitCalculator

getPartitionMapType

public java.lang.Class getPartitionMapType()
Return the uniform type used by each partition map.
Returns:
the type of partition map

prepareUpdate

protected void prepareUpdate(java.util.Map mapPartition,
                             java.util.Map mapUpdate)
Prepare mapPart, a map representing a partition, for the impending changes in which all of the mappings from mapUpdate will be copied to mapPart.

This implementation will check if mapPart is under-allocated for high units. If this is the case, demand the entitled unit amount from other maps.

Overrides:
prepareUpdate in class ObservableSplittingBackingMap
Parameters:
mapPartition - the map to be mutated with the contents of mapUpdate
mapUpdate - the map of changes to be applied

claimUnused

protected void claimUnused(ConfigurableCacheMap mapRequestor)
Claim as many units as possible from existing maps without causing over-allocated maps to evict.
Parameters:
mapRequestor - the map requesting its fair share of units

claimAll

protected void claimAll(ConfigurableCacheMap mapRequestor)
Claim the full entitlement of units for mapRequestor. This method should only be invoked if the map has insufficient units, based on a pending put request, however does not occupy its fair share.
Parameters:
mapRequestor - the map demanding its entitled fair share

adjustUnits

protected void adjustUnits(int cUnits)
Adjust the number of units for each map with the pool of units provided. The units provided is a total across all maps with the adjustment per map being made as prescribed below.

The provided units may be positive or negative, with the latter suggesting that this number of units should be retrieved, thus decremented, from child maps. If the provided units is positive, maps that are over-allocated may consumer the provided amount. If the provided units is negative maintain a positive delta between the fair share and their current high units may consume the minimum between what is available from the provided units and the determined delta. If the provided units is negative, those maps whose current high unit allocation is more than the fair share will have this delta decremented until the debt (cUnits) is reclaimed.

Parameters:
cUnits - the number of units to either disseminate (positive unit value) or retract across the maps

initializeConfiguredProperties

protected void initializeConfiguredProperties()
Initialize the configurable properties of this cache-map.

getPartitionCache

protected ConfigurableCacheMap getPartitionCache(java.lang.Object oKey)
Obtain the backing cache for a particular key. If the key is not owned by a partition represented by this ObservableSplittingBackingCache, then a runtime exception is thrown.
Parameters:
oKey - the key of the desired entry
Returns:
the backing cache

getPartitionCacheArray

protected ConfigurableCacheMap[] getPartitionCacheArray()
Obtain the array of backing caches.
Returns:
an array of all the per-partition backing caches

getCalibratedHighUnits

protected int getCalibratedHighUnits()
Determine the high units adjusted based on the partition unit factor.
Returns:
the limit of the cache size in units adjusted by partition unitFactor

getCalibratedLowUnits

protected int getCalibratedLowUnits()
Determine the low units adjusted based on the partition unit factor.
Returns:
the number of units adjusted by partition unitFactor that the cache prunes to

getPartitionUnitFactor

protected int getPartitionUnitFactor()
Determine the unit factor for individual partition maps.
Returns:
the unit factor for partition maps

getLowUnitFairShare

protected int getLowUnitFairShare()
Return the fair share of low-units per partition map.
Returns:
the fair share of low-units per partition map

getHighUnitFairShare

protected int getHighUnitFairShare()
Return the fair share of high-units per partition map.
Returns:
the fair share of high-units per partition map

calcUnitFairShare

protected int calcUnitFairShare(int cUnits)
Return the fair share of units for each child maps. The units provided would typically be either the high or low units allowed for all maps under this map.
Parameters:
cUnits - the units to distribute across all child maps
Returns:
the fair share of units for each child map

instantiateEntrySet

protected java.util.Set instantiateEntrySet()
Factory pattern: Create a Set that represents the entries in the Map.
Overrides:
instantiateEntrySet in class AbstractKeySetBasedMap
Returns:
a new instance of Set that represents the entries in the Map

Skip navigation links

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

E47890-01


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