HBASE-23832 Old config hbase.hstore.compactionThreshold is ignored (#1698)

Signed-off-by Anoop Sam John <anoopsamjohn@apache.org>
This commit is contained in:
Sambit Mohapatra 2020-05-12 10:50:48 -07:00 committed by Anoop Sam John
parent 1414146770
commit 3276e95f8d
1 changed files with 4 additions and 3 deletions

View File

@ -806,14 +806,15 @@ possible configurations would overwhelm and obscure the important.
</property>
<property>
<name>hbase.hstore.compaction.min</name>
<value>3</value>
<value></value>
<description>The minimum number of StoreFiles which must be eligible for compaction before
compaction can run. The goal of tuning hbase.hstore.compaction.min is to avoid ending up with
too many tiny StoreFiles to compact. Setting this value to 2 would cause a minor compaction
each time you have two StoreFiles in a Store, and this is probably not appropriate. If you
set this value too high, all the other values will need to be adjusted accordingly. For most
cases, the default value is appropriate. In previous versions of HBase, the parameter
hbase.hstore.compaction.min was named hbase.hstore.compactionThreshold.</description>
cases, the default value is appropriate (empty value here, results in 3 by code logic). In
previous versions of HBase, the parameter hbase.hstore.compaction.min was named
hbase.hstore.compactionThreshold.</description>
</property>
<property>
<name>hbase.hstore.compaction.max</name>