在spark shell中导入一个包出错:
import x.y
但是报错:
<console>:29: error: object y is not a member of package x
解决方法:
打开spark shell时将x.y包加入
bin/spark-shell --packages x.y
也看到有人说加上 root 有效:
import _root_.x.y
还有人是重启后有用了。
在spark shell中导入一个包出错:
import x.y
但是报错:
<console>:29: error: object y is not a member of package x
解决方法:
打开spark shell时将x.y包加入
bin/spark-shell --packages x.y
也看到有人说加上 root 有效:
import _root_.x.y
还有人是重启后有用了。