You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-commits@hadoop.apache.org by am...@apache.org on 2010/06/16 07:41:42 UTC

svn commit: r955132 - in /hadoop/mapreduce/branches/branch-0.21: CHANGES.txt src/docs/src/documentation/content/xdocs/streaming.xml

Author: amareshwari
Date: Wed Jun 16 05:41:41 2010
New Revision: 955132

URL: http://svn.apache.org/viewvc?rev=955132&view=rev
Log:
MAPREDUCE-1765. Merge -r 955129:955130 from trunk

Modified:
    hadoop/mapreduce/branches/branch-0.21/CHANGES.txt
    hadoop/mapreduce/branches/branch-0.21/src/docs/src/documentation/content/xdocs/streaming.xml

Modified: hadoop/mapreduce/branches/branch-0.21/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.21/CHANGES.txt?rev=955132&r1=955131&r2=955132&view=diff
==============================================================================
--- hadoop/mapreduce/branches/branch-0.21/CHANGES.txt (original)
+++ hadoop/mapreduce/branches/branch-0.21/CHANGES.txt Wed Jun 16 05:41:41 2010
@@ -1461,3 +1461,6 @@ Release 0.21.0 - Unreleased
 
     MAPREDUCE-1606. TestJobACLs may timeout as there are no slots for launching
     JOB_CLEANUP task. (Ravi Gummadi via vinodkv)
+
+    MAPREDUCE-1765. Correct streaming documentation for StreamXmlRecordReader.
+    (Corinne Chandel via amareshwari)

Modified: hadoop/mapreduce/branches/branch-0.21/src/docs/src/documentation/content/xdocs/streaming.xml
URL: http://svn.apache.org/viewvc/hadoop/mapreduce/branches/branch-0.21/src/docs/src/documentation/content/xdocs/streaming.xml?rev=955132&r1=955131&r2=955132&view=diff
==============================================================================
--- hadoop/mapreduce/branches/branch-0.21/src/docs/src/documentation/content/xdocs/streaming.xml (original)
+++ hadoop/mapreduce/branches/branch-0.21/src/docs/src/documentation/content/xdocs/streaming.xml Wed Jun 16 05:41:41 2010
@@ -809,7 +809,7 @@ At least as late as version 0.14, Hadoop
 You can use the record reader StreamXmlRecordReader to process XML documents. 
 </p>
 <source>
-hadoop jar hadoop-streaming.jar -inputreader "StreamXmlRecord,begin=BEGIN_STRING,end=END_STRING" ..... (rest of the command)
+hadoop jar hadoop-streaming.jar -inputreader "StreamXmlRecordReader,begin=BEGIN_STRING,end=END_STRING" ..... (rest of the command)
 </source>
 <p>
 Anything found between BEGIN_STRING and END_STRING would be treated as one record for map tasks.