|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@InterfaceAudience.Public @InterfaceStability.Stable public interface OutputCollector<K,V>
Collects the <key, value>
pairs output by Mapper
s
and Reducer
s.
OutputCollector
is the generalization of the facility
provided by the Map-Reduce framework to collect data output by either the
Mapper
or the Reducer
i.e. intermediate outputs
or the output of the job.
Method Summary | |
---|---|
void |
collect(K key,
V value)
Adds a key/value pair to the output. |
Method Detail |
---|
void collect(K key, V value) throws IOException
key
- the key to collect.value
- to value to collect.
IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |