Allow build configuration to be set in conf/spark-env.sh

This commit is contained in:
Jey Kottalam 2013-08-21 14:25:53 -07:00
Родитель 31644a011c
Коммит 66e7a38a32
3 изменённых файлов: 23 добавлений и 7 удалений

Просмотреть файл

@ -19,6 +19,14 @@
# - SPARK_JAVA_OPTS, to set the jvm options for executor backend. Note: This is
# only for node-specific options, whereas app-specific options should be set
# in the application.
# Examples of node-speicic options : -Dspark.local.dir, GC related options.
# Examples of node-specific options : -Dspark.local.dir, GC related options.
# Examples of app-specific options : -Dspark.serializer
# Hadoop version to build against
# export SPARK_HADOOP_VERSION=1.0.4
# Uncomment this when using a Hadoop version with YARN
# export SPARK_WITH_YARN=true
# Extra arguments to pass to `java` when building with SBT
# export EXTRA_BUILD_ARGS="$EXTRA_BUILD_ARGS -Xmx8g"

Просмотреть файл

@ -50,6 +50,11 @@ SPARK_HADOOP_VERSION=1.0.4
SPARK_WITH_YARN=false
MAKE_TGZ=false
# Load configuration
if [ -f "$FWDIR/conf/spark-env.sh" ]; then
source "$FWDIR/conf/spark-env.sh"
fi
# Parse arguments
while (( "$#" )); do
case $1 in

15
sbt/sbt
Просмотреть файл

@ -17,12 +17,15 @@
# limitations under the License.
#
EXTRA_ARGS=""
if [ "$MESOS_HOME" != "" ]; then
EXTRA_ARGS="-Djava.library.path=$MESOS_HOME/lib/java"
fi
export SPARK_HOME=$(cd "$(dirname $0)/.." 2>&1 >/dev/null ; pwd)
export SPARK_TESTING=1 # To put test classes on classpath
java -Xmx1200m -XX:MaxPermSize=350m -XX:ReservedCodeCacheSize=128m $EXTRA_ARGS -jar $SPARK_HOME/sbt/sbt-launch-*.jar "$@"
if [ -f "$SPARK_HOME/conf/spark-env.sh" ]; then
source "$SPARK_HOME/conf/spark-env.sh"
fi
if [ "$MESOS_HOME" != "" ]; then
EXTRA_BUILD_ARGS="$EXTRA_BUILD_ARGS -Djava.library.path=$MESOS_HOME/lib/java"
fi
java -Xmx1200m -XX:MaxPermSize=350m -XX:ReservedCodeCacheSize=128m $EXTRA_BUILD_ARGS -jar $SPARK_HOME/sbt/sbt-launch-*.jar "$@"