You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Anastasis Andronidis (JIRA)" <ji...@apache.org> on 2011/05/15 22:49:47 UTC

[jira] [Commented] (MAPREDUCE-806) WordCount example does not compile given the current instructions

    [ https://issues.apache.org/jira/browse/MAPREDUCE-806?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13033814#comment-13033814 ] 

Anastasis Andronidis commented on MAPREDUCE-806:
------------------------------------------------

The file you are looking for in hadoop-0.21.0 is in HADOOP_HOME/lib/commons-cli-1.2.jar It is not ver 2.0 but worked for me.

> WordCount example does not compile given the current instructions
> -----------------------------------------------------------------
>
>                 Key: MAPREDUCE-806
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-806
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>          Components: examples
>    Affects Versions: 0.20.1
>         Environment: linux
>            Reporter: Hector Yuen
>            Priority: Trivial
>
> http://hadoop.apache.org/common/docs/r0.20.0/mapred_tutorial.html#Example%3A+WordCount+v1.0
> In this example, the classpath is missing commons-cli-2.0-SNAPSHOT.jar
> If we compile according to the instructions:
> $ javac -classpath /hadoop/core/hadoop-0.20.0-core.jar -d ioperf_classes/ src/WordCount.java
> src/WordCount.java:54: cannot access org.apache.commons.cli.Options
> class file for org.apache.commons.cli.Options not found
>     String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
> The correct compilation should be 
> $ javac -classpath /hadoop/core/hadoop-0.20.0-core.jar:/hadoop/core/lib/commons-cli-2.0-SNAPSHOT.jar -d ioperf_classes/ src/WordCount.java

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira