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

This commit is contained in:
Chia-Ping Tsai 2017-09-09 05:46:38 +08:00
parent 78d9b7ffad
commit d22a05084a
1 changed files with 1 additions and 1 deletions

View File

@ -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]