[
https://issues.apache.org/jira/browse/HBASE-8870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Liang Xie updated HBASE-8870:
-----------------------------
Description:
I read here:
{code}
public boolean needsCompaction() {
return (storefiles.size() - filesCompacting.size()) > minFilesToCompact;
}
{code}
imho, it should be
{code}
public boolean needsCompaction() {
return (storefiles.size() - filesCompacting.size()) >= minFilesToCompact;
}
{code}
> Store.needsCompaction() should include minFilesToCompact
> --------------------------------------------------------
>
> Key: HBASE-8870
> URL: https://issues.apache.org/jira/browse/HBASE-8870
> Project: HBase
> Issue Type: Bug
> Components: Compaction
> Reporter: Liang Xie
> Assignee: Liang Xie
> Priority: Minor
>
> I read here:
> {code}
> public boolean needsCompaction() {
> return (storefiles.size() - filesCompacting.size()) > minFilesToCompact;
> }
> {code}
> imho, it should be
> {code}
> public boolean needsCompaction() {
> return (storefiles.size() - filesCompacting.size()) >= minFilesToCompact;
> }
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira