Return-Path: Delivered-To: apmail-hadoop-mapreduce-user-archive@minotaur.apache.org Received: (qmail 49868 invoked from network); 28 Nov 2010 10:04:08 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 28 Nov 2010 10:04:08 -0000 Received: (qmail 88207 invoked by uid 500); 28 Nov 2010 10:04:05 -0000 Delivered-To: apmail-hadoop-mapreduce-user-archive@hadoop.apache.org Received: (qmail 86956 invoked by uid 500); 28 Nov 2010 10:04:02 -0000 Mailing-List: contact mapreduce-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-user@hadoop.apache.org Delivered-To: mailing list mapreduce-user@hadoop.apache.org Received: (qmail 86942 invoked by uid 99); 28 Nov 2010 10:04:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 10:04:01 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [216.145.54.173] (HELO mrout3.yahoo.com) (216.145.54.173) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Nov 2010 10:03:55 +0000 Received: from [192.168.0.15] (snvvpn1-10-72-244-c14.hq.corp.yahoo.com [10.72.244.14]) by mrout3.yahoo.com (8.13.8/8.13.8/y.out) with ESMTP id oASA3FgU003788; Sun, 28 Nov 2010 02:03:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=yahoo-inc.com; s=cobra; t=1290938595; bh=U98PTzn+x+N5kUryaTBWuwwU6xquCr+aGlRNnS91bCw=; h=Message-Id:From:To:In-Reply-To:Content-Type: Content-Transfer-Encoding:Subject:Mime-Version:Date:References; b=S1qOh9BqvlCeF5nRoojUy6VBuCF/3loCNnyM/Argjhx9u8oWvWbBzeeEHvwzhACL2 QGY/aWr6zpEvKswIjf8H1gwWuKs8mCHCXYrGCjzWuApd7gf25ckR9UeTwdMIKxsmZT jJMhHL0EaNXBtApF3YS+N7T9evvBCdP/goEt3xsk= Message-Id: From: Arun C Murthy To: mapreduce-user@hadoop.apache.org In-Reply-To: <4CF2075D.7040601@gmail.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Subject: Re: delay the execution of reducers Mime-Version: 1.0 (Apple Message framework v936) Date: Sun, 28 Nov 2010 02:03:15 -0800 References: <4CF2075D.7040601@gmail.com> X-Mailer: Apple Mail (2.936) X-Virus-Checked: Checked by ClamAV on apache.org Moving to mapreduce-user@, bcc common-user@. Please use project specific lists. mapreduce.reduce.slowstart.completed.maps is the right knob. Which version of hadoop are you running? If it isn't working, please open a jira. Thanks. Arun On Nov 27, 2010, at 11:40 PM, Da Zheng wrote: > Hello, > > I found in Hadoop that reducers starts when a fraction of the number > of mappers > is complete. However, in my case, I hope reducers to start only when > all mappers > are complete. I searched for Hadoop configuration parameters, and > found > mapred.reduce.slowstart.completed.maps, which seems to do what I > want. But no > matter what value (0.99, 1.00, etc) I set to > mapred.reduce.slowstart.completed.maps, reducers always start to > execute when > about 10% of mappers are complete. > > Do I set the right parameter? Is there any other parameter I can use > for this > purpose? > > Thanks, > Da