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-3 [2012/01/28 12:05] majlis Scripts were reuploaded. |
courses:mapreduce-tutorial:step-3 [2012/01/31 09:40] (current) straka Change Perl commandline syntax. |
||
---|---|---|---|
Line 8: | Line 8: | ||
<file perl> | <file perl> | ||
- | # | + | package |
- | + | ||
- | package Mapper; | + | |
use Moose; | use Moose; | ||
with ' | with ' | ||
Line 20: | Line 18: | ||
} | } | ||
- | package | + | package |
use Hadoop:: | use Hadoop:: | ||
my $runner = Hadoop:: | my $runner = Hadoop:: | ||
- | mapper => Mapper-> | + | mapper => My::Mapper-> |
input_format => ' | input_format => ' | ||
output_format => ' | output_format => ' | ||
output_compression => 0); | output_compression => 0); | ||
- | $runner-> | + | $runner-> |
</ | </ | ||
Line 35: | Line 33: | ||
Resulting script can be executed locally in a single thread using | Resulting script can be executed locally in a single thread using | ||
- | perl script.pl | + | perl script.pl |
- | All files in input_directory | + | Input can be either file or a directory -- in that case, all files in this directory |
+ | === Standard input and output === | ||
+ | Standard input and standard output of the Perl script are used to communicate with the Hadoop framework. Therefore you should use standard error output if you want to print some debugging output using '' | ||
===== Exercise ===== | ===== Exercise ===== | ||
Line 43: | Line 43: | ||
To check that your Hadoop environment works, try running a MR job on ''/ | To check that your Hadoop environment works, try running a MR job on ''/ | ||
wget --no-check-certificate ' | wget --no-check-certificate ' | ||
- | rm -rf step-3-out-ex; | + | |
- | less step-3-out-ex/ | + | # $EDITOR step-3-exercise.pl |
+ | | ||
+ | less step-3-out-ex/ | ||
| | ||
==== Solution ==== | ==== Solution ==== | ||
You can also download the solution {{: | You can also download the solution {{: | ||
wget --no-check-certificate ' | wget --no-check-certificate ' | ||
- | rm -rf step-3-out-sol; | + | |
- | less step-3-out-sol/ | + | # $EDITOR step-3-solution.pl |
+ | | ||
+ | less step-3-out-sol/ | ||
---- | ---- |