You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Gustavo Anatoly (JIRA)" <ji...@apache.org> on 2014/05/22 16:49:02 UTC

[jira] [Updated] (HBASE-11235) Backport fix for HBASE-11212 - Fix increment index in KeyValueSortReducer

     [ https://issues.apache.org/jira/browse/HBASE-11235?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gustavo Anatoly updated HBASE-11235:
------------------------------------

    Description: 
Fix increment index reported on : [https://issues.apache.org/jira/browse/HBASE-11212] 

{code}
 int index = 0;
    for (KeyValue kv: map) {
      context.write(row, kv);
      if (index > 0 && index % 100 == 0) context.setStatus("Wrote " + index);
    }
{code}


  was:
Fix increment index reported on to version 0.94: [https://issues.apache.org/jira/browse/HBASE-11212] 

{code}
 int index = 0;
    for (KeyValue kv: map) {
      context.write(row, kv);
      if (index > 0 && index % 100 == 0) context.setStatus("Wrote " + index);
    }
{code}




> Backport fix for HBASE-11212 - Fix increment index in KeyValueSortReducer
> -------------------------------------------------------------------------
>
>                 Key: HBASE-11235
>                 URL: https://issues.apache.org/jira/browse/HBASE-11235
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Gustavo Anatoly
>            Assignee: Gustavo Anatoly
>            Priority: Minor
>             Fix For: 0.94.20
>
>
> Fix increment index reported on : [https://issues.apache.org/jira/browse/HBASE-11212] 
> {code}
>  int index = 0;
>     for (KeyValue kv: map) {
>       context.write(row, kv);
>       if (index > 0 && index % 100 == 0) context.setStatus("Wrote " + index);
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)