Advent of 2021, Day 1 – What is Apache Spark?

[This article was first published on R – TomazTsql, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Apache Spark is an open-source unified analytics engine for large-scale data processing. It provides an interface for programming entire clusters with implicit data parallelism and fault tolerance. Originally it was developed at the Berkeley’s AMPLab, and later donated to the Apache Software Foundation, which has maintained it since.

Spark is used at a wide range of organizations to process large datasets.

Spark Features

  1. Fast Processing – Resilient Distributed Dataset (RDD) is immutable distributed collections of objects. Each dataset in RDD is divided into logical partitions, which may be computed on different nodes of the cluster.
  2. In-memory computing – Data can be stored in RAM (Cached) and hence making it fast for data analysis.
  3. Flexibility – Spark supports multiple languages, from Scala, Python, R and Java for application development and data analysis.
  4. Fault tolerance – RDD Files enables reliability over data making Apache Spark fault tolerant.
  5. Analytics – Advanced Analytics, Machine Learning and deep learning all come built-in with MLlib Spark with huge capability to add additional ML packages.

Spark architecture

Apache Spark application consists of two main components: a driver, which converts the user’s code into multiple tasks and later jobs that can be distributed across multiple worker nodes, and executors, which run on those nodes and execute the tasks assigned to them. Cluster manager is necessary to orchestrate  between the two.


Spark can run in a standalone cluster mode that simply requires the Apache Spark framework and a JVM on each machine in your cluster, but more likely it is, that you would want more robust resource or cluster management system to take care of allocating workers on demand for you. In the enterprise, this will normally mean running on Hadoop YARN (this is how the Cloudera and Hortonworks distributions run Spark jobs), but Apache Spark can also run on Apache Mesos, Kubernetes, and Docker Swarm.


If you seek a managed solution, then Apache Spark can be found as part of Amazon EMR, Google Cloud Dataproc, and Microsoft Azure HDInsight. Databricks, the company that employs the founders of Apache Spark, also offers the Databricks Unified Analytics Platform, which is a comprehensive managed service that offers Apache Spark clusters, streaming support, integrated web-based notebook development, and optimized cloud I/O performance over a standard Apache Spark distribution.

Apache Spark builds the user’s data processing commands into a Directed Acyclic Graph, or DAG. The DAG is Apache Spark’s scheduling layer; it determines what tasks are executed on what nodes and in what sequence.

Learning Spark for Data Engineers

Data engineers position is slightly different of analytical positions. Instead of mathematics, statistics and advanced analytics skills, learning Spark for data engineers will be focused on topics:

1. Installation and setting up the Spark environment
2. Getting to know the environment, UI, Spark Web
2. Data executions and Spark API
2. Data transformation, data modelling and diving into DataFrames
3. Using relational and non-relational data with Spark SQL
4. Designing pipelines, ETL, data movement and orchestration using Azure solutions and Databricks
5. Connection to other services, Spark applications, Azure, On-prem solutions, SQL Server and Big Data Clusters

This year, the Advent of 2021 will bring you blog posts on Spark mostly for a role of data engineers. But also the series will be targeting:

  • Beginners and everyone aspiring to become a data engineer,
  • Data Analysts, Data scientists, Data Operations and Machine Learning who want to deepen the knowledge on Spark
  • SQL developers, R developers, Python developers who wants to dive into data engineering.

Compete set of code, documents, notebooks, and all of the materials will be available at the Github repository: https://github.com/tomaztk/Spark-for-data-engineers

Tomorrow we will look into the process of installation.

Happy Spark Advent of 2021! ?

To leave a comment for the author, please follow the link and comment on their blog: R – TomazTsql.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)