Let’s learn how to do Apache Spark Installation on Linux based Ubuntu server, same steps can be used to setup Centos, Debian e.t.c. In real-time all Spark application runs on Linux based OS hence it is good to have knowledge on how to Install and run Spark applications on some Unix based OS like Ubuntu server.
Though this article explains with Ubuntu, you can follow these steps to install Spark on any Linux-based OS like Centos, Debian e.t.c, I followed the below steps to setup my Apache Spark cluster on Ubuntu server.
If you just wanted to run Spark in standalone, proceed with this article.
Apache Spark is written in Scala which is a language of Java hence to run Spark you need to have Java Installed. Since Oracle Java is licensed here I am using openJDK Java. If you wanted to use Java from other vendors or Oracle please do so. Here I will be using JDK 8.
Post JDK install, check if it installed successfully by running java -version
You can skip this section if you wanted to run Spark with Scala & Java on an Ubuntu server.
Python Installation is needed if you wanted to run PySpark examples (Spark with Python) on the Ubuntu server.
In order to install Apache Spark on Linux based Ubuntu, access Apache Spark Download site and go to the Download Apache Spark section and click on the link from point 3, this takes you to the page with mirror URL’s to download. copy the link from one of the mirror site.
If you wanted to use a different version of Spark & Hadoop, select the one you wanted from the drop-down (point 1 and 2); the link on point 3 changes to the selected version and provides you with an updated link to download.
Use wget
command to download the Apache Spark to your Ubuntu server.
Once your download is complete, untar the archive file contents using tar command, tar is a file archiving tool. Once untar complete, rename the folder to spark.
Add Apache Spark environment variables to .bashrc or .profile file. open file in vi editor and add below variables.
Now load the environment variables to the opened session by running below command
In case if you added to .profile file then restart your session by closing and re-opening the session.
With this, Apache Spark Installation on Linux Ubuntu completes. Now let’s run a sample example that comes with Spark binary distribution.
Here I will be using Spark-Submit Command to calculate PI value for 10 places by running org.apache.spark.examples.SparkPi example. You can find spark-submit at $SPARK_HOME/bin
directory.
Apache Spark binary comes with an interactive spark-shell. In order to start a shell to use Scala language, go to your $SPARK_HOME/bin
directory and type “spark-shell
“. This command loads the Spark and displays what version of Spark you are using.
Note: In spark-shell you can run only Spark with Scala. In order to run PySpark, you need to open pyspark shell by running $SPARK_HOME/bin/pyspark
. Make sure you have Python installed before running pyspark shell.
By default, spark-shell provides with spark
(SparkSession) and sc
(SparkContext) object’s to use. Let’s see some examples.
Spark-shell also creates a Spark context web UI and by default, it can access from http://ip-address:4040.
Apache Spark provides a suite of Web UIs (Jobs, Stages, Tasks, Storage, Environment, Executors, and SQL) to monitor the status of your Spark application, resource consumption of Spark cluster, and Spark configurations. On Spark Web UI, you can see how the Spark Actions and Transformation operations are executed. You can access by opening http://ip-address:4040/
. replace ip-address with your server IP.
Spark History server, keep a log of all completed Spark applications you submit by spark-submit, and spark-shell.
Create $SPARK_HOME/conf/spark-defaults.conf
file and add below configurations.
Create Spark Event Log directory. Spark keeps logs for all applications you submitted.
Run $SPARK_HOME/sbin/start-history-server.sh
to start history server.
As per the configuration, history server by default runs on 18080 port.
Run PI example again by using spark-submit command, and refresh the History server which should show the recent run.
In Summary, you have learned steps involved in Apache Spark Installation on Linux based Ubuntu Server, and also learned how to start History Server, access web UI.
或是邮件反馈可也:
askdama[AT]googlegroups.com
订阅 substack 体验古早写作:
关注公众号, 持续获得相关各种嗯哼: