GithubHelp home page GithubHelp logo

hadoopwordcountsample's Introduction

HadoopWordCountSample

Usage

Create 2 sample data files: echo "A long time ago in a galaxy far far away" > /home/cloudera/testfile1
echo "Another episode of Star Wars" > /home/cloudera/testfile2

Assuming username is cloudera for following commands: Create a directory on the HDFS file system hdfs dfs -mkdir /user/cloudera/input

Copy the files from local filesystem to the HDFS filesystem:

hdfs dfs -put /home/cloudera/testfile1 /user/cloudera/input
hdfs dfs -put /home/cloudera/testfile2 /user/cloudera/input

Run the Hadoop WordCount example with the input and output specified. (If your run failed first cleadn output: hdfs dfs -rmdir output_new)

hadoop jar /usr/lib/hadoop-mapreduce/hadoop-streaming.jar \
-input /user/cloudera/input \   
-output /user/cloudera/output_new \   
-mapper /home/cloudera/HadoopWordCountSample/wordcount_mapper.py \   
-reducer /home/cloudera/HadoopWordCountSample/wordcount_reducer.py

see output

hdfs dfs -cat /user/cloudera/output_new/part-00000

To see the result of mappers, assign 0 reducers:

hadoop jar /usr/lib/hadoop-mapreduce/hadoop-streaming.jar \
   -input /user/cloudera/input \
   -output /user/cloudera/output_new_0 \
   -mapper /home/cloudera/HadoopWordCountSample/wordcount_mapper.py \
   -reducer /home/cloudera/HadoopWordCountSample/wordcount_reducer.py \
   -numReduceTasks 0
hdfs dfs -getmerge /user/cloudera/output_new_0/* wordcount_num0_output.txt 

hadoopwordcountsample's People

Contributors

drozturk avatar khushbukp avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.