In the Hadoop API documentation it\'s given
that
setJarByClass public void setJarByClass(Class> cls) Set the Jar by finding where a give
job.setJarByClass(WordCount.class);
Helps to identify the Jar which contains the Mapper and Reducer by specifying a class in that Jar.
Mapper
Reducer