зеркало из https://github.com/microsoft/spark.git
19 строки
617 B
Bash
Executable File
19 строки
617 B
Bash
Executable File
# included in all the spark scripts with source command
|
|
# should not be executable directly
|
|
# also should not be passed any arguments, since we need original $*
|
|
|
|
# resolve links - $0 may be a softlink
|
|
this="${BASH_SOURCE-$0}"
|
|
common_bin=$(cd -P -- "$(dirname -- "$this")" && pwd -P)
|
|
script="$(basename -- "$this")"
|
|
this="$common_bin/$script"
|
|
|
|
# convert relative path to absolute path
|
|
config_bin=`dirname "$this"`
|
|
script=`basename "$this"`
|
|
config_bin=`cd "$config_bin"; pwd`
|
|
this="$config_bin/$script"
|
|
|
|
export SPARK_PREFIX=`dirname "$this"`/..
|
|
export SPARK_HOME=${SPARK_PREFIX}
|
|
export SPARK_CONF_DIR="$SPARK_HOME/conf" |