scala
coder的有生之年
每天进步一点点
展开
-
Schema for type Unit is not supported
//自定义函数实现需求 def userLpdf(id:String,length:Int,name:String):Unit={ val len=length-id.length "0" * len+id }自定义udf函数的时候,爆出错误Schema for type Unit is not supported实际上原因是自定义的函数没有返回值,所以导致出错,把Unit改为String或者直接省去就可以解决问题...原创 2022-02-20 12:24:22 · 7431 阅读 · 0 评论 -
java.lang.Exception: Test class should have exactly one public constructor
object rdd { /* rdd 的创建方式 弹性分布式数据集 1、通过集合集合创建 sc.makerdd/parallelize @test 只能用在class中,并且标注的方法返回值只能式unit*/import org.apache.spark.{SparkConf, SparkContext} val sc = new SparkContext( new SparkConf().setMaster("local[4]").setAppName("TEST") .原创 2022-02-11 18:01:42 · 1046 阅读 · 0 评论 -
String index out of range: 1
scala学习原创 2022-02-07 19:14:03 · 1316 阅读 · 0 评论