@Internal public class PythonTableAggregateFunction extends TableAggregateFunction implements PythonFunction
TableAggregateFunction.RetractableCollector<T>| Constructor and Description |
|---|
PythonTableAggregateFunction(String name,
byte[] serializedTableAggregateFunction,
DataType[] inputTypes,
DataType resultType,
DataType accumulatorType,
PythonFunctionKind pythonFunctionKind,
boolean deterministic,
boolean takesRowAsInput,
PythonEnv pythonEnv) |
PythonTableAggregateFunction(String name,
byte[] serializedTableAggregateFunction,
PythonFunctionKind pythonFunctionKind,
boolean deterministic,
boolean takesRowAsInput,
PythonEnv pythonEnv) |
PythonTableAggregateFunction(String name,
byte[] serializedTableAggregateFunction,
String[] inputTypesString,
String resultTypeString,
String accumulatorTypeString,
PythonFunctionKind pythonFunctionKind,
boolean deterministic,
boolean takesRowAsInput,
PythonEnv pythonEnv) |
| Modifier and Type | Method and Description |
|---|---|
void |
accumulate(Object accumulator,
Object... args) |
Object |
createAccumulator()
Creates and initializes the accumulator for this
ImperativeAggregateFunction. |
void |
emitValue(Object accumulator,
Object out) |
org.apache.flink.api.common.typeinfo.TypeInformation |
getAccumulatorType()
Returns the
TypeInformation of the ImperativeAggregateFunction's accumulator. |
PythonEnv |
getPythonEnv()
Returns the Python execution environment.
|
PythonFunctionKind |
getPythonFunctionKind()
Returns the kind of the user-defined python function.
|
org.apache.flink.api.common.typeinfo.TypeInformation |
getResultType()
Returns the
TypeInformation of the ImperativeAggregateFunction's result. |
byte[] |
getSerializedPythonFunction()
Returns the serialized representation of the user-defined python function.
|
TypeInference |
getTypeInference(DataTypeFactory typeFactory)
Returns the logic for performing type inference of a call to this function definition.
|
boolean |
isDeterministic()
Returns information about the determinism of the function's results.
|
boolean |
takesRowAsInput()
Returns Whether the Python function takes row as input instead of each columns of a row.
|
String |
toString()
Returns the name of the UDF that is used for plan explanation and logging.
|
getKindclose, functionIdentifier, openclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetRequirementspublic PythonTableAggregateFunction(String name, byte[] serializedTableAggregateFunction, DataType[] inputTypes, DataType resultType, DataType accumulatorType, PythonFunctionKind pythonFunctionKind, boolean deterministic, boolean takesRowAsInput, PythonEnv pythonEnv)
public PythonTableAggregateFunction(String name, byte[] serializedTableAggregateFunction, String[] inputTypesString, String resultTypeString, String accumulatorTypeString, PythonFunctionKind pythonFunctionKind, boolean deterministic, boolean takesRowAsInput, PythonEnv pythonEnv)
public PythonTableAggregateFunction(String name, byte[] serializedTableAggregateFunction, PythonFunctionKind pythonFunctionKind, boolean deterministic, boolean takesRowAsInput, PythonEnv pythonEnv)
public Object createAccumulator()
ImperativeAggregateFunctionImperativeAggregateFunction.
The accumulator is an intermediate data structure that stores the aggregated values until a final aggregation result is computed.
createAccumulator in class ImperativeAggregateFunctionpublic byte[] getSerializedPythonFunction()
PythonFunctiongetSerializedPythonFunction in interface PythonFunctionpublic PythonEnv getPythonEnv()
PythonFunctiongetPythonEnv in interface PythonFunctionpublic PythonFunctionKind getPythonFunctionKind()
PythonFunctiongetPythonFunctionKind in interface PythonFunctionpublic boolean takesRowAsInput()
PythonFunctiontakesRowAsInput in interface PythonFunctionpublic boolean isDeterministic()
FunctionDefinitionIt returns true if and only if a call to this function is guaranteed to
always return the same result given the same parameters. true is assumed by
default. If the function is not purely functional like random(), date(), now(), ...
this method must return false.
Furthermore, return false if the planner should always execute this function
on the cluster side. In other words: the planner should not perform constant expression
reduction during planning for constant calls to this function.
isDeterministic in interface FunctionDefinitionpublic org.apache.flink.api.common.typeinfo.TypeInformation getResultType()
ImperativeAggregateFunctionTypeInformation of the ImperativeAggregateFunction's result.getResultType in class ImperativeAggregateFunctionTypeInformation of the ImperativeAggregateFunction's result or
null if the result type should be automatically inferred.public org.apache.flink.api.common.typeinfo.TypeInformation getAccumulatorType()
ImperativeAggregateFunctionTypeInformation of the ImperativeAggregateFunction's accumulator.getAccumulatorType in class ImperativeAggregateFunctionTypeInformation of the ImperativeAggregateFunction's accumulator
or null if the accumulator type should be automatically inferred.public TypeInference getTypeInference(DataTypeFactory typeFactory)
UserDefinedFunctionThe type inference process is responsible for inferring unknown types of input arguments, validating input arguments, and producing result types. The type inference process happens independent of a function body. The output of the type inference is used to search for a corresponding runtime implementation.
Instances of type inference can be created by using TypeInference.newBuilder().
See BuiltInFunctionDefinitions for concrete usage examples.
The type inference for user-defined functions is automatically extracted using reflection.
It does this by analyzing implementation methods such as eval() or accumulate() and
the generic parameters of a function class if present. If the reflective information is not
sufficient, it can be supported and enriched with DataTypeHint and FunctionHint annotations.
Note: Overriding this method is only recommended for advanced users. If a custom type inference is specified, it is the responsibility of the implementer to make sure that the output of the type inference process matches with the implementation method:
The implementation method must comply with each DataType.getConversionClass()
returned by the type inference. For example, if DataTypes.TIMESTAMP(3).bridgedTo(java.sql.Timestamp.class) is an expected argument type, the
method must accept a call eval(java.sql.Timestamp).
Regular Java calling semantics (including type widening and autoboxing) are applied when
calling an implementation method which means that the signature can be eval(java.lang.Object).
The runtime will take care of converting the data to the data format specified by the
DataType.getConversionClass() coming from the type inference logic.
getTypeInference in interface FunctionDefinitiongetTypeInference in class TableAggregateFunctionpublic String toString()
UserDefinedFunctiontoString in class UserDefinedFunctionCopyright © 2014–2024 The Apache Software Foundation. All rights reserved.