@Internal public class HiveGenericUDTF extends TableFunction<Row> implements HiveFunction<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF>
GenericUDTF
.HiveFunction.HiveFunctionInputStrategy, HiveFunction.HiveFunctionOutputStrategy
Constructor and Description |
---|
HiveGenericUDTF(HiveFunctionWrapper<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF> hiveFunctionWrapper,
HiveShim hiveShim) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Tear-down method for user-defined function.
|
void |
eval(Object... args) |
HiveFunctionWrapper<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF> |
getFunctionWrapper()
Gets the wrapper for the Hive function.
|
static org.apache.hadoop.hive.serde2.objectinspector.StandardStructObjectInspector |
getStandardStructObjectInspector(org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector[] argumentInspectors) |
TypeInference |
getTypeInference(DataTypeFactory typeFactory)
Returns the logic for performing type inference of a call to this function definition.
|
DataType |
inferReturnType()
Infers the return type of the function.
|
void |
open(FunctionContext context)
Setup method for user-defined function.
|
void |
setArguments(CallContext callContext)
Sets input arguments for the function.
|
protected void |
setCollector(org.apache.hadoop.hive.ql.udf.generic.Collector collector) |
collect, finish, getKind, getParameterTypes, getResultType, setCollector
functionIdentifier, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
createTypeInference
getRequirements, isDeterministic, supportsConstantFolding
public HiveGenericUDTF(HiveFunctionWrapper<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF> hiveFunctionWrapper, HiveShim hiveShim)
public void open(FunctionContext context) throws Exception
UserDefinedFunction
open
in class UserDefinedFunction
Exception
@VisibleForTesting protected final void setCollector(org.apache.hadoop.hive.ql.udf.generic.Collector collector)
public void eval(Object... args) throws org.apache.hadoop.hive.ql.metadata.HiveException
org.apache.hadoop.hive.ql.metadata.HiveException
public void close() throws Exception
UserDefinedFunction
close
in class UserDefinedFunction
Exception
public TypeInference getTypeInference(DataTypeFactory typeFactory)
UserDefinedFunction
The 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 FunctionDefinition
getTypeInference
in class TableFunction<Row>
public void setArguments(CallContext callContext)
HiveFunction
setArguments
in interface HiveFunction<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF>
public DataType inferReturnType() throws org.apache.hadoop.hive.ql.exec.UDFArgumentException
HiveFunction
HiveFunction.setArguments(CallContext)
is called.inferReturnType
in interface HiveFunction<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF>
org.apache.hadoop.hive.ql.exec.UDFArgumentException
- can be thrown if the input arguments are invalid.public HiveFunctionWrapper<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF> getFunctionWrapper()
HiveFunction
getFunctionWrapper
in interface HiveFunction<org.apache.hadoop.hive.ql.udf.generic.GenericUDTF>
public static org.apache.hadoop.hive.serde2.objectinspector.StandardStructObjectInspector getStandardStructObjectInspector(org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector[] argumentInspectors)
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.