Spark ExecutorLostFailure

后端 未结 6 1838
悲&欢浪女
悲&欢浪女 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:34

    Your executors might be getting lost because of many different reasons, but the information you're getting (and showing) is not enough to understand why.

    Even if I have no experience with Mesos in cluster mode, it seems to me that what you show as the executor logs are somehow incomplete: if you could get their complete logs you will see they are very helpful to determine the cause of such failures. I took a look at:

    http://mesos.apache.org/documentation/latest/configuration/

    and you should get the logs you're looking for from either their stderr (maybe you're just showing their stdout?). You could also try to use the parameter --log_dir=VALUE to dump their logs and understand better the situation.

提交回复
热议问题