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-8 [2012/01/29 21:04] straka |
courses:mapreduce-tutorial:step-8 [2012/01/31 15:55] (current) straka |
||
---|---|---|---|
Line 12: | Line 12: | ||
To use multiple reducers, the MR job must be executed by a cluster (even with one computer), not locally. The number of reducers is specified by '' | To use multiple reducers, the MR job must be executed by a cluster (even with one computer), not locally. The number of reducers is specified by '' | ||
- | perl script.pl | + | perl script.pl [-jt cluster_master | -c cluster_size [-w sec_to_wait]] [-r number_of_reducers] |
Optimal number of reducers is the same as the number of machines in the cluster, so that all the reducers can run in parallel at the same time. | Optimal number of reducers is the same as the number of machines in the cluster, so that all the reducers can run in parallel at the same time. | ||
Line 21: | Line 21: | ||
By default, (key, value) pair is sent to a reducer number //hash(key) modulo number_of_reducers// | By default, (key, value) pair is sent to a reducer number //hash(key) modulo number_of_reducers// | ||
- | To override the default behaviour, MR job can specify a // | + | To override the default behaviour, MR job can specify a // |
+ | |||
+ | A partitioner should be provided if | ||
+ | * the default partitioner fails to distribute the data between reducers equally, i.e., some of the reducers operate on much more data than others. | ||
+ | * you need an explicit control of (key, value) placement. This can happen for example when [[.:step-13|sorting data]]. | ||
<code perl> | <code perl> | ||
- | package Partitioner; | + | package |
use Moose; | use Moose; | ||
with ' | with ' | ||
Line 35: | Line 39: | ||
... | ... | ||
- | package | + | package |
use Hadoop:: | use Hadoop:: | ||
my $runner = Hadoop:: | my $runner = Hadoop:: | ||
... | ... | ||
- | partitioner => Partitioner-> | + | partitioner => My::Partitioner-> |
...); | ...); | ||
... | ... | ||
Line 48: | Line 52: | ||
===== The order of keys during reduce ===== | ===== The order of keys during reduce ===== | ||
- | It is guaranteed that every reducer processes the keys in //ascending order//. | + | It is guaranteed that every reducer processes the keys in // |
On the other hand, the order of values belonging to one key is undefined. | On the other hand, the order of values belonging to one key is undefined. | ||
Line 56: | Line 60: | ||
Run one MR job on '/ | Run one MR job on '/ | ||
wget --no-check-certificate ' | wget --no-check-certificate ' | ||
- | rm -rf step-8-out-ex; | + | |
+ | # $EDITOR step-8-exercise.pl | ||
+ | | ||
less step-8-out-ex/ | less step-8-out-ex/ | ||
Line 62: | Line 68: | ||
You can also download the solution {{: | You can also download the solution {{: | ||
wget --no-check-certificate ' | wget --no-check-certificate ' | ||
- | rm -rf step-8-out-sol; | + | |
+ | # $EDITOR step-8-solution.pl | ||
+ | | ||
less step-8-out-sol/ | less step-8-out-sol/ | ||