public class PairMapFn<K,V,S,T> extends MapFn<Pair<K,V>,Pair<S,T>>
| Constructor and Description |
|---|
PairMapFn(MapFn<K,S> keys,
MapFn<V,T> values) |
| Modifier and Type | Method and Description |
|---|---|
void |
cleanup(Emitter<Pair<S,T>> emitter)
Called during the cleanup of the MapReduce job this
DoFn is
associated with. |
void |
configure(org.apache.hadoop.conf.Configuration conf)
Configure this DoFn.
|
void |
initialize()
Initialize this DoFn.
|
Pair<S,T> |
map(Pair<K,V> input)
Maps the given input into an instance of the output type.
|
float |
scaleFactor()
Returns an estimate of how applying this function to a
PCollection
will cause it to change in side. |
void |
setConfiguration(org.apache.hadoop.conf.Configuration conf)
Called during the setup of an initialized
PType that
relies on this instance. |
void |
setContext(org.apache.hadoop.mapreduce.TaskInputOutputContext<?,?,?,?> context)
Called during setup to pass the
TaskInputOutputContext to this
DoFn instance. |
disableDeepCopypublic void configure(org.apache.hadoop.conf.Configuration conf)
DoFnCalled during the job planning phase by the crunch-client.
public void setConfiguration(org.apache.hadoop.conf.Configuration conf)
DoFnPType that
relies on this instance.public void setContext(org.apache.hadoop.mapreduce.TaskInputOutputContext<?,?,?,?> context)
DoFnTaskInputOutputContext to this
DoFn instance. The specified TaskInputOutputContext must not be null.public void initialize()
DoFnDoFn.process(Object, Emitter) is triggered. Subclasses may override
this method to do appropriate initialization.
Called during the setup of the job instance this DoFn is associated
with.
public float scaleFactor()
DoFnPCollection
will cause it to change in side. The optimizer uses these estimates to
decide where to break up dependent MR jobs into separate Map and Reduce
phases in order to minimize I/O.
Subclasses of DoFn that will substantially alter the size of the
resulting PCollection should override this method.
public Pair<S,T> map(Pair<K,V> input)
MapFnCopyright © 2016 The Apache Software Foundation. All rights reserved.