public class AVG extends EvalFunc<java.lang.Double> implements Algebraic, Accumulator<java.lang.Double>
Algebraic
, so if possible the execution will
performed in a distributed fashion.
AVG can operate on any numeric type. It can also operate on bytearrays, which it will cast to doubles. It expects a bag of tuples of one record each. If Pig knows from the schema that this function will be passed a bag of integers or longs, it will use a specially adapted version of AVG that uses integer arithmetic for summing the data. The return type of AVG will always be double, regardless of the input type.
AVG implements the Accumulator
interface as well.
While this will never be
the preferred method of usage it is available in case the combiner can not be
used for a given calculation
Modifier and Type | Class and Description |
---|---|
static class |
AVG.Final |
static class |
AVG.Initial |
static class |
AVG.Intermediate |
EvalFunc.SchemaType
log, pigLogger, reporter, returnType
Constructor and Description |
---|
AVG() |
Modifier and Type | Method and Description |
---|---|
void |
accumulate(Tuple b)
Pass tuples to the UDF.
|
void |
cleanup()
Called after getValue() to prepare processing for next key.
|
protected static Tuple |
combine(DataBag values) |
protected static long |
count(Tuple input) |
java.lang.Double |
exec(Tuple input)
This callback method must be implemented by all subclasses.
|
java.util.List<FuncSpec> |
getArgToFuncMapping()
Allow a UDF to specify type specific implementations of itself.
|
java.lang.String |
getFinal()
Get the final function.
|
java.lang.String |
getInitial()
Get the initial function.
|
java.lang.String |
getIntermed()
Get the intermediate function.
|
java.lang.Double |
getValue()
Called when all tuples from current key have been passed to accumulate.
|
Schema |
outputSchema(Schema input)
Report the schema of the output of this UDF.
|
protected static java.lang.Double |
sum(Tuple input) |
allowCompileTimeCalculation, finish, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, progress, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warn
public java.lang.Double exec(Tuple input) throws java.io.IOException
EvalFunc
public java.lang.String getInitial()
Algebraic
getInitial
in interface Algebraic
public java.lang.String getIntermed()
Algebraic
getIntermed
in interface Algebraic
public java.lang.String getFinal()
Algebraic
protected static Tuple combine(DataBag values) throws ExecException
ExecException
protected static long count(Tuple input) throws ExecException
ExecException
protected static java.lang.Double sum(Tuple input) throws ExecException, java.io.IOException
ExecException
java.io.IOException
public Schema outputSchema(Schema input)
EvalFunc
The default implementation interprets the OutputSchema
annotation,
if one is present. Otherwise, it returns null
(no known output schema).
outputSchema
in class EvalFunc<java.lang.Double>
input
- Schema of the inputpublic java.util.List<FuncSpec> getArgToFuncMapping() throws FrontendException
EvalFunc
getArgToFuncMapping
in class EvalFunc<java.lang.Double>
FrontendException
public void accumulate(Tuple b) throws java.io.IOException
Accumulator
accumulate
in interface Accumulator<java.lang.Double>
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.IOException
public void cleanup()
Accumulator
cleanup
in interface Accumulator<java.lang.Double>
public java.lang.Double getValue()
Accumulator
getValue
in interface Accumulator<java.lang.Double>
Copyright © 2007-2012 The Apache Software Foundation