Return-Path: Delivered-To: apmail-hadoop-common-user-archive@www.apache.org Received: (qmail 47614 invoked from network); 9 Mar 2011 23:37:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Mar 2011 23:37:32 -0000 Received: (qmail 15609 invoked by uid 500); 9 Mar 2011 23:37:29 -0000 Delivered-To: apmail-hadoop-common-user-archive@hadoop.apache.org Received: (qmail 15573 invoked by uid 500); 9 Mar 2011 23:37:29 -0000 Mailing-List: contact common-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-user@hadoop.apache.org Delivered-To: mailing list common-user@hadoop.apache.org Received: (qmail 15563 invoked by uid 99); 9 Mar 2011 23:37:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Mar 2011 23:37:29 +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 (athena.apache.org: local policy) Received: from [69.147.107.20] (HELO mrout1-b.corp.re1.yahoo.com) (69.147.107.20) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Mar 2011 23:37:23 +0000 Received: from pbug.corp.yahoo.com (pbug.corp.yahoo.com [207.126.231.185]) by mrout1-b.corp.re1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id p29NaCEP092914 for ; Wed, 9 Mar 2011 15:36:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=yahoo-inc.com; s=cobra; t=1299713772; bh=8csS3rn6sgbA29u/PHA+TRzQGtGS25IVqPfdweLMNVw=; h=Date:Message-Id:From:Reply-To:To:Subject:In-Reply-To; b=e5NLjelQpJH3nrhec0KbI5eDW8cEMofNuFneKFS+bsMDwmKQRCR7cYOi0LccAFzyt YHUD/rXdk6LYLEZWu3vMnP33BzeKz3YI76deyUCtl7ZYk3vqsZnObE1FZouLgd0Flw qDzDpMeitHRTEAJj+yrrv88jq/jZ53inuFA497Nk= Received: (from roelofs@localhost) by pbug.corp.yahoo.com (8.12.11/8.12.11/Submit) id p29NaCJq010444 for common-user@hadoop.apache.org; Wed, 9 Mar 2011 15:36:12 -0800 Date: Wed, 9 Mar 2011 15:36:12 -0800 Message-Id: <201103092336.p29NaCJq010444@pbug.corp.yahoo.com> From: Greg Roelofs Reply-To: Greg Roelofs To: common-user@hadoop.apache.org Subject: Re: java.io.IOException: Task process exit with nonzero status of 134 In-Reply-To: <4D77C783.4090701@uchicago.edu> Shi Yu wrote: > An unexpected error has been detected by Java Runtime Environment: > # > # SIGFPE (0x8) at pc=0x00002b22eecc7b83, pid=13306, tid=1076017504 > # > # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.6.0-b105 mixed mode) > # Problematic frame: > # C [ld-linux-x86-64.so.2+0x7b83] > # > # An error report file with more information is saved as hs_err_pid13306.log > # > # If you would like to submit a bug report, please visit: > # http://java.sun.com/webapps/bugreport/crash.jsp So it's a 64-bit JVM, and it's invoking a 64-bit ld.so, presumably to load a native library. Is your zlib also 64-bit? I vaguely recall seeing a SIGFPE a while back, but I don't recall what it turned out to be. (Seems unlikely that a 32/64-bit mismatch might cause one, but that's all that comes to mind offhand.) Btw, the zlib codec exists in both native (JNI) and Java forms (well, with the native part buried inside the JDK), so you could also try disabling native support (set io.native.lib.available to false). If it still fails, it's not related to shared libraries. You could also use the bzip2 codec rather than the default one; bzip2 support exists only in Java form for some inexplicable reason. (Perhaps users were blinded by its blazing speed.) Greg