/usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-examples-*.jar

 



위의 위치에 example jar 가 있다.


map-reduce로 wordcount, grep, sort 알고리즘을 돌려볼 수 있다.



wordcount 실행 방법은



hadoop fs -rm -r /out/

hadoop jar /usr/local/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-examples-*.jar wordcount /in/ /out/

 



hdfs 내의 /in/ 위치에 데이터가 있어야 한다.

hdfs 내의 /out/ 위치에 결과가 들어간다.






+ Recent posts