You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Tsuyoshi OZAWA (JIRA)" <ji...@apache.org> on 2013/07/03 09:16:21 UTC

[jira] [Updated] (MAPREDUCE-5335) Rename Job Tracker terminology in ShuffleSchedulerImpl

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

Tsuyoshi OZAWA updated MAPREDUCE-5335:
--------------------------------------

    Hadoop Flags: Reviewed
    
> Rename Job Tracker terminology in ShuffleSchedulerImpl
> ------------------------------------------------------
>
>                 Key: MAPREDUCE-5335
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5335
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: applicationmaster
>    Affects Versions: 3.0.0, 2.0.4-alpha
>            Reporter: Devaraj K
>            Assignee: Devaraj K
>         Attachments: MAPREDUCE-5335.patch
>
>
> {code:xml}
> 2013-06-17 17:27:30,134 INFO [fetcher#2] org.apache.hadoop.mapreduce.task.reduce.ShuffleScheduler: Reporting fetch failure for attempt_1371467533091_0005_m_000010_0 to jobtracker.
> {code}
> {code:title=ShuffleSchedulerImpl.java|borderStyle=solid}
>   // Notify the JobTracker
>   // after every read error, if 'reportReadErrorImmediately' is true or
>   // after every 'maxFetchFailuresBeforeReporting' failures
>   private void checkAndInformJobTracker(
>       int failures, TaskAttemptID mapId, boolean readError,
>       boolean connectExcpt) {
>     if (connectExcpt || (reportReadErrorImmediately && readError)
>         || ((failures % maxFetchFailuresBeforeReporting) == 0)) {
>       LOG.info("Reporting fetch failure for " + mapId + " to jobtracker.");
>       status.addFetchFailedMap((org.apache.hadoop.mapred.TaskAttemptID) mapId);
>     }
>   }
>  {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira