You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2018/11/15 15:52:55 UTC

hbase git commit: HBASE-21460 correct Document Configurable Bucket Sizes in bucketCache

Repository: hbase
Updated Branches:
  refs/heads/master 130057f13 -> a81987593


HBASE-21460 correct Document Configurable Bucket Sizes in bucketCache

Signed-off-by: tedyu <yu...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/a8198759
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/a8198759
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/a8198759

Branch: refs/heads/master
Commit: a8198759390984bb06701b40d1bbdfb90e251e14
Parents: 130057f
Author: utf7 <ch...@gmail.com>
Authored: Thu Nov 15 23:31:42 2018 +0800
Committer: tedyu <yu...@gmail.com>
Committed: Thu Nov 15 07:52:42 2018 -0800

----------------------------------------------------------------------
 src/main/asciidoc/_chapters/architecture.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/a8198759/src/main/asciidoc/_chapters/architecture.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/_chapters/architecture.adoc b/src/main/asciidoc/_chapters/architecture.adoc
index e1905bc..17e9e13 100644
--- a/src/main/asciidoc/_chapters/architecture.adoc
+++ b/src/main/asciidoc/_chapters/architecture.adoc
@@ -950,14 +950,14 @@ In the above, we set the BucketCache to be 4G.
 We configured the on-heap LruBlockCache have 20% (0.2) of the RegionServer's heap size (0.2 * 5G = 1G). In other words, you configure the L1 LruBlockCache as you would normally (as if there were no L2 cache present).
 
 link:https://issues.apache.org/jira/browse/HBASE-10641[HBASE-10641] introduced the ability to configure multiple sizes for the buckets of the BucketCache, in HBase 0.98 and newer.
-To configurable multiple bucket sizes, configure the new property `hfile.block.cache.sizes` (instead of `hfile.block.cache.size`) to a comma-separated list of block sizes, ordered from smallest to largest, with no spaces.
+To configurable multiple bucket sizes, configure the new property `hbase.bucketcache.bucket.sizes` to a comma-separated list of block sizes, ordered from smallest to largest, with no spaces.
 The goal is to optimize the bucket sizes based on your data access patterns.
 The following example configures buckets of size 4096 and 8192.
 
 [source,xml]
 ----
 <property>
-  <name>hfile.block.cache.sizes</name>
+  <name>hbase.bucketcache.bucket.sizes</name>
   <value>4096,8192</value>
 </property>
 ----