Running a wordcount program throws error


1 Answer(s)


Hi,

The package name is missing when you invoke the program (like com.Dezyre.WordCount).
first check the package name using "jar -tvf WordCount.jar"

hadoop jar /home/cloudera/WordCount.jar com..WordCount wordcount/input wordcount/output

Thanks