HBASE-8272 make compaction checker frequency configurable per table/cf; ADDENDUM

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1480003 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
sershe 2013-05-07 18:26:22 +00:00
parent 5c58545787
commit ce04d10251
1 changed files with 11 additions and 0 deletions

View File

@ -1000,4 +1000,15 @@
The default value is 60000ms(60s).
</description>
</property>
<property>
<name>hbase.server.compactchecker.interval.multiplier</name>
<value>1000</value>
<description>
The number that determines how often we scan to see if compaction is necessary.
Normally, compactions are done after some events (such as memstore flush), but if
region didn't receive a lot of writes for some time, or due to different compaction
policies, it may be necessary to check it periodically. The interval between checks is
hbase.server.compactchecker.interval.multiplier multiplied by hbase.server.thread.wakefrequency.
</description>
</property>
</configuration>