我正在努力使用callUDF功能,我总是得到函数未注册的错误。我已粘贴以下示例代码:
UDF1<String, String> func = new UDF1<String, String>(){
public String call(String s) throws Exception {
return s +"fixedString";
}
};
sqlContext.udf().register("test",func, DataTypes.StringType);
out = out.select(out.col("VERSION"),callUDF("test",out.col("STEP_EXECUTION_ID")) );
我总是收到以下错误,代码中缺少什么。
org.apache.spark.sql.AnalysisException: undefined function test;
at org.apache.spark.sql.catalyst.analysis.SimpleFunctionRegistry$$anonfun$2.apply(FunctionRegistry.scala:65)
at org.apache.spark.sql.catalyst.analysis.SimpleFunctionRegistry$$anonfun$2.apply(FunctionRegistry.scala:65)
at scala.Option.getOrElse(Option.scala:120)
at org.apache.spark.sql.catalyst.analysis.SimpleFunctionRegistry.lookupFunction(FunctionRegistry.scala:64)
答案 0 :(得分:1)
根据您的代码,似乎无法找到函数测试,因为Scala代码正在尝试进行反射并找到一个名为test的函数,该函数接受您在STEP_EXECUTION_ID列上用作ID的long或任何类型。
尝试更改UDF的参数类型以匹配列类型。像这样:
public String call(Long id) throws Exception
答案 1 :(得分:1)
我已经解决了这个问题,所以如果其他人面临类似问题,请将其发布在此处。我有两个问题,1。在一列中生成UUID 2.从列值生成计算值。
问题1:
import java.util.UUID;
public class RandomGenerator extends scala.runtime.AbstractFunction0<String> {
public String apply() {
return UUID.randomUUID().toString();
}
}
在这种情况下,无需使用sqlcontext
df.withColumn("UUID", callUDF(new RandomGenerator(), DataTypes.StringType)).show();
问题2:
在这种情况下,可以使用上述方法,或者某人也可以执行以下操作
UDF1< Integer, Integer> func = new UDF1<Integer, Integer>() {
public Integer call(Integer s) throws Exception {
return calculate(s);
}
};
sqlContext.udf().register("calculate", func, DataTypes.IntegerType);
df.select(df.col("calVal"), callUDF("calculate", df.col("value"))).show();