diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/package-info.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/package-info.java index be063f4584d..74d2603f579 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/package-info.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/package-info.java @@ -53,7 +53,8 @@ * Caching * in Apache HBase: SlabCache.To enable it, * set the float hbase.offheapcache.percentage - * ({@link CacheConfig#SLAB_CACHE_OFFHEAP_PERCENTAGE_KEY}) to some value between 0 and 1 in + * ({@link org.apache.hadoop.hbase.io.hfile.CacheConfig#SLAB_CACHE_OFFHEAP_PERCENTAGE_KEY}) to some + * value between 0 and 1 in * your hbase-site.xml file. This * enables {@link org.apache.hadoop.hbase.io.hfile.DoubleBlockCache}, a facade over * {@link org.apache.hadoop.hbase.io.hfile.LruBlockCache} and @@ -66,7 +67,8 @@ * multiplied by whatever the setting for -XX:MaxDirectMemorySize is in * your hbase-env.sh configuration file and this is what * will be used by {@link org.apache.hadoop.hbase.io.hfile.slab.SlabCache} as its offheap store. - * Onheap store will be whatever the float {@link HConstants#HFILE_BLOCK_CACHE_SIZE_KEY} setting is + * Onheap store will be whatever the float + * {@link org.apache.hadoop.hbase.HConstants#HFILE_BLOCK_CACHE_SIZE_KEY} setting is * (some value between 0 and 1) times the size of the allocated java heap. * *

Restart (or rolling restart) your cluster for the configs to take effect. Check logs to @@ -90,7 +92,8 @@ * as a strict L2 cache to the L1 LruBlockCache (i.e. on eviction from L1, blocks go to L2), set * {@link org.apache.hadoop.hbase.io.hfile.CacheConfig#BUCKET_CACHE_COMBINED_KEY} to false. * Also by default, unless you change it, - * {@link CacheConfig#BUCKET_CACHE_COMBINED_PERCENTAGE_KEY} defaults to 0.9 (see + * {@link org.apache.hadoop.hbase.io.hfile.CacheConfig#BUCKET_CACHE_COMBINED_PERCENTAGE_KEY} + * defaults to 0.9 (see * the top of the CacheConfig in the BucketCache defaults section). This means that whatever * size you set for the bucket cache with * {@link org.apache.hadoop.hbase.io.hfile.CacheConfig#BUCKET_CACHE_SIZE_KEY},