我制作了一个简单的UDF来转换或提取spark中时间表中的时间字段中的一些值。我注册了该函数,但当我使用sql调用该函数时,它会抛出一个NullPointerException。下面是我的功能和执行过程。我正在使用齐柏林飞船。令人遗憾的是,它昨天还在工作,但今天早上就停止了。
功能
def convert( time:String ) : String = {
val sdf = new java.text.SimpleDateFormat("HH:mm")
val time1 = sdf.parse(time)
return sdf.format(time1)
}
注册功能
sqlContext.udf.register("convert",convert _)
在没有SQL的情况下测试函数——这适用于
convert(12:12:12) -> returns 12:12
用齐柏林飞艇中的SQL测试函数,此失败。
%sql
select convert(time) from temptable limit 10
临时的结构
root
|-- date: string (nullable = true)
|-- time: string (nullable = true)
|-- serverip: string (nullable = true)
|-- request: string (nullable = true)
|-- resource: string (nullable = true)
|-- protocol: integer (nullable = true)
|-- sourceip: string (nullable = true)
这是我正在进行的堆叠比赛的一部分。
java.lang.NullPointerException
at org.apache.hadoop.hive.ql.exec.FunctionRegistry.getFunctionInfo(FunctionRegistry.java:643)
at org.apache.hadoop.hive.ql.exec.FunctionRegistry.getFunctionInfo(FunctionRegistry.java:652)
at org.apache.spark.sql.hive.HiveFunctionRegistry.lookupFunction(hiveUdfs.scala:54)
at org.apache.spark.sql.hive.HiveContext$$anon$3.org$apache$spark$sql$catalyst$analysis$OverrideFunctionRegistry$$super$lookupFunction(HiveContext.scala:376)
at org.apache.spark.sql.catalyst.analysis.OverrideFunctionRegistry$$anonfun$lookupFunction$2.apply(FunctionRegistry.scala:44)
at org.apache.spark.sql.catalyst.analysis.OverrideFunctionRegistry$$anonfun$lookupFunction$2.apply(FunctionRegistry.scala:44)
at scala.Option.getOrElse(Option.scala:120)
at org.apache.spark.sql.catalyst.analysis.OverrideFunctionRegistry$class.lookupFunction(FunctionRegistry.scala:44)
使用udf而不是直接定义函数
import org.apache.spark.sql.functions._
val convert = udf[String, String](time => {
val sdf = new java.text.SimpleDateFormat("HH:mm")
val time1 = sdf.parse(time)
sdf.format(time1)
}
)
udf的输入参数是Column(或Columns)。返回类型为Column。
case class UserDefinedFunction protected[sql] (
f: AnyRef,
dataType: DataType,
inputTypes: Option[Seq[DataType]]) {
def apply(exprs: Column*): Column = {
Column(ScalaUDF(f, dataType, exprs.map(_.expr), inputTypes.getOrElse(Nil)))
}
}
您必须将函数定义为UDF。
import org.apache.spark.sql.expressions.UserDefinedFunction
import org.apache.spark.sql.functions.udf
val convertUDF: UserDefinedFunction = udf((time:String) => {
val sdf = new java.text.SimpleDateFormat("HH:mm")
val time1 = sdf.parse(time)
sdf.format(time1)
})
接下来,您将在DataFrame上应用UDF。
// assuming your DataFrame is already defined
dataFrame.withColumn("time", convertUDF(col("time"))) // using the same name replaces existing
现在,对于您的实际问题,您收到此错误的一个原因可能是因为您的DataFrame包含为null的行。如果在应用UDF之前将它们过滤掉,那么应该能够毫无问题地继续。
dataFrame.filter(col("time").isNotNull)
我很好奇在运行UDF时,除了遇到null之外,还有什么原因会导致NullPointerException,如果你发现了与我建议不同的原因,我很高兴知道。