HBASE-13868 Correct "Disable automatic splitting" section in HBase book
This commit is contained in:
parent
78d9b7ffad
commit
d22a05084a
|
@ -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.
|
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
|
.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
|
.Automatic Splitting Is Recommended
|
||||||
[NOTE]
|
[NOTE]
|
||||||
|
|
Loading…
Reference in New Issue