Return-Path: Delivered-To: apmail-hadoop-mapreduce-dev-archive@minotaur.apache.org Received: (qmail 25655 invoked from network); 27 Oct 2010 00:12:47 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 27 Oct 2010 00:12:47 -0000 Received: (qmail 23526 invoked by uid 500); 27 Oct 2010 00:12:47 -0000 Delivered-To: apmail-hadoop-mapreduce-dev-archive@hadoop.apache.org Received: (qmail 23450 invoked by uid 500); 27 Oct 2010 00:12:47 -0000 Mailing-List: contact mapreduce-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-dev@hadoop.apache.org Delivered-To: mailing list mapreduce-dev@hadoop.apache.org Received: (qmail 23442 invoked by uid 99); 27 Oct 2010 00:12:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Oct 2010 00:12:47 +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, 27 Oct 2010 00:12:41 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o9R0CJYG028533 for ; Wed, 27 Oct 2010 00:12:19 GMT Message-ID: <10807036.91471288138339648.JavaMail.jira@thor> Date: Tue, 26 Oct 2010 20:12:19 -0400 (EDT) From: "Aaron T. Myers (JIRA)" To: mapreduce-dev@hadoop.apache.org Subject: [jira] Created: (MAPREDUCE-2158) Remove need for taskcontroller.cfg 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 Remove need for taskcontroller.cfg ---------------------------------- Key: MAPREDUCE-2158 URL: https://issues.apache.org/jira/browse/MAPREDUCE-2158 Project: Hadoop Map/Reduce Issue Type: Improvement Components: task-controller Affects Versions: 0.22.0 Reporter: Aaron T. Myers Assignee: Aaron T. Myers The taskcontroller.cfg configuration file seems unnecessary. It's parsed by the task-controller binary, and the path to it is baked into that binary at compile-time. It contains only 3 values, none of which are secret, all of which are also specified in either core-site.xml or mapred-site.xml. It seems like getting rid of taskcontroller.cfg will simplify configuration, and have no impact on the security of the system I suggest we either: # Pass these values as arguments to task-controller when we execute it. # Use xerces to enable the task-controller to parse *-site.xml. Of these two options, I think option 1 seems the cleanest/easiest. Either would be backward-compatible with existing configurations. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.