Spark: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 66: Line 66:
* [https://stackoverflow.com/questions/59249135/ Spark » Install Slave as a Daemon]
* [https://stackoverflow.com/questions/59249135/ Spark » Install Slave as a Daemon]
* [https://stackoverflow.com/questions/40166056/ Spark » As a Linux Service]
* [https://stackoverflow.com/questions/40166056/ Spark » As a Linux Service]
* [https://camel.apache.org/components/3.18.x/spark-component.html Spark » Apache Camel]
* [https://www.baeldung.com/apache-spark Spark » Introduction]
* [https://www.baeldung.com/apache-spark Spark » Introduction]
* [[Machine Learning]]
* [https://github.com/vim89/spark-spring-boot/blob/master/src/main/java/com/vitthalmirji/spring/spark/ApplicationConfig.java Spark » Spring Boot]
* [https://hive.apache.org/ Apache Hive]
* [https://aerospike.com/ Aerospike]
* [https://aerospike.com/ Aerospike]


Line 104: Line 104:


| valign="top" |
| valign="top" |
* [[Machine Learning]]
* [https://hive.apache.org/ Apache Hive]


|}
|}

Revision as of 22:46, 25 September 2022

export PYSPARK_PYTHON='/usr/bin/python3';\
export SPARK_HOME='/opt/cli/spark-3.3.0-bin-hadoop3';\
export JAVA_HOME='/usr/lib/jvm/java-17-openjdk-amd64';\
export PATH=$PATH:$SPARK_HOME/bin:$SPARK_HOME/sbin
spark-shell
pyspark
http://localhost:8080/
http://localhost:7077/
http://localhost:4040/
ssh -L 8080:localhost:8080 [email protected]
ssh -L 7077:localhost:7077 [email protected]

Master Node

sudo apt -qq update;\
export PYSPARK_PYTHON='/usr/bin/python3';\
export SPARK_HOME='/opt/cli/spark-3.3.0-bin-hadoop3';\
export JAVA_HOME='/usr/lib/jvm/java-17-openjdk-arm64';\
bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-spark-master/3.3.0.sh.txt')
sudo systemctl daemon-reload
sudo systemctl enable spark-master.service
sudo systemctl start  spark-master.service
sudo systemctl status spark-master.service

Worker Node

sudo apt -qq update;\
export PYSPARK_PYTHON='/usr/bin/python3';\
export SPARK_MASTER='spark://ns12-pc04:7077';\
export SPARK_HOME='/opt/cli/spark-3.3.0-bin-hadoop3';\
export JAVA_HOME='/usr/lib/jvm/java-17-openjdk-amd64';\
bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/apache-spark-slave/3.3.0.sh.txt')
sudo systemctl daemon-reload
sudo systemctl enable spark-slave.service
sudo systemctl start  spark-slave.service
sudo systemctl status spark-slave.service

References