GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
2
Releases
Issues
3
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
docker-analytics
Browse code
Used SPARK_HOME instead of absolute path
master
spark3
1 parent
4286a15
commit
f9461ed00764abb0925bc93befcfa12b57dfdb0e
Nigel Stanger
authored
on 13 May 2019
Patch
Showing
2 changed files
spark/start-master.sh
spark/start-worker.sh
Ignore Space
Show notes
View
spark/start-master.sh
#!/bin/sh $SPARK_HOME/bin/spark-class org.apache.spark.deploy.master.Master \ --ip $SPARK_LOCAL_IP \ --port $SPARK_MASTER_PORT \ --webui-port $SPARK_MASTER_WEBUI_PORT
#!/bin/sh /usr/local/spark/bin/spark-class org.apache.spark.deploy.master.Master \ --ip $SPARK_LOCAL_IP \ --port $SPARK_MASTER_PORT \ --webui-port $SPARK_MASTER_WEBUI_PORT
Ignore Space
Show notes
View
spark/start-worker.sh
#!/bin/sh $SPARK_HOME/bin/spark-class org.apache.spark.deploy.worker.Worker \ --webui-port $SPARK_WORKER_WEBUI_PORT \ $SPARK_MASTER
#!/bin/sh /usr/local/spark/bin/spark-class org.apache.spark.deploy.worker.Worker \ --webui-port $SPARK_WORKER_WEBUI_PORT \ $SPARK_MASTER
Show line notes below