aboutsummaryrefslogtreecommitdiff
path: root/bin/spark-submit
diff options
context:
space:
mode:
authorColin Patrick Mccabe <cmccabe@cloudera.com>2014-05-24 22:39:27 -0700
committerReynold Xin <rxin@apache.org>2014-05-24 22:39:27 -0700
commit6e9fb6320bec3371bc9c010ccbc1b915f500486b (patch)
tree7fbdd6a22b3b95c4218e157fb57907e7096b1640 /bin/spark-submit
parent5afe6af0b192ce7e908634992e8752537b1c4ed1 (diff)
downloadspark-6e9fb6320bec3371bc9c010ccbc1b915f500486b.tar.gz
spark-6e9fb6320bec3371bc9c010ccbc1b915f500486b.tar.bz2
spark-6e9fb6320bec3371bc9c010ccbc1b915f500486b.zip
spark-submit: add exec at the end of the script
Add an 'exec' at the end of the spark-submit script, to avoid keeping a bash process hanging around while it runs. This makes ps look a little bit nicer. Author: Colin Patrick Mccabe <cmccabe@cloudera.com> Closes #858 from cmccabe/SPARK-1907 and squashes the following commits: 7023b64 [Colin Patrick Mccabe] spark-submit: add exec at the end of the script
Diffstat (limited to 'bin/spark-submit')
-rwxr-xr-xbin/spark-submit2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/spark-submit b/bin/spark-submit
index 63903b17a2..9e7cecedd0 100755
--- a/bin/spark-submit
+++ b/bin/spark-submit
@@ -41,5 +41,5 @@ if [ -n "$DRIVER_MEMORY" ] && [ $DEPLOY_MODE == "client" ]; then
export SPARK_DRIVER_MEMORY=$DRIVER_MEMORY
fi
-$SPARK_HOME/bin/spark-class org.apache.spark.deploy.SparkSubmit "${ORIG_ARGS[@]}"
+exec $SPARK_HOME/bin/spark-class org.apache.spark.deploy.SparkSubmit "${ORIG_ARGS[@]}"