Repository: spark
Updated Branches:
  refs/heads/branch-1.0 b5e968696 -> 7e59335eb


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 <cmcc...@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

(cherry picked from commit 6e9fb6320bec3371bc9c010ccbc1b915f500486b)
Signed-off-by: Reynold Xin <r...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7e59335e
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7e59335e
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7e59335e

Branch: refs/heads/branch-1.0
Commit: 7e59335eb958bea495c43e687a1b425b28121d75
Parents: b5e9686
Author: Colin Patrick Mccabe <cmcc...@cloudera.com>
Authored: Sat May 24 22:39:27 2014 -0700
Committer: Reynold Xin <r...@apache.org>
Committed: Sat May 24 22:39:34 2014 -0700

----------------------------------------------------------------------
 bin/spark-submit | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/7e59335e/bin/spark-submit
----------------------------------------------------------------------
diff --git a/bin/spark-submit b/bin/spark-submit
index 63903b1..9e7cece 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[@]}"
 

Reply via email to