HBASE-13882 Removed part of the RegionSplitPolicy section in HBase book Signed-off-by: Michael Stack <st...@apache.org>
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/0285cb8c Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0285cb8c Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0285cb8c Branch: refs/heads/master Commit: 0285cb8c4d358713b096b6c76e07a47d20874277 Parents: c7e6054 Author: Jan Hentschel <jan.hentsc...@ultratendency.com> Authored: Sat Feb 18 23:25:06 2017 +0100 Committer: Michael Stack <st...@apache.org> Committed: Wed Feb 22 16:14:13 2017 -0800 ---------------------------------------------------------------------- src/main/asciidoc/_chapters/architecture.adoc | 5 ----- 1 file changed, 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/0285cb8c/src/main/asciidoc/_chapters/architecture.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/_chapters/architecture.adoc b/src/main/asciidoc/_chapters/architecture.adoc index e51cb14..9768c96 100644 --- a/src/main/asciidoc/_chapters/architecture.adoc +++ b/src/main/asciidoc/_chapters/architecture.adoc @@ -1415,11 +1415,6 @@ admin.createTable(tableDesc); hbase> create 'test', {METADATA => {'SPLIT_POLICY' => 'org.apache.hadoop.hbase.regionserver.ConstantSizeRegionSplitPolicy'}},{NAME => 'cf1'} ---- -The default split policy can be overwritten using a custom -link:http://hbase.apache.org/devapidocs/org/apache/hadoop/hbase/regionserver/RegionSplitPolicy.html[RegionSplitPolicy(HBase 0.94+)]. -Typically a custom split policy should extend HBase's default split policy: -link:http://hbase.apache.org/devapidocs/org/apache/hadoop/hbase/regionserver/ConstantSizeRegionSplitPolicy.html[ConstantSizeRegionSplitPolicy]. - The policy can be set globally through the HBaseConfiguration used or on a per table basis: [source,java] ----