public class JrubyAccumulatorEvalFunc extends AccumulatorEvalFunc<java.lang.Object>
EvalFunc.SchemaTypelog, pigLogger, reporter, returnType| Constructor and Description |
|---|
JrubyAccumulatorEvalFunc(java.lang.String path,
java.lang.String methodName)
This constructor is used by JrubyScriptEngine to register a Ruby class as an Accumulator.
|
| Modifier and Type | Method and Description |
|---|---|
void |
accumulate(Tuple b)
This uses the "exec" method required of AccumulatorPigUdf Ruby classes.
|
void |
cleanup()
Called after getValue() to prepare processing for next key.
|
java.lang.Object |
getValue()
This method calls "get" on the AccumulatorPigUdf Ruby class that was specified.
|
Schema |
outputSchema(Schema input)
This provides the Schema of the output, and leverages the get_output_schema function on the class object
that is defined on the ruby side.
|
execallowCompileTimeCalculation, finish, getArgToFuncMapping, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warnpublic JrubyAccumulatorEvalFunc(java.lang.String path,
java.lang.String methodName)
public void accumulate(Tuple b) throws java.io.IOException
accumulate in interface Accumulator<java.lang.Object>accumulate in class AccumulatorEvalFunc<java.lang.Object>b - A tuple containing a single field, which is a bag. The bag will contain the set
of tuples being passed to the UDF in this iteration.java.io.IOExceptionpublic void cleanup()
Accumulatorcleanup in interface Accumulator<java.lang.Object>cleanup in class AccumulatorEvalFunc<java.lang.Object>public java.lang.Object getValue()
getValue in interface Accumulator<java.lang.Object>getValue in class AccumulatorEvalFunc<java.lang.Object>public Schema outputSchema(Schema input)
outputSchema in class EvalFunc<java.lang.Object>input - Schema of the inputCopyright © 2007-2012 The Apache Software Foundation