Last active
July 13, 2019 06:58
-
-
Save minjejeon/fe0af3f3ada2b9e372fc7a3f95be1481 to your computer and use it in GitHub Desktop.
spark cluster on windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| start /b spark-master.cmd | |
| timeout 2 > NUL | |
| start /b spark-worker.cmd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %SPARK_HOME%\bin\spark-class org.apache.spark.deploy.master.Master -h localhost -p 7077 --webui-port 8080 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %SPARK_HOME%\bin\spark-class org.apache.spark.deploy.worker.Worker spark://localhost:7077 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment