Return-Path: X-Original-To: apmail-hadoop-common-dev-archive@www.apache.org Delivered-To: apmail-hadoop-common-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BCA172734 for ; Tue, 3 May 2011 07:56:53 +0000 (UTC) Received: (qmail 23004 invoked by uid 500); 3 May 2011 07:56:52 -0000 Delivered-To: apmail-hadoop-common-dev-archive@hadoop.apache.org Received: (qmail 22923 invoked by uid 500); 3 May 2011 07:56:52 -0000 Mailing-List: contact common-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-dev@hadoop.apache.org Received: (qmail 22910 invoked by uid 99); 3 May 2011 07:56:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 May 2011 07:56:51 +0000 X-ASF-Spam-Status: No, hits=0.7 required=5.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [216.145.54.172] (HELO mrout2.yahoo.com) (216.145.54.172) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 May 2011 07:56:45 +0000 Received: from [10.0.1.8] (snvvpn4-10-72-168-c56.hq.corp.yahoo.com [10.72.168.56]) by mrout2.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id p437uA4m003106; Tue, 3 May 2011 00:56:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=yahoo-inc.com; s=cobra; t=1304409370; bh=ADksClGB3vrRwECPJwwQAV7wA9Gh/XkIJ5N6t2FrllE=; h=Message-Id:From:To:In-Reply-To:Content-Type: Content-Transfer-Encoding:Subject:Mime-Version:Date:References; b=U2N3FLfBV+aVpQaSp3dIIpMTLsYWtVaMJpMW9OG4dUFJDE9xu/ezikpuCERZHKsFJ umdX0Pns/c87grJ7xN+svGTR7tuadzANauWvwKgLJIL8D6omM8WogeL8VA6f5NEUQn ec2I5LqAaglVj7qRaASMP2SXEjkoMI2IZcvaewVg= Message-Id: <08FFFFF1-1FFB-460C-9FAB-C009E1CF4EF6@yahoo-inc.com> From: Arun C Murthy To: mapreduce-dev@hadoop.apache.org In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Subject: Re: Mapreduce program reports child error Mime-Version: 1.0 (Apple Message framework v936) Date: Tue, 3 May 2011 00:56:10 -0700 References: X-Mailer: Apple Mail (2.936) X-Virus-Checked: Checked by ClamAV on apache.org Moving to mapreduce-dev@, please use the right list for questions. On May 3, 2011, at 12:06 AM, Sudharsan Sampath wrote: > > Hi, > > Could anyone point me to a summary on why this error would occur? > > java.lang.Throwable: Child Error > at org.apache.hadoop.mapred.TaskRunner.run(TaskRunner.java:471) > Caused by: java.io.IOException: Task process exit with nonzero > status of 1. > at org.apache.hadoop.mapred.TaskRunner.run(TaskRunner.java:458) > > I know of the following two reasons. > > 1) Insufficient space in the logs directory > 2) ulimit threshold that causes insuffucient allocation of memory. > Some more (not a comprehensive list): a) Task has OOM b) TT, while monitoring the task, realizes it has used more memory than allowed and kills it. c) Task can't write it's temp outputs to local disk (either map- outputs or intermediate merges during map-side sort or reduce-side shuffle). ... Arun