HBASE-1729 Move cache stats out of RS log and into metrics

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@979834 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-07-27 19:59:01 +00:00
parent 24ced568ac
commit 5215e49df0
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class LruBlockCache implements BlockCache, HeapSize {
static final float DEFAULT_MEMORY_FACTOR = 0.25f; static final float DEFAULT_MEMORY_FACTOR = 0.25f;
/** Statistics thread */ /** Statistics thread */
static final int statThreadPeriod = 60; static final int statThreadPeriod = 60 * 5;
/** Concurrent map (the cache) */ /** Concurrent map (the cache) */
private final ConcurrentHashMap<String,CachedBlock> map; private final ConcurrentHashMap<String,CachedBlock> map;