[
https://issues.apache.org/jira/browse/HBASE-3241?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Kannan Muthukkaruppan updated HBASE-3241:
-----------------------------------------
Attachment: HBASE-3239-and-3241.txt
Supplied patch addresses both this issue and HBASE-3239.
> check to see if we exceeded hbase.regionserver.maxlogs limit is incorrect
> -------------------------------------------------------------------------
>
> Key: HBASE-3241
> URL: https://issues.apache.org/jira/browse/HBASE-3241
> Project: HBase
> Issue Type: Bug
> Affects Versions: 0.90.0
> Reporter: Kannan Muthukkaruppan
> Assignee: Kannan Muthukkaruppan
> Priority: Blocker
> Fix For: 0.90.0
>
> Attachments: HBASE-3239-and-3241.txt
>
>
> In HLog.java:cleanOldLogs(), the number of logs left after archiving of old
> logs is computed as:
> {code}
> int logCount = this.outputfiles.size() - logsToRemove;
> {code}
> However, the archival itself already removes the files that were archived
> from the "this.outputfiles" map.
> So shouldn't the above logic simply be the following?
> {code}
> int logCount = this.outputfiles.size();
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.