Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
courses:mapreduce-tutorial:step-6 [2012/01/30 13:46] straka |
courses:mapreduce-tutorial:step-6 [2012/02/06 13:55] (current) straka |
||
---|---|---|---|
Line 4: | Line 4: | ||
So far all our Hadoop jobs were executed locally. But all of them can be executed on multiple machines. It suffices to add parameter '' | So far all our Hadoop jobs were executed locally. But all of them can be executed on multiple machines. It suffices to add parameter '' | ||
- | perl script.pl | + | perl script.pl -c number_of_machines [-w sec_to_wait_after_job_completion] input_directory output_directory |
This commands creates a cluster of specified number of machines. Every machine is able to run two mappers and two reducers simultaneously. In order to be able to observe the counters, status and error logs of the computation after it ends, parameter '' | This commands creates a cluster of specified number of machines. Every machine is able to run two mappers and two reducers simultaneously. In order to be able to observe the counters, status and error logs of the computation after it ends, parameter '' | ||
Line 17: | Line 17: | ||
===== Web interface ===== | ===== Web interface ===== | ||
- | The cluster master provides a web interface on port 50030 (the port may change in the future). The cluster master | + | The cluster master provides a web interface on address printed by the '' |
The web interface provides a lot of useful information: | The web interface provides a lot of useful information: | ||
Line 25: | Line 25: | ||
* for any job, all Hadoop settings | * for any job, all Hadoop settings | ||
- | ===== If things go wrong ===== | ||
- | If the Hadoop job crashes, there are several ways you can do: | ||
- | * run the computation locally in single threaded mode. This is more useful for Hadoop jobs written in Java, because then you can use a debugger. When using Perl API, new subprocess are created for Perl tasks anyway. | ||
- | * use standard error output for log messages. You can access the stderr logs of all Hadoop tasks using the web interface. | ||
===== Example ===== | ===== Example ===== | ||
Line 35: | Line 31: | ||
Try running the {{: | Try running the {{: | ||
wget --no-check-certificate ' | wget --no-check-certificate ' | ||
- | rm -rf step-6-out; perl step-6-wordcount.pl | + | rm -rf step-6-out; perl step-6-wordcount.pl -c 1 -w 600 -Dmapred.max.split.size=1000000 / |
and explore the web interface. | and explore the web interface. | ||