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 0C568F3BA for ; Sun, 24 Mar 2013 13:45:03 +0000 (UTC) Received: (qmail 2631 invoked by uid 500); 24 Mar 2013 13:44:58 -0000 Delivered-To: apmail-hadoop-common-user-archive@hadoop.apache.org Received: (qmail 2546 invoked by uid 500); 24 Mar 2013 13:44: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 2538 invoked by uid 99); 24 Mar 2013 13:44:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Mar 2013 13:44:58 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of harsh@cloudera.com designates 209.85.223.178 as permitted sender) Received: from [209.85.223.178] (HELO mail-ie0-f178.google.com) (209.85.223.178) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Mar 2013 13:44:52 +0000 Received: by mail-ie0-f178.google.com with SMTP id bn7so3967874ieb.23 for ; Sun, 24 Mar 2013 06:44:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:content-type:x-gm-message-state; bh=DnLLgZXEJUm+8WY/RzcX623XA+l17PKoMslzAlBMHqk=; b=dWlXixwAjPO76/RBcPHIQtvfA9zcIvsUQ59/kt/oQjsGf/AhvruPdRMdFp5r3czXLo EXa/J8MeuqC1TGbDXJzuO96mq9VvHWtyBQINwd6nrNRLowt9Y77Hcz6En8kHc9kkGjiK J7jWebV3nOAKMavoMbQoXX74KHxDWf/rDXOyEq3yTATM5ax1xQHUu9S2pQCsXKGD6YaI cJ7aX0uKJLbmWqLaWke86kZkVXenwaHhwmTlKozCO0El53+gJQuRwgnKLp9JbNzI5PB6 O7BwTgc3UwjgL11T0he1GO92672W9UZdo45ckczJRO4kDIgx2I9biQYOUvtlqa0PBR3r y1dQ== X-Received: by 10.50.191.228 with SMTP id hb4mr5384959igc.37.1364132671303; Sun, 24 Mar 2013 06:44:31 -0700 (PDT) MIME-Version: 1.0 Received: by 10.50.181.198 with HTTP; Sun, 24 Mar 2013 06:44:11 -0700 (PDT) In-Reply-To: References: From: Harsh J Date: Sun, 24 Mar 2013 19:14:11 +0530 Message-ID: Subject: Re: 2 Reduce method in one Job To: "" Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQnrQSOuZW1dUOnzxwBYDmvlKrZTyDohr0ACz7Opdf03kESww11ioS7GDdZvkzByfFeDtAco X-Virus-Checked: Checked by ClamAV on apache.org You seem to want to re-sort/partition your data without materializing it onto HDFS. Azuryy is right: There isn't a way right now and a second job (with an identity mapper) is necessary. With YARN this is more possible to implement into the project, though. The newly inducted incubator project Tez sorta targets this. Its in its nascent stages though (for general user use), and the website should hopefully appear at http://incubator.apache.org/projects/tez.html soon. Meanwhile, you can read the proposal behind this project at http://wiki.apache.org/incubator/TezProposal. Initial sources are at https://svn.apache.org/repos/asf/incubator/tez/trunk/. On Sun, Mar 24, 2013 at 6:33 PM, Fatih Haltas wrote: > I want to get reduce output as key and value then I want to pass them to a > new reduce as input key and input value. > > So is there any Map-Reduce-Reduce kind of method? > > Thanks to all. -- Harsh J