Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions hbase-common/src/main/resources/hbase-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
7 changes: 5 additions & 2 deletions src/main/asciidoc/_chapters/hbase-default.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down