HBASE-23832 Old config hbase.hstore.compactionThreshold is ignored

Signed-off-by Anoop Sam John <anoopsamjohn@apache.org>
This commit is contained in:
Sambit Mohapatra 2020-05-12 10:49:32 -07:00 committed by GitHub
parent 9e73244082
commit c4e892e3f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -824,14 +824,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>