Github user pwendell commented on a diff in the pull request:

    https://github.com/apache/spark/pull/1845#discussion_r16428811
  
    --- Diff: bin/spark-submit ---
    @@ -17,28 +17,46 @@
     # limitations under the License.
     #
     
    +# NOTE: Any changes in this file must be reflected in 
SparkClassLauncher.scala!
    +
     export SPARK_HOME="$(cd `dirname $0`/..; pwd)"
     ORIG_ARGS=("$@")
     
     while (($#)); do
       if [ "$1" = "--deploy-mode" ]; then
    -    DEPLOY_MODE=$2
    +    SPARK_SUBMIT_DEPLOY_MODE=$2
    +  elif [ "$1" = "--properties-file" ]; then
    +    SPARK_SUBMIT_PROPERTIES_FILE=$2
       elif [ "$1" = "--driver-memory" ]; then
    -    DRIVER_MEMORY=$2
    +    export SPARK_SUBMIT_DRIVER_MEMORY=$2
       elif [ "$1" = "--driver-library-path" ]; then
         export SPARK_SUBMIT_LIBRARY_PATH=$2
       elif [ "$1" = "--driver-class-path" ]; then
         export SPARK_SUBMIT_CLASSPATH=$2
       elif [ "$1" = "--driver-java-options" ]; then
    -    export SPARK_SUBMIT_OPTS=$2
    +    export SPARK_SUBMIT_JAVA_OPTS=$2
       fi
       shift
     done
     
    -DEPLOY_MODE=${DEPLOY_MODE:-"client"}
    +DEFAULT_PROPERTIES_FILE="$SPARK_HOME/conf/spark-defaults.conf"
    +export SPARK_SUBMIT_DEPLOY_MODE=${SPARK_SUBMIT_DEPLOY_MODE:-"client"}
    +export 
SPARK_SUBMIT_PROPERTIES_FILE=${SPARK_SUBMIT_PROPERTIES_FILE:-"$DEFAULT_PROPERTIES_FILE"}
    +
    +# For client mode, the driver will be launched in the same JVM that 
launches
    +# SparkSubmit, so we may need to read the properties file for any extra 
class
    +# paths, library paths, java options and memory early on. Otherwise, it 
will
    +# be too late by the time the JVM has started.
     
    -if [ -n "$DRIVER_MEMORY" ] && [ $DEPLOY_MODE == "client" ]; then
    -  export SPARK_DRIVER_MEMORY=$DRIVER_MEMORY
    +if [ "$SPARK_SUBMIT_DEPLOY_MODE" == "client" ]; then
    +  # Parse the properties file only if the special configs exist
    +  contains_special_configs=$(
    +    grep -e "spark.driver.extra*\|spark.driver.memory" 
"$SPARK_SUBMIT_PROPERTIES_FILE" | \
    --- End diff --
    
    if SPARK_SUBMIT_PROPERTIES_FILE does not exist, will this line cause the 
script to fail?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to