From fccd03ffa26a893afb4aa255b5654c68ec451e24 Mon Sep 17 00:00:00 2001 From: bsglz <18031031@qq.com> Date: Tue, 21 Jul 2020 18:04:42 +0800 Subject: [PATCH] HBASE-24555 Correct the description of hbase.hregion.max.filesize (#1895) Signed-off-by: Wellington Chevreuil --- hbase-common/src/main/resources/hbase-default.xml | 8 +++++--- src/main/asciidoc/_chapters/hbase-default.adoc | 7 +++++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/hbase-common/src/main/resources/hbase-default.xml b/hbase-common/src/main/resources/hbase-default.xml index 23b12bb9c9..f50ed1ca7a 100644 --- a/hbase-common/src/main/resources/hbase-default.xml +++ b/hbase-common/src/main/resources/hbase-default.xml @@ -768,9 +768,11 @@ possible configurations would overwhelm and obscure the important. hbase.hregion.max.filesize 10737418240 - - Maximum HFile size. If the sum of the sizes of a region's HFiles has grown to exceed this - value, the region is split in two. + Maximum file size. If the sum of the sizes of a region's HFiles has + grown to exceed this value, the region is split in two. There are two choices of + how this option works, the first is when any store's size exceed the threshold + then split, and the other is overall region's size exceed the threshold then split, + it can be configed by hbase.hregion.split.overallfiles. hbase.hregion.split.overallfiles diff --git a/src/main/asciidoc/_chapters/hbase-default.adoc b/src/main/asciidoc/_chapters/hbase-default.adoc index c51b6109ac..0a0e4d6c26 100644 --- a/src/main/asciidoc/_chapters/hbase-default.adoc +++ b/src/main/asciidoc/_chapters/hbase-default.adoc @@ -887,8 +887,11 @@ Time to sleep in between searches for work (in milliseconds). + .Description - Maximum HFile size. If the sum of the sizes of a region's HFiles has grown to exceed this - value, the region is split in two. + Maximum file size. If the sum of the sizes of a region's HFiles has + grown to exceed this value, the region is split in two. There are two choices of + how this option works, the first is when any store's size exceed the threshold + then split, and the other is overall region's size exceed the threshold then split, + it can be configed by hbase.hregion.split.overallfiles. + .Default `10737418240` -- 2.11.4.GIT