spark报错

2020-08-21  本文已影响0人  Rainysong

1、Exception in thread "main" org.apache.spark.SparkException: Cluster deploy mode is not applicable to Spark shells.


具体报错信息.png

解决方案:
使用命令:
spark-shell --master yarn --deploy-mode client

2、Caused by: java.lang.IllegalStateException: Cannot call methods on a stopped SparkContext.

part1.png part2.png

原因:没有关闭sc资源
解决:
sqlContext.sparkSession.close()
sc.stop()

详细检查写结束的位置,写在最后,解决问题。低级失误

多加了最后一行即解决.png
上一篇下一篇

猜你喜欢

热点阅读