瀏覽代碼

MAPREDUCE-5765. Update hadoop-pipes examples README (Mit Desai via jeagles)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1577203 13f79535-47bb-0310-9956-ffa450edef68
Jonathan Turner Eagles 11 年之前
父節點
當前提交
50c410546b

+ 2 - 0
hadoop-mapreduce-project/CHANGES.txt

@@ -17,6 +17,8 @@ Release 2.5.0 - UNRELEASED
     MAPREDUCE-5665. Add audience annotations to MiniMRYarnCluster and 
     MiniMRCluster. (Anubhav Dhoot via kasha)
 
+    MAPREDUCE-5765. Update hadoop-pipes examples README (Mit Desai via jeagles)
+
   OPTIMIZATIONS
 
   BUG FIXES 

+ 4 - 4
hadoop-tools/hadoop-pipes/src/main/native/examples/README.txt

@@ -1,16 +1,16 @@
 To run the examples, first compile them:
 
-% mvn install 
+% mvn install -Pdist,native
 
 and then copy the binaries to dfs:
 
-% hadoop fs -put target/native/wordcount-simple /examples/bin/
+% hdfs dfs -put target/native/examples/wordcount-simple /examples/bin/
 
 create an input directory with text files:
 
-% hadoop fs -put my-data in-dir
+% hdfs dfs -put my-data in-dir
 
 and run the word count example:
 
-% hadoop pipes -conf src/main/native/examples/conf/word.xml \
+% mapred pipes -conf src/main/native/examples/conf/word.xml \
                    -input in-dir -output out-dir