You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tez.apache.org by "Tsuyoshi Ozawa (JIRA)" <ji...@apache.org> on 2015/07/08 18:59:06 UTC

[jira] [Updated] (TEZ-2608) UnorderedPartitionedKVWriter should override write(Object key, Iterable values)
     [ https://issues.apache.org/jira/browse/TEZ-2608?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tsuyoshi Ozawa updated TEZ-2608:
--------------------------------
    Attachment: TEZ-2608.001.patch

Attaching a first patch.


> UnorderedPartitionedKVWriter should override write(Object key, Iterable<Object> values) 
> ----------------------------------------------------------------------------------------
>
>                 Key: TEZ-2608
>                 URL: https://issues.apache.org/jira/browse/TEZ-2608
>             Project: Apache Tez
>          Issue Type: Bug
>            Reporter: Tsuyoshi Ozawa
>            Assignee: Tsuyoshi Ozawa
>         Attachments: TEZ-2608.001.patch
>
>
> From BaseUnorderedPartitionedKVWriter:
> {code}
>   @Override
>   public void write(Object key, Iterable<Object> values) throws IOException {
>     //TODO: UnorderedPartitionedKVWriter should override this method later.
>     Iterator<Object> it = values.iterator();
>     while(it.hasNext()) {
>       write(key, it.next());
>     }
>   }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)