aboutsummaryrefslogtreecommitdiff
path: root/sbin/stop-mesos-dispatcher.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/stop-mesos-dispatcher.sh')
-rwxr-xr-xsbin/stop-mesos-dispatcher.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/sbin/stop-mesos-dispatcher.sh b/sbin/stop-mesos-dispatcher.sh
index 5c0b4e051d..b13e018c7d 100755
--- a/sbin/stop-mesos-dispatcher.sh
+++ b/sbin/stop-mesos-dispatcher.sh
@@ -24,5 +24,10 @@ fi
. "${SPARK_HOME}/sbin/spark-config.sh"
-"${SPARK_HOME}/sbin"/spark-daemon.sh stop org.apache.spark.deploy.mesos.MesosClusterDispatcher 1
+if [ "$SPARK_MESOS_DISPATCHER_NUM" = "" ]; then
+ SPARK_MESOS_DISPATCHER_NUM=1
+fi
+
+"${SPARK_HOME}/sbin"/spark-daemon.sh stop org.apache.spark.deploy.mesos.MesosClusterDispatcher \
+ $SPARK_MESOS_DISPATCHER_NUM