public class SUBTRACT extends EvalFunc<DataBag>
The implementation assumes that both bags being passed to this function will fit entirely into memory simultaneously. If that is not the case the UDF will still function, but it will be very slow.
EvalFunc.SchemaType
log, pigLogger, reporter, returnType
Constructor and Description |
---|
SUBTRACT() |
Modifier and Type | Method and Description |
---|---|
boolean |
allowCompileTimeCalculation()
Whether the UDF should be evaluated at compile time if all inputs are constant.
|
DataBag |
exec(Tuple input)
Compares the two bag fields from input Tuple and returns a new bag composed of elements of first bag not in the second bag.
|
finish, getArgToFuncMapping, getCacheFiles, getInputSchema, getLogger, getPigLogger, getReporter, getReturnType, getSchemaName, getSchemaType, getShipFiles, isAsynchronous, needEndOfAllInputProcessing, outputSchema, progress, setEndOfAllInput, setInputSchema, setPigLogger, setReporter, setUDFContextSignature, warn
public DataBag exec(Tuple input) throws IOException
exec
in class EvalFunc<DataBag>
input
- a tuple with exactly two bag fields.IOException
- if there are not exactly two fields in a tuple or if they are not DataBag
.public boolean allowCompileTimeCalculation()
EvalFunc
allowCompileTimeCalculation
in class EvalFunc<DataBag>
Copyright © 2007-2012 The Apache Software Foundation