Hi all, I'm running the mesos cluster dispatcher, however when I submit jobs with things like jvm args, classpath order and UI port aren't added to the commandline executed by the mesos scheduler. In fact it only cares about the class, jar and num cores/mem.
https://github.com/jayv/spark/blob/mesos_cluster_params/core/src/main/scala/org/apache/spark/scheduler/cluster/mesos/MesosClusterScheduler.scala#L412-L424 I've made an attempt at adding a few of the args that I believe are useful to the MesosClusterScheduler class, which seems to solve my problem. Please have a look: https://github.com/apache/spark/pull/9752 Thanks - Jo Voordeckers