HBASE-24555 Correct the description of hbase.hregion.max.filesize (#1895)

Signed-off-by: Wellington Chevreuil <wchevreuil@apache.org>
This commit is contained in:
bsglz 2020-07-21 18:04:42 +08:00 committed by GitHub
parent ea96743dd2
commit fccd03ffa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 5 deletions

View File

@ -768,9 +768,11 @@ possible configurations would overwhelm and obscure the important.
<property>
<name>hbase.hregion.max.filesize</name>
<value>10737418240</value>
<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.</description>
<description>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.</description>
</property>
<property>
<name>hbase.hregion.split.overallfiles</name>

View File

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