Return-Path: X-Original-To: apmail-hadoop-mapreduce-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-mapreduce-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DA2BFCD48 for ; Wed, 3 Jul 2013 07:16:30 +0000 (UTC) Received: (qmail 19336 invoked by uid 500); 3 Jul 2013 07:16:25 -0000 Delivered-To: apmail-hadoop-mapreduce-issues-archive@hadoop.apache.org Received: (qmail 19176 invoked by uid 500); 3 Jul 2013 07:16:22 -0000 Mailing-List: contact mapreduce-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-issues@hadoop.apache.org Delivered-To: mailing list mapreduce-issues@hadoop.apache.org Received: (qmail 19149 invoked by uid 99); 3 Jul 2013 07:16:21 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Jul 2013 07:16:21 +0000 Date: Wed, 3 Jul 2013 07:16:21 +0000 (UTC) From: "Tsuyoshi OZAWA (JIRA)" To: mapreduce-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (MAPREDUCE-5335) Rename Job Tracker terminology in ShuffleSchedulerImpl MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ 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