HBASE-24555 Correct the description of hbase.hregion.max.filesize (#1895)
Signed-off-by: Wellington Chevreuil <wchevreuil@apache.org>
This commit is contained in:
parent
ea96743dd2
commit
fccd03ffa2
|
@ -768,9 +768,11 @@ possible configurations would overwhelm and obscure the important.
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.hregion.max.filesize</name>
|
<name>hbase.hregion.max.filesize</name>
|
||||||
<value>10737418240</value>
|
<value>10737418240</value>
|
||||||
<description>
|
<description>Maximum file size. If the sum of the sizes of a region's HFiles has
|
||||||
Maximum HFile size. If the sum of the sizes of a region's HFiles has grown to exceed this
|
grown to exceed this value, the region is split in two. There are two choices of
|
||||||
value, the region is split in two.</description>
|
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>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.hregion.split.overallfiles</name>
|
<name>hbase.hregion.split.overallfiles</name>
|
||||||
|
|
|
@ -887,8 +887,11 @@ Time to sleep in between searches for work (in milliseconds).
|
||||||
+
|
+
|
||||||
.Description
|
.Description
|
||||||
|
|
||||||
Maximum HFile size. If the sum of the sizes of a region's HFiles has grown to exceed this
|
Maximum file size. If the sum of the sizes of a region's HFiles has
|
||||||
value, the region is split in two.
|
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
|
.Default
|
||||||
`10737418240`
|
`10737418240`
|
||||||
|
|
Loading…
Reference in New Issue