Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 69979 invoked from network); 21 Jan 2009 05:24:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Jan 2009 05:24:25 -0000 Received: (qmail 95918 invoked by uid 500); 21 Jan 2009 05:24:22 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 95909 invoked by uid 500); 21 Jan 2009 05:24:22 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 95898 invoked by uid 99); 21 Jan 2009 05:24:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jan 2009 21:24:22 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Jan 2009 05:24:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B4BE3234C4AD for ; Tue, 20 Jan 2009 21:23:59 -0800 (PST) Message-ID: <594225510.1232515439739.JavaMail.jira@brutus> Date: Tue, 20 Jan 2009 21:23:59 -0800 (PST) From: "Jothi Padmanabhan (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Commented: (HADOOP-3327) Shuffling fetchers waited too long between map output fetch re-tries In-Reply-To: <1892736595.1209577915508.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-3327?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12665705#action_12665705 ] Jothi Padmanabhan commented on HADOOP-3327: ------------------------------------------- Looks good. A few points * Some comments on the changes in the code would be good. * The percentages that we use to decide maxNotifications and fetchRetriesPerMap should be configurable? * Since fetchRetriesPerMap is computed during every iteration as per the current copiedMapOutputs.size, it is possible that we might delay a notification to the JT by one failure. For example, consider maxFetchRetriesPerMap = 5 and numRetries=4. During the next failure numRetries = 5, and let us say we cross the threshold and reset fetchRetriesperMap = 2 (5/2). As per the existing logic, we would have sent a notification as numRetires = maxFetchRetriesPerMap. But with the new logic, we will wait as 5%2 != 0. But this is a corner case and probably can be overlooked. > Shuffling fetchers waited too long between map output fetch re-tries > -------------------------------------------------------------------- > > Key: HADOOP-3327 > URL: https://issues.apache.org/jira/browse/HADOOP-3327 > Project: Hadoop Core > Issue Type: Bug > Components: mapred > Reporter: Runping Qi > Assignee: Amareshwari Sriramadasu > Fix For: 0.21.0 > > Attachments: hadoop-3327-v1.patch, hadoop-3327-v2.patch, hadoop-3327-v3.patch, hadoop-3327.patch, patch-3327.txt > > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.