Ted Yu created HBASE-11225: ------------------------------ Summary: Backport fix for HBASE-10417 'index is not incremented in PutSortReducer#reduce()' Key: HBASE-11225 URL: https://issues.apache.org/jira/browse/HBASE-11225 Project: HBase Issue Type: Bug Reporter: Ted Yu Priority: Minor Fix For: 0.94.20
The problem reported in HBASE-10417 exists in 0.94 code base. {code} for (KeyValue kv : map) { context.write(row, kv); if (index > 0 && index % 100 == 0) context.setStatus("Wrote " + index); } {code} This JIRA backports the fix to 0.94. -- This message was sent by Atlassian JIRA (v6.2#6252)