This project has retired. For details please refer to its
Attic page .
SFunction (Apache Crunch 0.11.0 API)
org.apache.crunch.fn
Class SFunction<T,R>
java.lang.Object
org.apache.crunch.DoFn <S,T>
org.apache.crunch.MapFn <T,R>
org.apache.crunch.fn.SFunction<T,R>
All Implemented Interfaces: Serializable , org.apache.spark.api.java.function.Function<T,R>
public abstract class SFunction<T,R> extends MapFn <T,R>implements org.apache.spark.api.java.function.Function<T,R>
A Crunch-compatible abstract base class for Spark's Function
. Subclasses
of this class may be used against either Crunch PCollections
or Spark RDDs
.
See Also: Serialized Form
Method Summary
void
cleanup (Emitter <R> emitter)
Called during the cleanup of the MapReduce job this DoFn
is
associated with.
void
initialize ()
Initialize this DoFn.
R
map (T input)
Maps the given input into an instance of the output type.
Methods inherited from interface org.apache.spark.api.java.function.Function
call
SFunction
public SFunction ()
map
public R map (T input)
Description copied from class: MapFn
Maps the given input into an instance of the output type.
Specified by: map
in class MapFn <T ,R >
initialize
public final void initialize ()
Description copied from class: DoFn
Initialize this DoFn. This initialization will happen before the actual
DoFn.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.
Overrides: initialize
in class DoFn <T,R>
cleanup
public final void cleanup (Emitter <R> emitter)
Description copied from class: DoFn
Called during the cleanup of the MapReduce job this DoFn
is
associated with. Subclasses may override this method to do appropriate
cleanup.
Overrides: cleanup
in class DoFn <T,R>
Parameters: emitter
- The emitter that was used for output
Copyright © 2014 The Apache Software Foundation . All Rights Reserved.