C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Spark InstallationIn this section, we will perform the installation of Spark. So, follow the below steps.
sudo tar -xzvf /home/codegyani/spark-2.4.1-bin-hadoop2.7.tgz
sudo nano ~/.bashrc
SPARK_HOME=/ home/codegyani /spark-2.4.1-bin-hadoop2.7 export PATH=$SPARK_HOME/bin:$PATH
source ~/.bashrc
spark-shell Note - Here, Spark is enabled in Scala mode.
Next TopicSpark Architecture
|