gpt4 book ai didi

java - 为什么我不能使用 callUDF 方法?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:36:51 26 4
gpt4 key购买 nike

我使用 spark 1.6.1,并使用 java 编写代码。当我使用 callUDF() 时,它显示

The method callUDF(String, Column) is undefined for the type PhaseOne

并且 callUdf() 不起作用。我的代码如下:

sqlContext.udf().register("stringToLong", new UDF1<String, Long>() {

@Override
public Long call(String arg0) throws Exception {
// TODO Auto-generated method stub
IPTypeConvert itc = new IPTypeConvert();
return itc.stringtoLong(arg0);
}
}, DataTypes.LongType);
DataFrame interDF = initInterDF.withColumn("interIPInt", callUDF("stringToLong", initInterDF.col("interIP")));

最佳答案

必须在开头加上:

import static org.apache.spark.sql.functions.callUDF;

然后使用它:

sqlContext.udf().register("stringToLong", new UDF1<String, Long>() {

@Override
public Long call(String arg0) throws Exception {
// TODO Auto-generated method stub
IPTypeConvert itc = new IPTypeConvert();
return itc.stringtoLong(arg0);
}
}, DataTypes.LongType);
DataFrame interDF = initInterDF.withColumn("interIPInt", callUDF("stringToLong", initInterDF.col("interIP")));

关于java - 为什么我不能使用 callUDF 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40830607/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com