aboutsummaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorJey Kottalam <jey@cs.berkeley.edu>2013-08-21 14:25:53 -0700
committerJey Kottalam <jey@cs.berkeley.edu>2013-08-21 14:25:53 -0700
commit66e7a38a3229eeb6d980193048ebebcda1522acb (patch)
tree352ab3e7488059ca1c64e9669fc34510b2f884d7 /conf
parent31644a011c1c61ca010b91dc83373e15960f4d23 (diff)
downloadspark-66e7a38a3229eeb6d980193048ebebcda1522acb.tar.gz
spark-66e7a38a3229eeb6d980193048ebebcda1522acb.tar.bz2
spark-66e7a38a3229eeb6d980193048ebebcda1522acb.zip
Allow build configuration to be set in conf/spark-env.sh
Diffstat (limited to 'conf')
-rwxr-xr-xconf/spark-env.sh.template10
1 files changed, 9 insertions, 1 deletions
diff --git a/conf/spark-env.sh.template b/conf/spark-env.sh.template
index c978db00d9..eefd1f86c5 100755
--- a/conf/spark-env.sh.template
+++ b/conf/spark-env.sh.template
@@ -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"