/word-count-hadoop

Classic word count problem solved by mapreduce

Primary LanguageJava

Word-count problem with Hadoop MapReduce

INPUT

  • Type input : Text
  • Path : input.txt
  • Description : A paragraph, any text

OUTPUT

  • Type output : Text
  • Path : output/
  • Description : [word] [frequency of occurrence]

Run project

mvn clean package
hadoop jar target/wordcount-V1.jar com.hadoop.mapreduce.WordCount <input_path> <output_path>