public class CacheMetricsImpl extends Object implements CacheMetrics
| Constructor and Description |
|---|
CacheMetricsImpl(GridCacheContext<?,?> cctx)
Creates cache metrics;
|
| Modifier and Type | Method and Description |
|---|---|
void |
addGetTimeNanos(long duration)
Increments the get time accumulator.
|
void |
addPutAndGetTimeNanos(long duration)
Increments put and get time accumulators.
|
void |
addPutTimeNanos(long duration)
Increments the put time accumulator.
|
void |
addRemoveAndGetTimeNanos(long duration)
Increments remove and get time accumulators.
|
void |
addRemoveTimeNanos(long duration)
Increments the remove time accumulator.
|
void |
clear()
Clear metrics.
|
void |
delegate(CacheMetricsImpl delegate) |
float |
getAverageGetTime()
The mean time to execute gets.
|
float |
getAveragePutTime()
The mean time to execute puts.
|
float |
getAverageRemoveTime()
The mean time to execute removes.
|
float |
getAverageTxCommitTime()
The mean time to execute tx commit.
|
float |
getAverageTxRollbackTime()
The mean time to execute tx rollbacks.
|
long |
getCacheEvictions()
The total number of evictions from the cache.
|
long |
getCacheGets()
The total number of requests to the cache.
|
float |
getCacheHitPercentage()
This is a measure of cache efficiency.
|
long |
getCacheHits()
The number of get requests that were satisfied by the cache.
|
long |
getCacheMisses()
A miss is a get request that is not satisfied.
|
float |
getCacheMissPercentage()
Returns the percentage of cache accesses that did not find a requested entry
in the cache.
|
long |
getCachePuts()
The total number of puts to the cache.
|
long |
getCacheRemovals()
The total number of removals from the cache.
|
long |
getCacheTxCommits()
Gets total number of transaction commits.
|
long |
getCacheTxRollbacks()
Gets total number of transaction rollbacks.
|
int |
getDhtEvictQueueCurrentSize()
Gets current size of evict queue used to batch up evictions.
|
int |
getKeySize()
Gets number of keys in the cache, possibly with
null values. |
String |
getKeyType()
Determines the required type of keys for this
Cache, if any. |
long |
getOffHeapAllocatedSize()
Gets memory size allocated in off-heap.
|
long |
getOffHeapEntriesCount()
Gets number of entries stored in off-heap memory.
|
long |
getOverflowSize()
Gets number of entries that was swapped to disk.
|
int |
getSize()
Gets number of non-
null values in the cache. |
int |
getTxCommitQueueSize()
Gets committed transaction queue size.
|
int |
getTxCommittedVersionsSize()
Gets number of cached committed transaction IDs.
|
int |
getTxDhtCommitQueueSize()
Gets committed DHT transaction queue size.
|
int |
getTxDhtCommittedVersionsSize()
Gets number of cached committed DHT transaction IDs.
|
int |
getTxDhtPrepareQueueSize()
Gets prepared DHT transaction queue size.
|
int |
getTxDhtRolledbackVersionsSize()
Gets number of cached rolled back DHT transaction IDs.
|
int |
getTxDhtStartVersionCountsSize()
Gets DHT start version counts map size.
|
int |
getTxDhtThreadMapSize()
Gets transaction DHT per-thread map size.
|
int |
getTxDhtXidMapSize()
Gets transaction DHT per-Xid map size.
|
int |
getTxPrepareQueueSize()
Gets prepared transaction queue size.
|
int |
getTxRolledbackVersionsSize()
Gets number of cached rolled back transaction IDs.
|
int |
getTxStartVersionCountsSize()
Gets start version counts map size.
|
int |
getTxThreadMapSize()
Gets transaction per-thread map size.
|
int |
getTxXidMapSize()
Gets transaction per-Xid map size.
|
String |
getValueType()
Determines the required type of values for this
Cache, if any. |
int |
getWriteBehindBufferSize()
Gets count of entries that were processed by the write-behind store and have not been
flushed to the underlying store yet.
|
int |
getWriteBehindCriticalOverflowCount()
Gets count of write buffer overflow events in progress at the moment.
|
int |
getWriteBehindErrorRetryCount()
Gets count of cache entries that are in a store-retry state.
|
long |
getWriteBehindFlushFrequency()
Gets the cache flush frequency.
|
int |
getWriteBehindFlushSize()
Gets the maximum size of the write-behind buffer.
|
int |
getWriteBehindFlushThreadCount()
Gets the number of flush threads that will perform store update operations.
|
int |
getWriteBehindStoreBatchSize()
Gets the maximum count of similar (put or remove) operations that can be grouped to a single batch.
|
int |
getWriteBehindTotalCriticalOverflowCount()
Gets count of write buffer overflow events since initialization.
|
boolean |
isEmpty()
Returns
true if this cache is empty. |
boolean |
isManagementEnabled()
Checks whether management is enabled on this cache.
|
boolean |
isReadThrough()
Determines if a
Cache should operate in read-through mode. |
boolean |
isStatisticsEnabled()
Checks whether statistics collection is enabled in this cache.
|
boolean |
isStoreByValue()
Whether storeByValue
true or storeByReference false. |
boolean |
isWriteBehindEnabled()
Returns
True if write-behind is enabled. |
boolean |
isWriteThrough()
Determines if a
Cache should operate in "write-through"
mode. |
String |
name()
Gets name of this cache.
|
void |
onEvict()
Cache remove callback.
|
void |
onRead(boolean isHit)
Cache read callback.
|
void |
onRemove()
Cache remove callback.
|
void |
onTxCommit(long duration)
Transaction commit callback.
|
void |
onTxRollback(long duration)
Transaction rollback callback.
|
void |
onWrite()
Cache write callback.
|
String |
toString() |
public CacheMetricsImpl(GridCacheContext<?,?> cctx)
cctx - Cache context.public void delegate(CacheMetricsImpl delegate)
delegate - Metrics to delegate to.public String name()
name in interface CacheMetricspublic long getOverflowSize()
getOverflowSize in interface CacheMetricspublic long getOffHeapEntriesCount()
getOffHeapEntriesCount in interface CacheMetricspublic long getOffHeapAllocatedSize()
getOffHeapAllocatedSize in interface CacheMetricspublic int getSize()
null values in the cache.getSize in interface CacheMetricsnull values in the cache.public int getKeySize()
null values.getKeySize in interface CacheMetricspublic boolean isEmpty()
true if this cache is empty.isEmpty in interface CacheMetricstrue if this cache is empty.public int getDhtEvictQueueCurrentSize()
getDhtEvictQueueCurrentSize in interface CacheMetricspublic int getTxCommitQueueSize()
getTxCommitQueueSize in interface CacheMetricspublic int getTxThreadMapSize()
getTxThreadMapSize in interface CacheMetricspublic int getTxXidMapSize()
getTxXidMapSize in interface CacheMetricspublic int getTxPrepareQueueSize()
getTxPrepareQueueSize in interface CacheMetricspublic int getTxStartVersionCountsSize()
getTxStartVersionCountsSize in interface CacheMetricspublic int getTxCommittedVersionsSize()
getTxCommittedVersionsSize in interface CacheMetricspublic int getTxRolledbackVersionsSize()
getTxRolledbackVersionsSize in interface CacheMetricspublic int getTxDhtThreadMapSize()
getTxDhtThreadMapSize in interface CacheMetricspublic int getTxDhtXidMapSize()
getTxDhtXidMapSize in interface CacheMetricspublic int getTxDhtCommitQueueSize()
getTxDhtCommitQueueSize in interface CacheMetricspublic int getTxDhtPrepareQueueSize()
getTxDhtPrepareQueueSize in interface CacheMetricspublic int getTxDhtStartVersionCountsSize()
getTxDhtStartVersionCountsSize in interface CacheMetricspublic int getTxDhtCommittedVersionsSize()
getTxDhtCommittedVersionsSize in interface CacheMetricspublic int getTxDhtRolledbackVersionsSize()
getTxDhtRolledbackVersionsSize in interface CacheMetricspublic boolean isWriteBehindEnabled()
True if write-behind is enabled.isWriteBehindEnabled in interface CacheMetricsTrue if write-behind is enabled.public int getWriteBehindFlushSize()
0, then flush is performed only on time-elapsing basis. However,
when this value is 0, the cache critical size is set to
CacheConfiguration.DFLT_WRITE_BEHIND_CRITICAL_SIZEgetWriteBehindFlushSize in interface CacheMetricspublic int getWriteBehindFlushThreadCount()
getWriteBehindFlushThreadCount in interface CacheMetricspublic long getWriteBehindFlushFrequency()
0, then flush is performed only when buffer size exceeds flush size.getWriteBehindFlushFrequency in interface CacheMetricspublic int getWriteBehindStoreBatchSize()
getWriteBehindStoreBatchSize in interface CacheMetricspublic int getWriteBehindTotalCriticalOverflowCount()
getWriteBehindTotalCriticalOverflowCount in interface CacheMetricspublic int getWriteBehindCriticalOverflowCount()
getWriteBehindCriticalOverflowCount in interface CacheMetricspublic int getWriteBehindErrorRetryCount()
getWriteBehindErrorRetryCount in interface CacheMetricspublic int getWriteBehindBufferSize()
getWriteBehindBufferSize in interface CacheMetricspublic float getAverageTxCommitTime()
getAverageTxCommitTime in interface CacheMetricspublic float getAverageTxRollbackTime()
getAverageTxRollbackTime in interface CacheMetricspublic long getCacheTxCommits()
getCacheTxCommits in interface CacheMetricspublic long getCacheTxRollbacks()
getCacheTxRollbacks in interface CacheMetricspublic void clear()
public long getCacheHits()
getCacheHits in interface CacheMetricspublic float getCacheHitPercentage()
getCacheHitPercentage in interface CacheMetricspublic long getCacheMisses()
getCacheMisses in interface CacheMetricspublic float getCacheMissPercentage()
getCacheMissPercentage in interface CacheMetricspublic long getCacheGets()
getCacheGets in interface CacheMetricspublic long getCachePuts()
getCachePuts in interface CacheMetricspublic long getCacheRemovals()
getCacheRemovals in interface CacheMetricspublic long getCacheEvictions()
getCacheEvictions in interface CacheMetricspublic float getAverageGetTime()
getAverageGetTime in interface CacheMetricspublic float getAveragePutTime()
getAveragePutTime in interface CacheMetricspublic float getAverageRemoveTime()
getAverageRemoveTime in interface CacheMetricspublic void onRead(boolean isHit)
isHit - Hit or miss flag.public void onWrite()
public void onRemove()
public void onEvict()
public void onTxCommit(long duration)
duration - the time taken in nanoseconds.public void onTxRollback(long duration)
duration - the time taken in nanoseconds.public void addGetTimeNanos(long duration)
duration - the time taken in nanoseconds.public void addPutTimeNanos(long duration)
duration - the time taken in nanoseconds.public void addRemoveTimeNanos(long duration)
duration - the time taken in nanoseconds.public void addRemoveAndGetTimeNanos(long duration)
duration - the time taken in nanoseconds.public void addPutAndGetTimeNanos(long duration)
duration - the time taken in nanoseconds.public String getKeyType()
Cache, if any.getKeyType in interface CacheMetricspublic String getValueType()
Cache, if any.getValueType in interface CacheMetricspublic boolean isReadThrough()
Cache should operate in read-through mode.
The default value is false
isReadThrough in interface CacheMetricstrue when a Cache is in
"read-through" mode.CacheLoaderpublic boolean isWriteThrough()
Cache should operate in "write-through"
mode.
will appropriately cause the configured CacheWriter to be invoked.
The default value is false
isWriteThrough in interface CacheMetricstrue when a Cache is in "write-through" mode.CacheWriterpublic boolean isStoreByValue()
true or storeByReference false.
When true, both keys and values are stored by value.
When false, both keys and values are stored by reference.
Caches stored by reference are capable of mutation by any threads holding
the reference. The effects are:
When a cache is storeByValue, any mutation to the key or value does not affect the key of value stored in the cache.
The default value is true.
isStoreByValue in interface CacheMetricspublic boolean isStatisticsEnabled()
The default value is false.
isStatisticsEnabled in interface CacheMetricspublic boolean isManagementEnabled()
The default value is false.
isManagementEnabled in interface CacheMetrics
Follow @ApacheIgnite
Ignite Fabric : ver. 1.1.0-incubating Release Date : May 20 2015