如何从自定义项返回元组?我知道如何从自定义项返回字符串。有人能用一个简单的例子向我解释如何从udf返回元组吗?
7kqas0il1#
对于python udf,@outputschema定义了一个元组或字符串。例如:
@outputSchema("record: {(Id, name, age)}")
vlju58qv2#
用下面的元组替换字符串。。
public class YourUdf extends EvalFunc<Tuple> { public Tuple exec(Tuple input) throws IOException { DefaultTuple dt = new DefaultTuple();//creating tuple object //using tuple object you can add the values //your code here; return dt; } }
2条答案
按热度按时间7kqas0il1#
对于python udf,@outputschema定义了一个元组或字符串。例如:
vlju58qv2#
用下面的元组替换字符串。。