File tree Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ sorttable.js
3030.*json
3131.*data
3232.*log
33- .*conf
3433cloudpickle.py
3534join.py
3635SparkExprTyper.scala
Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ FWDIR="$(cd `dirname $0`/..; pwd)"
2323# Export this as SPARK_HOME
2424export SPARK_HOME=" $FWDIR "
2525
26- # Load utility functions
27- . " $FWDIR /bin/utils.sh"
26+ source $FWDIR /bin/utils.sh
2827
2928SCALA_VERSION=2.10
3029
Original file line number Diff line number Diff line change @@ -41,8 +41,7 @@ if [[ "$@" = *--help ]] || [[ "$@" = *-h ]]; then
4141 usage
4242fi
4343
44- # Load utility functions
45- . " $FWDIR /bin/utils.sh"
44+ source $FWDIR /bin/utils.sh
4645
4746SUBMIT_USAGE_FUNCTION=usage
4847gatherSparkSubmitOpts " $@ "
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ DEFAULT_PROPERTIES_FILE="$SPARK_HOME/conf/spark-defaults.conf"
4242PROPERTIES_FILE=${PROPERTIES_FILE:- " $DEFAULT_PROPERTIES_FILE " }
4343
4444# For client mode, the driver will be launched in the same JVM that launches
45- # SparkSubmit, so we to read the properties file for any class paths, library
46- # paths, java options and memory early on. Otherwise, it will be too late by
47- # the time the JVM has started.
45+ # SparkSubmit, so we need to read the properties file for any extra class paths,
46+ # library paths, java options and memory early on. Otherwise, it will be too
47+ # late by the time the JVM has started.
4848
4949if [ " $DEPLOY_MODE " == " client" ]; then
5050 if [ -n " $DRIVER_MEMORY " ]; then
You can’t perform that action at this time.
0 commit comments