From core-commits-return-8602-apmail-hadoop-core-commits-archive=hadoop.apache.org@hadoop.apache.org Fri May 01 13:23:30 2009 Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 32505 invoked from network); 1 May 2009 13:23:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 May 2009 13:23:30 -0000 Received: (qmail 3315 invoked by uid 500); 1 May 2009 13:23:29 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 3231 invoked by uid 500); 1 May 2009 13:23:29 -0000 Mailing-List: contact core-commits-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-commits@hadoop.apache.org Received: (qmail 3204 invoked by uid 99); 1 May 2009 13:23:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 May 2009 13:23:29 +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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 May 2009 13:23:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A8F1023888CA; Fri, 1 May 2009 13:23:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r770667 - in /hadoop/core/trunk: CHANGES.txt src/docs/src/documentation/content/xdocs/streaming.xml Date: Fri, 01 May 2009 13:23:07 -0000 To: core-commits@hadoop.apache.org From: tomwhite@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090501132307.A8F1023888CA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tomwhite Date: Fri May 1 13:23:07 2009 New Revision: 770667 URL: http://svn.apache.org/viewvc?rev=770667&view=rev Log: HADOOP-5592. Fix typo in Streaming doc in reference to GzipCodec. Contributed via Corinne Chandel. Modified: hadoop/core/trunk/CHANGES.txt hadoop/core/trunk/src/docs/src/documentation/content/xdocs/streaming.xml Modified: hadoop/core/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=770667&r1=770666&r2=770667&view=diff ============================================================================== --- hadoop/core/trunk/CHANGES.txt (original) +++ hadoop/core/trunk/CHANGES.txt Fri May 1 13:23:07 2009 @@ -471,6 +471,9 @@ HADOOP-5611. Fix C++ libraries to build on Debian Lenny. (Todd Lipcon via tomwhite) + HADOOP-5592. Fix typo in Streaming doc in reference to GzipCodec. + (Corinne Chandel via tomwhite) + Release 0.20.1 - Unreleased INCOMPATIBLE CHANGES Modified: hadoop/core/trunk/src/docs/src/documentation/content/xdocs/streaming.xml URL: http://svn.apache.org/viewvc/hadoop/core/trunk/src/docs/src/documentation/content/xdocs/streaming.xml?rev=770667&r1=770666&r2=770667&view=diff ============================================================================== --- hadoop/core/trunk/src/docs/src/documentation/content/xdocs/streaming.xml (original) +++ hadoop/core/trunk/src/docs/src/documentation/content/xdocs/streaming.xml Fri May 1 13:23:07 2009 @@ -623,7 +623,7 @@
How do I generate output files with gzip format?

-Instead of plain text files, you can generate gzip files as your generated output. Pass '-D mapred.output.compress=true -D mapred.output.compression.codec=org.apache.hadoop.io.compress.GzipCode' as option to your streaming job. +Instead of plain text files, you can generate gzip files as your generated output. Pass '-D mapred.output.compress=true -D mapred.output.compression.codec=org.apache.hadoop.io.compress.GzipCodec' as option to your streaming job.