aboutsummaryrefslogtreecommitdiff
path: root/sbin/spark-daemon.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/spark-daemon.sh')
-rwxr-xr-xsbin/spark-daemon.sh16
1 files changed, 11 insertions, 5 deletions
diff --git a/sbin/spark-daemon.sh b/sbin/spark-daemon.sh
index bd476b400e..cba475e2dd 100755
--- a/sbin/spark-daemon.sh
+++ b/sbin/spark-daemon.sh
@@ -62,7 +62,7 @@ then
shift
fi
-startStop=$1
+option=$1
shift
command=$1
shift
@@ -122,9 +122,9 @@ if [ "$SPARK_NICENESS" = "" ]; then
fi
-case $startStop in
+case $option in
- (start)
+ (start|spark-submit)
mkdir -p "$SPARK_PID_DIR"
@@ -142,8 +142,14 @@ case $startStop in
spark_rotate_log "$log"
echo starting $command, logging to $log
- cd "$SPARK_PREFIX"
- nohup nice -n $SPARK_NICENESS "$SPARK_PREFIX"/bin/spark-class $command "$@" >> "$log" 2>&1 < /dev/null &
+ if [ $option == spark-submit ]; then
+ source "$SPARK_HOME"/bin/utils.sh
+ gatherSparkSubmitOpts "$@"
+ nohup nice -n $SPARK_NICENESS "$SPARK_PREFIX"/bin/spark-submit --class $command \
+ "${SUBMISSION_OPTS[@]}" spark-internal "${APPLICATION_OPTS[@]}" >> "$log" 2>&1 < /dev/null &
+ else
+ nohup nice -n $SPARK_NICENESS "$SPARK_PREFIX"/bin/spark-class $command "$@" >> "$log" 2>&1 < /dev/null &
+ fi
newpid=$!
echo $newpid > $pid
sleep 2