[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
courses:mapreduce-tutorial:step-21 [2012/01/26 23:29]
straka
courses:mapreduce-tutorial:step-21 [2012/01/26 23:42]
straka
Line 1: Line 1:
 ====== MapReduce Tutorial : Preparing the environment ====== ====== MapReduce Tutorial : Preparing the environment ======
 +
 +To use the Hadoop Java API, you must be able to compile the Java sources with the Hadoop library. An easy way is to use a prepared Makefile:
 +
 +  - Create a directory for the Java sources.
 +  - Create a ''Makefile'' containing <file Makefile Makefile>include /net/projects/hadoop/java/Makefile</file>
 +
 +When typing ''make'', every Java file is compiled (with the Hadoop library and some extra classes) to a jar file. It is of course possible to compile just selected sources using ''make file1.jar file2.jar''.
 +
 +Command ''make clean'' remove for every Java file its jar file and subdirectory with compiled classes.
 +
 +===== Exercise =====
 +Create a directory and a ''Makefile'' as described and download {{:courses:mapreduce-tutorial:step-21.txt|WordCount.java}}. Try compiling it using ''make''.
 +

[ Back to the navigation ] [ Back to the content ]