Hi @ajain59
The wordcount JAR will be on the cluster somewhere. There may be a way of getting it off the web. Here is an example which shows the general form of the JAR name (it is in the comments):
/* Run the Word Count sample program on Moby **bleep** */
/* hadoop-examples-1.2.0.1.3.0.0-96.jar */
proc hadoop options=cfg user="bob" verbose;
mapreduce input='/user/bob/Books/moby_dick.txt'
output='/user/bob/outBook'
jar='C:\Hadoop_examples\hadoop-examples-1.2.0.1.3.0.0-96.jar'
outputkey="org.apache.hadoop.io.Text"
outputvalue="org.apache.hadoop.io.IntWritable"
reduce="org.apache.hadoop.examples.WordCount$IntSumReducer"
combine="org.apache.hadoop.examples.WordCount$IntSumReducer"
map="org.apache.hadoop.examples.WordCount$TokenizerMapper";
run;
Best wishes,
Jeff