Return-Path: Delivered-To: apmail-hadoop-common-user-archive@www.apache.org Received: (qmail 57038 invoked from network); 30 Mar 2011 19:26:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 30 Mar 2011 19:26:50 -0000 Received: (qmail 18154 invoked by uid 500); 30 Mar 2011 19:26:47 -0000 Delivered-To: apmail-hadoop-common-user-archive@hadoop.apache.org Received: (qmail 18105 invoked by uid 500); 30 Mar 2011 19:26:47 -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 18097 invoked by uid 99); 30 Mar 2011 19:26:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Mar 2011 19:26:47 +0000 X-ASF-Spam-Status: No, hits=2.2 required=5.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of maha@umail.ucsb.edu designates 128.111.151.62 as permitted sender) Received: from [128.111.151.62] (HELO outgoing-2.umail.ucsb.edu) (128.111.151.62) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Mar 2011 19:26:39 +0000 Received: from 169-231-108-237.wireless.ucsb.edu ([169.231.108.237]) by outgoing-2.umail.ucsb.edu with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72) (envelope-from ) id 1Q5121-0003ol-N9 for common-user@hadoop.apache.org; Wed, 30 Mar 2011 12:26:17 -0700 From: maha Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: multipart/alternative; boundary=Apple-Mail-2--1064054858 Subject: Re: Map Tasks re-executing Date: Wed, 30 Mar 2011 12:26:15 -0700 In-Reply-To: <126AA8A7-B541-4A92-BA5D-F5E9D2512646@umail.ucsb.edu> To: common-user@hadoop.apache.org References: <126AA8A7-B541-4A92-BA5D-F5E9D2512646@umail.ucsb.edu> Message-Id: X-Mailer: Apple Mail (2.1084) X-Virus-Scanned: (umail.ucsb.edu) Clam AV found no viruses in this message --Apple-Mail-2--1064054858 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii It's not the sorting, since the sorted files are produced in output, = it's then mapper not existing well. so can anyone tell me if it's wrong = to write mapper.close() function like this ? @Override public void close() throws IOException{ helper.CleanUp(); writer.close(); =09 // SORT PRODUCED OUTPUT try{ Sorter SeqSort =3D new Sorter (hdfs, DocDocWritable.class, IntWritable.class, new Configuration());=20 SeqSort.sort(tempSeq, new = Path("sorted/S"+TaskID.getName())); } catch(Exception e){e.printStackTrace();} return; } and by the way, when it's executed ... it's not part of the "cleanup" = phase that is shown in the UI .. which I think is supposed to be ... = right? Thank you, Maha > Hello, >=20 > My map tasks are freezing after 100% .. I'm suspecting my = mapper.close().=20 >=20 > output is the following: > .... > 11/03/30 08:13:54 INFO mapred.JobClient: map 95% reduce 0% > 11/03/30 08:14:09 INFO mapred.JobClient: map 96% reduce 0% > 11/03/30 08:14:27 INFO mapred.JobClient: map 97% reduce 0% > 11/03/30 08:14:42 INFO mapred.JobClient: map 98% reduce 0% > 11/03/30 08:15:06 INFO mapred.JobClient: map 99% reduce 0% > 11/03/30 08:15:45 INFO mapred.JobClient: map 100% reduce 0% > 11/03/30 08:25:41 INFO mapred.JobClient: map 50% reduce 0% > 11/03/30 08:25:49 INFO mapred.JobClient: Task Id : = attempt_201103291035_0016_m_000001_0, Status : FAILED > Task attempt_201103291035_0016_m_000001_0 failed to report status for = 600 seconds. Killing! > 11/03/30 08:25:50 INFO mapred.JobClient: map 0% reduce 0% > 11/03/30 08:25:52 INFO mapred.JobClient: Task Id : = attempt_201103291035_0016_m_000000_0, Status : FAILED > Task attempt_201103291035_0016_m_000000_0 failed to report status for = 600 seconds. Killing! > 11/03/30 08:26:29 INFO mapred.JobClient: map 1% reduce 0% > 11/03/30 08:26:53 INFO mapred.JobClient: map 2% reduce 0% > 11/03/30 08:27:05 INFO mapred.JobClient: map 3% reduce 0% > 11/03/30 08:27:29 INFO mapred.JobClient: map 4% reduce 0% > 11/03/30 08:27:41 INFO mapred.JobClient: map 5% reduce 0% > ... >=20 > Thank you for any thought, >=20 > Maha >=20 >=20 >=20 --Apple-Mail-2--1064054858--