Return-Path: X-Original-To: apmail-hadoop-mapreduce-user-archive@minotaur.apache.org Delivered-To: apmail-hadoop-mapreduce-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D8C5FDE03 for ; Wed, 29 Aug 2012 08:09:06 +0000 (UTC) Received: (qmail 63251 invoked by uid 500); 29 Aug 2012 08:09:02 -0000 Delivered-To: apmail-hadoop-mapreduce-user-archive@hadoop.apache.org Received: (qmail 62649 invoked by uid 500); 29 Aug 2012 08:08:58 -0000 Mailing-List: contact user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hadoop.apache.org Delivered-To: mailing list user@hadoop.apache.org Received: (qmail 62622 invoked by uid 99); 29 Aug 2012 08:08:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2012 08:08:57 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of yhemanth@gmail.com designates 74.125.82.176 as permitted sender) Received: from [74.125.82.176] (HELO mail-we0-f176.google.com) (74.125.82.176) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Aug 2012 08:08:51 +0000 Received: by weyu3 with SMTP id u3so172433wey.35 for ; Wed, 29 Aug 2012 01:08:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Z2qPQeXd16H+uneNGVnCqfnT6n8cNUQk43ZvgunhQy4=; b=EJ4ygJkVdEg7xjmoj5h3Ja4+G9kMH+JYaRc0GPdyTrr2DP1yvYKSIUjglAanpJhBMQ G5JnqPH9PGJ2TVlNvMbPUdSLxJuLnyGwe3EtZQ2vK59nxOycV5GAs1vIG+0T8RVUTcoC +/arwx/t+fe02vumQLdCvaayhOFLhclqNSNb+pJ5swbaG8SUpuz96c+fwIcXfOClcpwv E4i1Y6tEezIUBqznf1PPVJn1PJ+lYzP/dnxxQA0n93wgatIPNelhyko9l5MXpHOcd+Db TeFTPFktn5s8gfdx336GWYwTy/y/csS5YBBRKSf6NvqgiJThx2DEbQkOczcaKgfo7Trc bVng== MIME-Version: 1.0 Received: by 10.180.82.230 with SMTP id l6mr38436483wiy.21.1346227711007; Wed, 29 Aug 2012 01:08:31 -0700 (PDT) Received: by 10.223.76.20 with HTTP; Wed, 29 Aug 2012 01:08:30 -0700 (PDT) In-Reply-To: References: Date: Wed, 29 Aug 2012 13:38:30 +0530 Message-ID: Subject: Re: Job does not run with EOFException From: Hemanth Yamijala To: user@hadoop.apache.org Content-Type: text/plain; charset=ISO-8859-1 Are you able to browse the web UI for the jobtracker. If not configured separately, it should be at hostname:50030 ? It would also help if you can telnet to the jobtracker server port and see if it is able to connect. Thanks hemanth On Tue, Aug 28, 2012 at 7:23 PM, Caetano Sauer wrote: > The host on top of the stack trace contains the host and port I defined on > mapred.job.tracker in mapred-site.xml > > Other than that, I don't know how to verify what you asked me. Any tips? > > > On Tue, Aug 28, 2012 at 3:47 PM, Harsh J wrote: >> >> Are you sure you're reaching the right port for your JobTrcker? >> >> On Tue, Aug 28, 2012 at 7:15 PM, Caetano Sauer >> wrote: >> > Hello, >> > >> > I am getting the following error when trying to execute a hadoop job on >> > a >> > 5-node cluster: >> > >> > Caused by: java.io.IOException: Call to *** failed on local exception: >> > java.io.EOFException >> > at org.apache.hadoop.ipc.Client.wrapException(Client.java:1103) >> > at org.apache.hadoop.ipc.Client.call(Client.java:1071) >> > at org.apache.hadoop.ipc.RPC$Invoker.invoke(RPC.java:225) >> > at org.apache.hadoop.mapred.$Proxy2.submitJob(Unknown Source) >> > at org.apache.hadoop.mapred.JobClient$2.run(JobClient.java:921) >> > at org.apache.hadoop.mapred.JobClient$2.run(JobClient.java:850) >> > at java.security.AccessController.doPrivileged(Native Method) >> > at javax.security.auth.Subject.doAs(Subject.java:396) >> > at >> > >> > org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1093) >> > at >> > org.apache.hadoop.mapred.JobClient.submitJobInternal(JobClient.java:850) >> > at org.apache.hadoop.mapreduce.Job.submit(Job.java:500) >> > at org.apache.hadoop.mapreduce.Job.waitForCompletion(Job.java:530) >> > ... 9 more >> > Caused by: java.io.EOFException >> > at java.io.DataInputStream.readInt(DataInputStream.java:375) >> > at >> > org.apache.hadoop.ipc.Client$Connection.receiveResponse(Client.java:800) >> > at org.apache.hadoop.ipc.Client$Connection.run(Client.java:745) >> > >> > (My jobtracker host was substituted by ***) >> > >> > After 3 hours of searching, everything points to an incompatibility >> > between >> > the hadoop versions of the client and the server, but this is not the >> > case, >> > since I can run the job on a pseudo-distributed setup on a different >> > machine. Both are running the exact same version (same svn revision and >> > source checksum). >> > >> > Does anyone have a solution or a suggestion on how to find more debug >> > information? >> > >> > Thank you in advance, >> > Caetano Sauer >> >> >> >> -- >> Harsh J > >