Return-Path: Delivered-To: apmail-hadoop-mapreduce-dev-archive@minotaur.apache.org Received: (qmail 22811 invoked from network); 11 Feb 2010 06:22:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Feb 2010 06:22:50 -0000 Received: (qmail 46362 invoked by uid 500); 11 Feb 2010 06:22:50 -0000 Delivered-To: apmail-hadoop-mapreduce-dev-archive@hadoop.apache.org Received: (qmail 46113 invoked by uid 500); 11 Feb 2010 06:22:49 -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 46089 invoked by uid 99); 11 Feb 2010 06:22:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 06:22:49 +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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Feb 2010 06:22:48 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 0C61B29A0012 for ; Wed, 10 Feb 2010 22:22:28 -0800 (PST) Message-ID: <1194950959.201441265869348049.JavaMail.jira@brutus.apache.org> Date: Thu, 11 Feb 2010 06:22:28 +0000 (UTC) From: "Amareshwari Sriramadasu (JIRA)" To: mapreduce-dev@hadoop.apache.org Subject: [jira] Resolved: (MAPREDUCE-238) OutputFormat should be given the reduce id directly rather than a filename MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/MAPREDUCE-238?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Amareshwari Sriramadasu resolved MAPREDUCE-238. ----------------------------------------------- Resolution: Fixed This is incorporated in HADOOP-1230 > OutputFormat should be given the reduce id directly rather than a filename > -------------------------------------------------------------------------- > > Key: MAPREDUCE-238 > URL: https://issues.apache.org/jira/browse/MAPREDUCE-238 > Project: Hadoop Map/Reduce > Issue Type: Improvement > Reporter: Owen O'Malley > Assignee: Owen O'Malley > > The OutputFormat API should be changed to be more evolution proof: > public interface OutputFormatContext { > JobConf getJobConf(); > Progressable getProgress(); > } > public interface OutputFormat { > RecordWriter getRecordWriter(int reduce, OutputFormatContext context) throws IOException; > void checkOutputSpecs(OutputFormatContext context) throws IOException; > } > And OutputFormatBase would be renamed: > public abstract class FileOutputFormat implements OutputFormat { > protected Path getOutputPath(int reduce, OutputFormatContext context) throws IOException { ... } > ... current OutputFormatBase methods ... > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.