aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2012-10-13 16:20:25 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2012-10-13 16:20:25 -0700
commit4a3e9cf69c7ccca8bc287de57e51f5ed0ab55a8a (patch)
treea781f09c886dbc7c976c6892ebf9f80dd4fd31d7 /run
parentce6b5a3ee5683298890d989b0b518cdf1ed53399 (diff)
downloadspark-4a3e9cf69c7ccca8bc287de57e51f5ed0ab55a8a.tar.gz
spark-4a3e9cf69c7ccca8bc287de57e51f5ed0ab55a8a.tar.bz2
spark-4a3e9cf69c7ccca8bc287de57e51f5ed0ab55a8a.zip
Document how to configure SPARK_MEM & co on a per-job basis
Diffstat (limited to 'run')
-rwxr-xr-xrun7
1 files changed, 0 insertions, 7 deletions
diff --git a/run b/run
index cb1499c6f9..15db23bbe0 100755
--- a/run
+++ b/run
@@ -19,12 +19,6 @@ if [ -z "$SCALA_HOME" ]; then
exit 1
fi
-# If the user specifies a Mesos JAR, put it before our included one on the classpath
-MESOS_CLASSPATH=""
-if [ -n "$MESOS_JAR" ] ; then
- MESOS_CLASSPATH="$MESOS_JAR"
-fi
-
# Figure out how much memory to use per executor and set it as an environment
# variable so that our process sees it and can report it to Mesos
if [ -z "$SPARK_MEM" ] ; then
@@ -49,7 +43,6 @@ BAGEL_DIR="$FWDIR/bagel"
# Build up classpath
CLASSPATH="$SPARK_CLASSPATH"
-CLASSPATH+=":$MESOS_CLASSPATH"
CLASSPATH+=":$FWDIR/conf"
CLASSPATH+=":$CORE_DIR/target/scala-$SCALA_VERSION/classes"
if [ -n "$SPARK_TESTING" ] ; then