You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ch...@apache.org on 2017/12/18 09:11:58 UTC

hbase git commit: HBASE-13868 Correct "Disable automatic splitting" section in HBase book

Repository: hbase
Updated Branches:
  refs/heads/branch-2 6616a3fd2 -> 379f4fe5a


HBASE-13868 Correct "Disable automatic splitting" section in HBase book


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

Branch: refs/heads/branch-2
Commit: 379f4fe5a052b61712492e085a57acdd46b30ffd
Parents: 6616a3f
Author: Chia-Ping Tsai <ch...@gmail.com>
Authored: Sat Sep 9 05:46:38 2017 +0800
Committer: Chia-Ping Tsai <ch...@gmail.com>
Committed: Mon Dec 18 17:10:30 2017 +0800

----------------------------------------------------------------------
 src/main/asciidoc/_chapters/configuration.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/379f4fe5/src/main/asciidoc/_chapters/configuration.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/_chapters/configuration.adoc b/src/main/asciidoc/_chapters/configuration.adoc
index 6757f81..125beca 100644
--- a/src/main/asciidoc/_chapters/configuration.adoc
+++ b/src/main/asciidoc/_chapters/configuration.adoc
@@ -790,7 +790,7 @@ Manual splitting can mitigate region creation and movement under load.
 It also makes it so region boundaries are known and invariant (if you disable region splitting). If you use manual splits, it is easier doing staggered, time-based major compactions to spread out your network IO load.
 
 .Disable Automatic Splitting
-To disable automatic splitting, set `hbase.hregion.max.filesize` to a very large value, such as `100 GB` It is not recommended to set it to its absolute maximum value of `Long.MAX_VALUE`.
+To disable automatic splitting, you can set region split policy in either cluster configuration or table configuration to be `org.apache.hadoop.hbase.regionserver.DisabledRegionSplitPolicy`
 
 .Automatic Splitting Is Recommended
 [NOTE]