Spark : check your cluster UI to ensure that workers are registered

前端 未结 5 666
广开言路
广开言路 2021-01-07 23:55

I have a simple program in Spark:

/* SimpleApp.scala */
import org.apache.spark.SparkContext
import org.apache.spark.SparkContext._
import org.apache.spark.S         


        
5条回答
  •  南方客
    南方客 (楼主)
    2021-01-08 00:20

    You don't have any workers to execute the job. There are no available cores for the job to execute and that's the reason the job's state is still in 'Waiting'.

    If you have no workers registered with Cloudera how will the jobs execute?

提交回复
热议问题