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-10 [2012/01/25 19:08] straka |
courses:mapreduce-tutorial:step-10 [2012/01/31 09:38] (current) straka Change Perl commandline syntax. |
||
---|---|---|---|
Line 3: | Line 3: | ||
Sometimes the reduce is a binary operation, which is associative and commutative, | Sometimes the reduce is a binary operation, which is associative and commutative, | ||
- | Instead, reducer can be executed right after the map, on //some portion// of values belonging to the same key. Only the results are then sent through the network. | + | Instead, reducer can be executed right after the map, on //some portion// of values belonging to the same key. Only the aggregated |
- | A Hadoop job can have such locally executed reducer, called // | + | A Hadoop job can have such locally executed reducer, called |
Typically, the combiner is the same as the reducer of a MR job. | Typically, the combiner is the same as the reducer of a MR job. | ||
- | <code perl> | + | <file perl> |
- | package Mapper; | + | package |
... | ... | ||
- | package Reducer; | + | package |
... | ... | ||
- | package | + | package |
use Hadoop:: | use Hadoop:: | ||
my $runner = Hadoop:: | my $runner = Hadoop:: | ||
- | mapper => Mapper-> | + | mapper => My::Mapper-> |
- | combiner => Reducer-> | + | combiner => My::Reducer-> |
- | reducer => Reducer-> | + | reducer => My::Reducer-> |
input_format => ' | input_format => ' | ||
... | ... | ||
- | </code> | + | </file> |
- | ===== Excersise | + | ===== Exercise |
- | Compare the effect of adding the combiner to a MR job which counts | + | Compare the effect of adding the combiner to a MR job which counts |
+ | wget --no-check-certificate ' | ||
+ | # NOW VIEW THE FILE | ||
+ | # $EDITOR step-10-wc-without-combiner.pl | ||
+ | rm -rf step-10-out-wout; | ||
+ | |||
+ | wget --no-check-certificate ' | ||
+ | # NOW VIEW THE FILE | ||
+ | # $EDITOR step-10-wc-with-combiner.pl | ||
+ | rm -rf step-10-out-with; | ||
- | How do you explain the results? | + | How would you explain the results? |
+ | |||
+ | ---- | ||
+ | |||
+ | < | ||
+ | <table style=" | ||
+ | < | ||
+ | <td style=" | ||
+ | <td style=" | ||
+ | <td style=" | ||
+ | </ | ||
+ | </ | ||
+ | </ |