Return-Path: X-Original-To: apmail-hadoop-common-user-archive@www.apache.org Delivered-To: apmail-hadoop-common-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 89C39D174 for ; Wed, 21 Nov 2012 12:46:21 +0000 (UTC) Received: (qmail 54436 invoked by uid 500); 21 Nov 2012 12:46:16 -0000 Delivered-To: apmail-hadoop-common-user-archive@hadoop.apache.org Received: (qmail 54254 invoked by uid 500); 21 Nov 2012 12:46:16 -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 54216 invoked by uid 99); 21 Nov 2012 12:46:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Nov 2012 12:46:15 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [209.85.223.176] (HELO mail-ie0-f176.google.com) (209.85.223.176) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Nov 2012 12:46:10 +0000 Received: by mail-ie0-f176.google.com with SMTP id 13so4477658iea.35 for ; Wed, 21 Nov 2012 04:45:49 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:x-gm-message-state; bh=05CVIktnH5rr4wR1BN7nIiw3TwLz6d0cXJwzxfi5cLE=; b=cjiK+lhVtUXuKrppSDXBlxa8qY05qqx8KKCbXqWeVUEMFEfO0m92+w6sHlCxL/fs6/ nh1LTPlmsHoJS9rXrIC9RmlDNFuBhGk6QFQeC0j8xFSRAOyp7ETIczbB2E3oXNxI0Wim fTYCDK06pE/Ie3aCOtlPlyTKvLQ1+yRIjc5Nkrqit7D9poP3b+FGM5LvL8G7EHd8zb6B airkNfuSQ4t/0KdMEEe2M26pThOG4uYhSk32iXQeiCYlI5xMSy1TIf/pHZ4bBdlPIoV5 16QSuNS7rGyYovjcmw7z6Rv2WMMldr3G6vtwQ+z9he5/Epbm0kAClpuUXHskzaQq3+y2 VVbg== MIME-Version: 1.0 Received: by 10.43.98.68 with SMTP id cn4mr16804578icc.14.1353501949194; Wed, 21 Nov 2012 04:45:49 -0800 (PST) Received: by 10.64.46.228 with HTTP; Wed, 21 Nov 2012 04:45:49 -0800 (PST) In-Reply-To: References: Date: Wed, 21 Nov 2012 07:45:49 -0500 Message-ID: Subject: Re: reducer not starting From: Jean-Marc Spaggiari To: user@hadoop.apache.org Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQkDInUb+M1Tw5C2Qhll70MI3/TjJaKKZDErFJseOBvDvMvMb00Wd7Xm0TdCuA9CNJrlXIvr X-Virus-Checked: Checked by ClamAV on apache.org Just FYI, you don't need to stop the job, update the host, and retry. Just update the host while the job is running and it should retry and restart. I had a similar issue with one of my node where the hosts file were not updated. After the updated it has automatically resume the work... JM 2012/11/21, praveenesh kumar : > Sometimes its network issue, reducers are not able to find hostnames or IPs > of the other machines. Make sure your /etc/hosts entries and hostnames are > correct. > > Regards, > Praveenesh > > On Tue, Nov 20, 2012 at 10:46 PM, Harsh J wrote: > >> Your mappers are failing (possibly a user-side error or an >> environmental one) and are being reattempted by the framework (default >> behavior, attempts 4 times to avoid transient failure scenario). >> >> Visit your job's logs in the JobTracker web UI, to find more >> information on why your tasks fail. >> >> On Tue, Nov 20, 2012 at 10:22 PM, jamal sasha >> wrote: >> > >> > >> > >> > I am not sure whats happening, but I wrote a simple mapper and reducer >> > script. >> > >> > >> > >> > And I am testing it against a small dataset (like few lines long). >> > >> > >> > >> > For some reason reducer is just not starting.. and mapper is executing >> again >> > and again? >> > >> > >> > >> > 12/11/20 09:21:18 INFO streaming.StreamJob: map 0% reduce 0% >> > >> > 12/11/20 09:22:05 INFO streaming.StreamJob: map 50% reduce 0% >> > >> > 12/11/20 09:22:10 INFO streaming.StreamJob: map 100% reduce 0% >> > >> > 12/11/20 09:32:05 INFO streaming.StreamJob: map 50% reduce 0% >> > >> > 12/11/20 09:32:11 INFO streaming.StreamJob: map 0% reduce 0% >> > >> > 12/11/20 09:32:20 INFO streaming.StreamJob: map 50% reduce 0% >> > >> > 12/11/20 09:32:31 INFO streaming.StreamJob: map 100% reduce 0% >> > >> > 12/11/20 09:42:20 INFO streaming.StreamJob: map 50% reduce 0% >> > >> > 12/11/20 09:42:31 INFO streaming.StreamJob: map 0% reduce 0% >> > >> > 12/11/20 09:42:32 INFO streaming.StreamJob: map 50% reduce 0% >> > >> > 12/11/20 09:42:50 INFO streaming.StreamJob: map 100% reduce 0% >> > >> > >> > >> > >> > >> > Let me know if you want the code also. >> > >> > Any clues of where I am going wrong? >> > >> > Thanks >> > >> > >> > >> > >> > >> > >> >> >> >> -- >> Harsh J >> >