We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c64ff80 commit b3ce9daCopy full SHA for b3ce9da
sbin/start-master.sh
@@ -22,6 +22,8 @@
22
sbin="`dirname "$0"`"
23
sbin="`cd "$sbin"; pwd`"
24
25
+ORIGINAL_ARGS="$@"
26
+
27
START_TACHYON=false
28
29
while (( "$#" )); do
@@ -53,7 +55,9 @@ if [ "$SPARK_MASTER_WEBUI_PORT" = "" ]; then
53
55
SPARK_MASTER_WEBUI_PORT=8080
54
56
fi
57
-"$sbin"/spark-daemon.sh start org.apache.spark.deploy.master.Master 1 --ip $SPARK_MASTER_IP --port $SPARK_MASTER_PORT --webui-port $SPARK_MASTER_WEBUI_PORT
58
+"$sbin"/spark-daemon.sh start org.apache.spark.deploy.master.Master 1 \
59
+ --ip $SPARK_MASTER_IP --port $SPARK_MASTER_PORT --webui-port $SPARK_MASTER_WEBUI_PORT \
60
+ $ORIGINAL_ARGS
61
62
if [ "$START_TACHYON" == "true" ]; then
63
"$sbin"/../tachyon/bin/tachyon bootstrap-conf $SPARK_MASTER_IP
0 commit comments