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>
|
||||
<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>
|
||||
|
|
|
@ -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`
|
||||
|
|
Loading…
Reference in New Issue