Ted Yu created HBASE-10417:
------------------------------
Summary: 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
Priority: Minor
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.1.5#6160)