Spark ExecutorLostFailure

后端 未结 6 1954
悲&欢浪女
悲&欢浪女 2021-02-04 18:02

I\'m trying to run spark 1.5 on mesos in cluster mode. I\'m able to launch the dispatcher and to run the spark-submit. But when I do so, the spark driver fails with the followin

6条回答
  •  無奈伤痛
    2021-02-04 18:54

    In your event logs or UI check for large GC times. If you have a persist, removing it can free up more memory for your executors (at the expense of running stages more than once). If you are using a broadcast, see if you can reduce its footprint. Or just add more memory.

提交回复
热议问题