Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 63827 invoked from network); 6 Aug 2008 10:29:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Aug 2008 10:29:09 -0000 Received: (qmail 44207 invoked by uid 500); 6 Aug 2008 10:29:06 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 44076 invoked by uid 500); 6 Aug 2008 10:29:04 -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 44065 invoked by uid 99); 6 Aug 2008 10:29:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2008 03:29:04 -0700 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, 06 Aug 2008 10:28:17 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 882C8234C18B for ; Wed, 6 Aug 2008 03:28:44 -0700 (PDT) Message-ID: <599589037.1218018524543.JavaMail.jira@brutus> Date: Wed, 6 Aug 2008 03:28:44 -0700 (PDT) From: "Sharad Agarwal (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Updated: (HADOOP-153) skip records that fail Task 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-153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sharad Agarwal updated HADOOP-153: ---------------------------------- Attachment: 153_7.patch cleaned up Test classes. Removed redundant test cases. other minor clean up/better variable names. > skip records that fail Task > --------------------------- > > Key: HADOOP-153 > URL: https://issues.apache.org/jira/browse/HADOOP-153 > Project: Hadoop Core > Issue Type: New Feature > Components: mapred > Affects Versions: 0.2.0 > Reporter: Doug Cutting > Assignee: Sharad Agarwal > Fix For: 0.19.0 > > Attachments: 153_1.patch, 153_2.patch, 153_3.patch, 153_4.patch, 153_5.patch, 153_6.patch, 153_7.patch, skipRecords_wip1.patch > > > MapReduce should skip records that throw exceptions. > If the exception is thrown under RecordReader.next() then RecordReader implementations should automatically skip to the start of a subsequent record. > Exceptions in map and reduce implementations can simply be logged, unless they happen under RecordWriter.write(). Cancelling partial output could be hard. So such output errors will still result in task failure. > This behaviour should be optional, but enabled by default. A count of errors per task and job should be maintained and displayed in the web ui. Perhaps if some percentage of records (>50%?) result in exceptions then the task should fail. This would stop jobs early that are misconfigured or have buggy code. > Thoughts? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.