You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tez.apache.org by "Siddharth Seth (JIRA)" <ji...@apache.org> on 2014/08/01 04:08:38 UTC

[jira] [Updated] (TEZ-1351) Need to invoke isCommitRequired inside MROutput.commit()

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

Siddharth Seth updated TEZ-1351:
--------------------------------

    Assignee: Bikas Saha  (was: Siddharth Seth)

> Need to invoke isCommitRequired inside MROutput.commit()
> --------------------------------------------------------
>
>                 Key: TEZ-1351
>                 URL: https://issues.apache.org/jira/browse/TEZ-1351
>             Project: Apache Tez
>          Issue Type: Bug
>            Reporter: Daniel Dai
>            Assignee: Bikas Saha
>             Fix For: 0.5.0
>
>
> In MROutput.commit, we need to check isCommitRequired before invoking commitTask.
> Currently we did this check inside Pig:
> {code}
>                 if (fileOutput.isCommitRequired()) {
>                     fileOutput.commit();
>                 }
> {code}
> However, in some loader, output file is generated only after fileOutput.close, which is part of fileOutput.commit. The isCommitRequired check is too early. A walk around is to invoke fileOutput.close before isCommitRequired:
> {code}
>                 fileOutput.close();
>                 if (fileOutput.isCommitRequired()) {
>                     fileOutput.commit();
>                 }
> {code}
> But we are told there is a plan to make MROutput.close private.



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