Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 44394 invoked from network); 19 Mar 2008 17:02:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Mar 2008 17:02:16 -0000 Received: (qmail 28391 invoked by uid 500); 19 Mar 2008 17:02:12 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 28354 invoked by uid 500); 19 Mar 2008 17:02:12 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 28328 invoked by uid 99); 19 Mar 2008 17:02:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Mar 2008 10:02:12 -0700 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Mar 2008 17:01:42 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 50FD6234C0A8 for ; Wed, 19 Mar 2008 10:00:24 -0700 (PDT) Message-ID: <1081202580.1205946024330.JavaMail.jira@brutus> Date: Wed, 19 Mar 2008 10:00:24 -0700 (PDT) From: "Devaraj Das (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Commented: (HADOOP-3041) Within a task, the value ofJobConf.getOutputPath() method is modified In-Reply-To: <798474908.1205837848130.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-3041?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12580447#action_12580447 ] Devaraj Das commented on HADOOP-3041: ------------------------------------- bq. Indeed. Any applications that implementtheir own output format class depend on the current semantics of getOutputPath. I guess the solution we are driving towards is that we will have an API called JobConf.getFinalOutputPath() and define a private job config variable that will store the dir what the user originally sets during job submission. This config variable is never updated except during job submission. > Within a task, the value ofJobConf.getOutputPath() method is modified > --------------------------------------------------------------------- > > Key: HADOOP-3041 > URL: https://issues.apache.org/jira/browse/HADOOP-3041 > Project: Hadoop Core > Issue Type: Bug > Components: mapred > Affects Versions: 0.16.1 > Environment: all > Reporter: Alejandro Abdelnur > Assignee: Amareshwari Sriramadasu > Priority: Blocker > Fix For: 0.16.2 > > > Until 0.16.0 the value of the getOutputPath() method, if queried within a task, pointed to the part file assigned to the task. > For example: /user/foo/myoutput/part_00000 > In 0.16.1, now it returns an internal hadoop for the task output temporary location. > For the above example: /user/foo/myoutput/_temporary/part_00000 > This change breaks applications that use the getOutputPath() to compute other directories. > IMO, this has always being broken, Hadoop should not change the values of properties injected by the client, instead it should use private properties or internal helper methods. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.