|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.crunch.DoFn<S,T> org.apache.crunch.MapFn<S,T>
public abstract class MapFn<S,T>
A DoFn
for the common case of emitting exactly one value for each
input record.
Constructor Summary | |
---|---|
MapFn()
|
Method Summary | |
---|---|
abstract T |
map(S input)
Maps the given input into an instance of the output type. |
void |
process(S input,
Emitter<T> emitter)
Processes the records from a PCollection . |
float |
scaleFactor()
Returns an estimate of how applying this function to a PCollection
will cause it to change in side. |
Methods inherited from class org.apache.crunch.DoFn |
---|
cleanup, configure, disableDeepCopy, initialize, setConfiguration, setContext |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MapFn()
Method Detail |
---|
public abstract T map(S input)
public void process(S input, Emitter<T> emitter)
DoFn
PCollection
.
DoFn.process(Object, Emitter)
method call. This
functionality is imposed by Hadoop's Reducer implementation: The framework will reuse the key and value
objects that are passed into the reduce, therefore the application should
clone the objects they want to keep a copy of.
process
in class DoFn<S,T>
input
- The input record.emitter
- The emitter to send the output topublic float scaleFactor()
DoFn
PCollection
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.
scaleFactor
in class DoFn<S,T>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |