I want to write RDD
to MYSQL
, which RDD
contains java.util.Date
type.
rdd.map(f=> FeatureData(
f.get("name").toString,
f.get("value").toString.toDouble,
f.get("time").asInstanceOf[Date],
f.get("period").toString))
.toDF()
In this RDD
the key of time
's value type is also java.util.Date
and it just get the error of
[See nested exception: java.lang.UnsupportedOperationException: Schema for type java.util.Date is not supported
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…