Return-Path: Delivered-To: apmail-hadoop-mapreduce-issues-archive@minotaur.apache.org Received: (qmail 81120 invoked from network); 11 Aug 2010 12:12:45 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 Aug 2010 12:12:45 -0000 Received: (qmail 75093 invoked by uid 500); 11 Aug 2010 12:12:44 -0000 Delivered-To: apmail-hadoop-mapreduce-issues-archive@hadoop.apache.org Received: (qmail 74424 invoked by uid 500); 11 Aug 2010 12:12:42 -0000 Mailing-List: contact mapreduce-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-issues@hadoop.apache.org Delivered-To: mailing list mapreduce-issues@hadoop.apache.org Received: (qmail 74401 invoked by uid 99); 11 Aug 2010 12:12:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 12:12:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Aug 2010 12:12:38 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o7BCCHf7009494 for ; Wed, 11 Aug 2010 12:12:17 GMT Message-ID: <21751526.273941281528737230.JavaMail.jira@thor> Date: Wed, 11 Aug 2010 08:12:17 -0400 (EDT) From: "Vladimir Klimontovich (JIRA)" To: mapreduce-issues@hadoop.apache.org Subject: [jira] Created: (MAPREDUCE-2003) It should be able to specify different jvm settings for map and reduce child process (via mapred.child.map.java.opts and mapred.child.reduce.java.opts options) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org It should be able to specify different jvm settings for map and reduce child process (via mapred.child.map.java.opts and mapred.child.reduce.java.opts options) ---------------------------------------------------------------------------------------------------------------------------------------------------------------- Key: MAPREDUCE-2003 URL: https://issues.apache.org/jira/browse/MAPREDUCE-2003 Project: Hadoop Map/Reduce Issue Type: Improvement Components: tasktracker Reporter: Vladimir Klimontovich Fix For: 0.20.3, 0.21.0, 0.22.0 Sometimes mapper child process requires different JVM settings than reducer. For example when mapper requires much more memory than reducer. Now it's only possible to set options for both using mapred.child.java.opts. Proposed solution: mapred.child.java.opts could be overwritten by mapred.child.map.java.opts or mapred.child.reduce.java.opts. Thus, we're adding more flexibility and compatibility with old configurations. The same should be done for mapred.child.env. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.