[
https://issues.apache.org/jira/browse/HBASE-10417?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14004690#comment-14004690
]
Ted Yu commented on HBASE-10417:
--------------------------------
The problem is in 0.94 as well.
Opened HBASE-11225 for backport.
> index is not incremented in PutSortReducer#reduce()
> ---------------------------------------------------
>
> Key: HBASE-10417
> URL: https://issues.apache.org/jira/browse/HBASE-10417
> Project: HBase
> Issue Type: Bug
> Reporter: Ted Yu
> Assignee: Gustavo Anatoly
> Priority: Minor
> Fix For: 0.99.0, 0.98.3
>
> Attachments: HBASE-10417.patch
>
>
> Starting at line 76:
> {code}
> int index = 0;
> for (KeyValue kv : map) {
> context.write(row, kv);
> if (index > 0 && index % 100 == 0)
> context.setStatus("Wrote " + index);
> {code}
> index is a variable inside while loop that is never incremented.
> The condition "index > 0" cannot be true.
--
This message was sent by Atlassian JIRA
(v6.2#6252)