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/09/09 07:03:46 UTC

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

Repository: hbase
Updated Branches:
  refs/heads/master 78d9b7ffa -> d22a05084


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/d22a0508
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/d22a0508
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/d22a0508

Branch: refs/heads/master
Commit: d22a05084ae18bdf27471e6d59d86f51c9d8721c
Parents: 78d9b7f
Author: Chia-Ping Tsai <ch...@gmail.com>
Authored: Sat Sep 9 05:46:38 2017 +0800
Committer: Chia-Ping Tsai <ch...@gmail.com>
Committed: Sat Sep 9 15:00:22 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/d22a0508/src/main/asciidoc/_chapters/configuration.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/_chapters/configuration.adoc b/src/main/asciidoc/_chapters/configuration.adoc
index 23d1f8f..423ee6b 100644
--- a/src/main/asciidoc/_chapters/configuration.adoc
+++ b/src/main/asciidoc/_chapters/configuration.adoc
@@ -788,7 +788,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]