Return-Path: Delivered-To: apmail-hadoop-mapreduce-issues-archive@minotaur.apache.org Received: (qmail 70772 invoked from network); 21 May 2010 09:17:39 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 21 May 2010 09:17:39 -0000 Received: (qmail 4951 invoked by uid 500); 21 May 2010 09:17:39 -0000 Delivered-To: apmail-hadoop-mapreduce-issues-archive@hadoop.apache.org Received: (qmail 4921 invoked by uid 500); 21 May 2010 09:17:39 -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 4913 invoked by uid 99); 21 May 2010 09:17:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 May 2010 09:17:38 +0000 X-ASF-Spam-Status: No, hits=-1451.5 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 May 2010 09:17:38 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o4L9HHYk010964 for ; Fri, 21 May 2010 09:17:18 GMT Message-ID: <10642582.15021274433437562.JavaMail.jira@thor> Date: Fri, 21 May 2010 05:17:17 -0400 (EDT) From: "Chris Douglas (JIRA)" To: mapreduce-issues@hadoop.apache.org Subject: [jira] Updated: (MAPREDUCE-1073) Progress reported for pipes tasks is incorrect. In-Reply-To: <818315960.1254904111505.JavaMail.jira@brutus> 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-1073?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Douglas updated MAPREDUCE-1073: ------------------------------------- Status: Open (was: Patch Available) > Progress reported for pipes tasks is incorrect. > ----------------------------------------------- > > Key: MAPREDUCE-1073 > URL: https://issues.apache.org/jira/browse/MAPREDUCE-1073 > Project: Hadoop Map/Reduce > Issue Type: Bug > Components: pipes > Affects Versions: 0.20.1 > Reporter: Sreekanth Ramakrishnan > Attachments: mapreduce-1073--2010-03-31.patch, mapreduce-1073--2010-04-06.patch, MAPREDUCE-1073_yhadoop20.patch > > > Currently in pipes, {{org.apache.hadoop.mapred.pipes.PipesMapRunner.run(RecordReader, OutputCollector, Reporter)}} we do the following: > {code} > while (input.next(key, value)) { > downlink.mapItem(key, value); > if(skipping) { > downlink.flush(); > } > } > {code} > This would result in consumption of all the records for current task and taking task progress to 100% whereas the actual pipes application would be trailing behind. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.