diff --git a/hbase-external-blockcache/src/main/java/org/apache/hadoop/hbase/io/hfile/MemcachedBlockCache.java b/hbase-external-blockcache/src/main/java/org/apache/hadoop/hbase/io/hfile/MemcachedBlockCache.java index e74176080be..965bcbe9278 100644 --- a/hbase-external-blockcache/src/main/java/org/apache/hadoop/hbase/io/hfile/MemcachedBlockCache.java +++ b/hbase-external-blockcache/src/main/java/org/apache/hadoop/hbase/io/hfile/MemcachedBlockCache.java @@ -208,11 +208,21 @@ public class MemcachedBlockCache implements BlockCache { return 0; } + @Override + public long getCurrentDataSize() { + return 0; + } + @Override public long getBlockCount() { return 0; } + @Override + public long getDataBlockCount() { + return 0; + } + @Override public Iterator iterator() { return new Iterator() { diff --git a/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/regionserver/BlockCacheTmpl.jamon b/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/regionserver/BlockCacheTmpl.jamon index daa5d76877e..3afd4f9b86a 100644 --- a/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/regionserver/BlockCacheTmpl.jamon +++ b/hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/regionserver/BlockCacheTmpl.jamon @@ -327,25 +327,25 @@ are combined counts. Request count is sum of hits and misses.

Count - <% String.format("%,d", cbsbf.getCount()) %> + <% String.format("%,d", bc.getBlockCount()) %> Count of Blocks <%if !bucketCache %> Count - <% String.format("%,d", cbsbf.getDataCount()) %> + <% String.format("%,d", bc.getDataBlockCount()) %> Count of DATA Blocks Size - <% TraditionalBinaryPrefix.long2String(cbsbf.getSize(), "B", 1) %> + <% TraditionalBinaryPrefix.long2String(bc.getCurrentSize(), "B", 1) %> Size of Blocks <%if !bucketCache %> Size - <% TraditionalBinaryPrefix.long2String(cbsbf.getDataSize(), "B", 1) %> + <% TraditionalBinaryPrefix.long2String(bc.getCurrentDataSize(), "B", 1) %> Size of DATA Blocks diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/BlockCache.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/BlockCache.java index cef7e02d45a..3674033eb68 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/BlockCache.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/BlockCache.java @@ -102,11 +102,23 @@ public interface BlockCache extends Iterable { */ long getCurrentSize(); + /** + * Returns the occupied size of data blocks, in bytes. + * @return occupied space in cache, in bytes + */ + long getCurrentDataSize(); + /** * Returns the number of blocks currently cached in the block cache. * @return number of blocks in the cache */ long getBlockCount(); + + /** + * Returns the number of data blocks currently cached in the block cache. + * @return number of blocks in the cache + */ + long getDataBlockCount(); /** * @return Iterator over the blocks in the cache. diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/CombinedBlockCache.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/CombinedBlockCache.java index 3efd3fe784d..abccdfc24dc 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/CombinedBlockCache.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/CombinedBlockCache.java @@ -113,6 +113,11 @@ public class CombinedBlockCache implements ResizableBlockCache, HeapSize { return lruCache.size() + l2Cache.size(); } + @Override + public long getCurrentDataSize() { + return lruCache.getCurrentDataSize() + l2Cache.getCurrentDataSize(); + } + @Override public long getFreeSize() { return lruCache.getFreeSize() + l2Cache.getFreeSize(); @@ -128,6 +133,11 @@ public class CombinedBlockCache implements ResizableBlockCache, HeapSize { return lruCache.getBlockCount() + l2Cache.getBlockCount(); } + @Override + public long getDataBlockCount() { + return lruCache.getDataBlockCount() + l2Cache.getDataBlockCount(); + } + public static class CombinedCacheStats extends CacheStats { private final CacheStats lruCacheStats; private final CacheStats bucketCacheStats; diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java index dbb0d4994c4..ad81c50c799 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/LruBlockCache.java @@ -177,9 +177,15 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { /** Current size of cache */ private final AtomicLong size; + /** Current size of data blocks */ + private final AtomicLong dataBlockSize; + /** Current number of cached elements */ private final AtomicLong elements; + /** Current number of cached data block elements */ + private final AtomicLong dataBlockElements; + /** Cache access count (sequential ID) */ private final AtomicLong count; @@ -315,6 +321,8 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { this.stats = new CacheStats(this.getClass().getSimpleName()); this.count = new AtomicLong(0); this.elements = new AtomicLong(0); + this.dataBlockElements = new AtomicLong(0); + this.dataBlockSize = new AtomicLong(0); this.overhead = calculateOverhead(maxSize, blockSize, mapConcurrencyLevel); this.size = new AtomicLong(this.overhead); this.hardCapacityLimitFactor = hardLimitFactor; @@ -400,6 +408,9 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { long newSize = updateSizeMetrics(cb, false); map.put(cacheKey, cb); long val = elements.incrementAndGet(); + if (buf.getBlockType().isData()) { + dataBlockElements.incrementAndGet(); + } if (LOG.isTraceEnabled()) { long size = map.size(); assertCounterSanity(size, val); @@ -455,9 +466,13 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { */ private long updateSizeMetrics(LruCachedBlock cb, boolean evict) { long heapsize = cb.heapSize(); + BlockType bt = cb.getBuffer().getBlockType(); if (evict) { heapsize *= -1; } + if (bt != null && bt.isData()) { + dataBlockSize.addAndGet(heapsize); + } return size.addAndGet(heapsize); } @@ -562,6 +577,9 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { long size = map.size(); assertCounterSanity(size, val); } + if (block.getBuffer().getBlockType().isData()) { + dataBlockElements.decrementAndGet(); + } if (evictedByEvictionProcess) { // When the eviction of the block happened because of invalidation of HFiles, no need to // update the stats counter. @@ -831,6 +849,11 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { return this.size.get(); } + @Override + public long getCurrentDataSize() { + return this.dataBlockSize.get(); + } + @Override public long getFreeSize() { return getMaxSize() - getCurrentSize(); @@ -846,6 +869,11 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { return this.elements.get(); } + @Override + public long getDataBlockCount() { + return this.dataBlockElements.get(); + } + EvictionThread getEvictionThread() { return this.evictionThread; } @@ -959,7 +987,7 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize { } public final static long CACHE_FIXED_OVERHEAD = ClassSize.align( - (4 * Bytes.SIZEOF_LONG) + (9 * ClassSize.REFERENCE) + + (4 * Bytes.SIZEOF_LONG) + (11 * ClassSize.REFERENCE) + (6 * Bytes.SIZEOF_FLOAT) + (2 * Bytes.SIZEOF_BOOLEAN) + ClassSize.OBJECT); diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.java index 79b1f4d7cb6..939d53a903e 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.java @@ -1189,6 +1189,11 @@ public class BucketCache implements BlockCache, HeapSize { return this.realCacheSize.get(); } + @Override + public long getCurrentDataSize() { + return size(); + } + @Override public long getFreeSize() { return this.bucketAllocator.getFreeSize(); @@ -1199,6 +1204,11 @@ public class BucketCache implements BlockCache, HeapSize { return this.blockNumber.get(); } + @Override + public long getDataBlockCount() { + return getBlockCount(); + } + @Override public long getCurrentSize() { return this.bucketAllocator.getUsedSize(); diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestHeapMemoryManager.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestHeapMemoryManager.java index e1a8d5fb644..0840ac5027c 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestHeapMemoryManager.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestHeapMemoryManager.java @@ -747,11 +747,21 @@ public class TestHeapMemoryManager { return this.testBlockSize; } + @Override + public long getCurrentDataSize() { + return 0; + } + @Override public long getBlockCount() { return 0; } + @Override + public long getDataBlockCount() { + return 0; + } + @Override public void setMaxSize(long size) { this.maxSize = size;