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
This commit is contained in:
Jonathan Turner Eagles 2014-03-13 15:35:46 +00:00
parent 7834c7f193
commit 50c410546b
2 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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