Skip to content

Instantly share code, notes, and snippets.

@tiffani
Created September 7, 2013 00:35
Show Gist options
  • Save tiffani/6471733 to your computer and use it in GitHub Desktop.
Save tiffani/6471733 to your computer and use it in GitHub Desktop.
How to compile and run Java code that needs Hadoop stuff. Writing this down because I just KNOW I'll forget.
Compile it:
javac WritableFix.java -classpath /Users/tiffani/Downloads/hadoop-1.2.0/hadoop-core-1.2.0.jar:/Users/tiffani/Downloads/mahout-distribution-0.7/core/target/mahout-core-0.7.jar
Run it:
java -cp "/root/installs/hadoop-1.2.1/hadoop-core-1.2.1.jar:/root/installs/hadoop-1.2.1/lib/*:/root/installs/mahout-distribution-0.8/core/target/mahout-core-0.8.jar:/root/installs/mahout-distribution-0.8/math/target/mahout-math-0.8.jar:." WritableFix /root/installs/writableFix/part-r-00000 /root/installs/writableFix/part-r-00000-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment