spark-submit报错java.lang.IllegalStateException: User did not initialize spark context!

在IDEA上编写spark程序,打成jar包之后,上传到服务器,然后以yarn cluster模式提交:bin/spark-submit --class com.BRC.spark.WordCount --master yarn --deploy-mode cluster ./wordcount-1.0-SNAPSHOT.jar hdfs://test-szzt01:8020/test/hello.txt hdfs://test-szzt01:8020/test/output2
出现下列错误:
spark-submit报错java.lang.IllegalStateException: User did not initialize spark context!_第1张图片
查看resource manager的8088端口,找到任务所在的log日志:
spark-submit报错java.lang.IllegalStateException: User did not initialize spark context!_第2张图片
出现这种情况的原因是在IDEA中编写程序时,加入了如下代码
在这里插入图片描述

你可能感兴趣的:(spark,IDEA)