[
https://issues.apache.org/jira/browse/HBASE-8870?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13708076#comment-13708076
]
Liang Xie commented on HBASE-8870:
----------------------------------
attached v2, in deed, the failure was caused by the compaction checker chore
which running every 1s during case, then the latch will never be countdown:) we
can just sleep 1s, give a chance to that chore to complete.
> Store.needsCompaction() should include minFilesToCompact
> --------------------------------------------------------
>
> Key: HBASE-8870
> URL: https://issues.apache.org/jira/browse/HBASE-8870
> Project: HBase
> Issue Type: Bug
> Components: Compaction
> Affects Versions: 0.95.1
> Reporter: Liang Xie
> Assignee: Liang Xie
> Priority: Minor
> Attachments: HBASE-8870.txt, HBASE-8870.txt, HBase-8870-v2.txt
>
>
> 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