Return-Path: Delivered-To: apmail-hadoop-common-user-archive@www.apache.org Received: (qmail 5891 invoked from network); 2 Feb 2011 21:24:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Feb 2011 21:24:28 -0000 Received: (qmail 15382 invoked by uid 500); 2 Feb 2011 21:24:25 -0000 Delivered-To: apmail-hadoop-common-user-archive@hadoop.apache.org Received: (qmail 15336 invoked by uid 500); 2 Feb 2011 21:24:25 -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 15326 invoked by uid 99); 2 Feb 2011 21:24:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Feb 2011 21:24:24 +0000 X-ASF-Spam-Status: No, hits=1.1 required=5.0 tests=NO_RDNS_DOTCOM_HELO,RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.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, 02 Feb 2011 21:24:17 +0000 Received: from SP2-EX07CAS03.ds.corp.yahoo.com (sp2-ex07cas03.corp.sp2.yahoo.com [98.137.59.35]) by mrout1-b.corp.re1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id p12LNaFg074071 for ; Wed, 2 Feb 2011 13:23:36 -0800 (PST) Received: from SP2-EX07VS02.ds.corp.yahoo.com ([98.137.59.30]) by SP2-EX07CAS03.ds.corp.yahoo.com ([98.137.59.35]) with mapi; Wed, 2 Feb 2011 13:23:36 -0800 From: Christian Kunz To: "common-user@hadoop.apache.org" Date: Wed, 2 Feb 2011 13:23:34 -0800 Subject: Re: IdentityReducer is called instead of my own Thread-Topic: IdentityReducer is called instead of my own Thread-Index: AcvDH3N0gX7JgZLAR2yRkZ9lvfpvbg== Message-ID: <126844EB-6427-4D76-AD01-94492D9FE398@yahoo-inc.com> References: In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org Without seeing the source code of the reduce method of the InvIndexReduce = class my best guess would be that the signature is incorrect. I saw this happen w= hen migrating from old to new api: protected void reduce(KEYIN key, Iterable values, Context context) (Iterable, not Iterator as in the old api) -Christian On Feb 2, 2011, at 12:22 PM, Marco Didonna wrote: > Hello everybody, > I am experiencing a weird issue: I have written a small hadoop program > and I am launching it using this https://gist.github.com/808297 > JobDriver. Strangely InvIndexReducer is never invoked and the default > reducer kicks in. I really cannot understand where the problem could be: > as you can see I am using the new version of the api, (hadoop >=3D 0.20). >=20 > Any help is appreciated >=20 > MD >=20