Apache Spark is an open-source unified analytics engine for large-scale data processing. Spark provides an interface for programming clusters with implicit data parallelism and fault tolerance. Originally developed at the University of California, Berkeley's AMPLab starting in 2009, in 2013, the Spark codebase was donated to the Apache Software Foundation, which has maintained it since.
Contents
Overview
Apache Spark has its architectural foundation in the resilient distributed dataset (RDD), a read-only multiset of data items distributed over a cluster of machines, that is maintained in a fault-tolerant way. The Dataframe API was released as an abstraction on top of the RDD, followed by the Dataset API. In Spark 1.x, the RDD was the primary application programming interface (API), but as of Spark 2.x use of the Dataset API is encouraged even though the RDD API is not deprecated. The RDD technology still underlies the Dataset API.
Spark and its RDDs were developed in 2012 in response to limitations in the MapReduce cluster computing paradigm, which forces a particular linear dataflow structure on distributed programs: MapReduce programs read input data from disk, map a function across the data, reduce the results of the map, and store reduction results on disk. Spark's RDDs function as a working set for distributed programs that offers a (deliberately) restricted form of distributed shared memory.
Inside Apache Spark the workflow is managed as a directed acyclic graph (DAG). Nodes represent RDDs while edges represent the operations on the RDDs.
Spark facilitates the implementation of both iterative algorithms, which visit their data set multiple times in a loop, and interactive/exploratory data analysis, i.e., the repeated database-style querying of data. The latency of such applications may be reduced by several orders of magnitude compared to Apache Hadoop MapReduce implementation.
Among the class of iterative algorithms are the training algorithms for machine learning systems, which formed the initial impetus for developing Apache Spark.
Apache Spark requires a cluster manager and a distributed storage system. For cluster management, Spark supports standalone native Spark, Hadoop YARN, Apache Mesos or Kubernetes. A standalone native Spark cluster can be launched manually or by the launch scripts provided by the install package. It is also possible to run the daemons on a single machine for testing. For distributed storage Spark can interface with a wide variety of distributed systems, including Alluxio, Hadoop Distributed File System (HDFS), MapR File System (MapR-FS), Cassandra, OpenStack Swift, Amazon S3, Kudu, Lustre file system, or a custom solution can be implemented. Spark also supports a pseudo-distributed local mode, usually used only for development or testing purposes, where distributed storage is not required and the local file system can be used instead; in such a scenario, Spark is run on a single machine with one executor per CPU core.
Spark Core
Spark Core is the foundation of the overall project. It provides distributed task dispatching, scheduling, and basic I/O functionalities, exposed through an application programming interface (for Java, Python, Scala, .NET and R) centered on the RDD abstraction (the Java API is available for other JVM languages, but is also usable for some other non-JVM languages that can connect to the JVM, such as Julia). This interface mirrors a functional/higher-order model of programming: a "driver" program invokes parallel operations such as map, filter or reduce on an RDD by passing a function to Spark, which then schedules the function's execution in parallel on the cluster. These operations, and additional ones such as joins, take RDDs as input and produce new RDDs. RDDs are immutable and their operations are lazy; fault-tolerance is achieved by keeping track of the "lineage" of each RDD (the sequence of operations that produced it) so that it can be reconstructed in the case of data loss. RDDs can contain any type of Python, .NET, Java, or Scala objects.
Besides the RDD-oriented functional style of programming, Spark provides two restricted forms of shared variables: broadcast variables reference read-only data that needs to be available on all nodes, while accumulators can be used to program reductions in an imperative style.
A typical example of RDD-centric functional programming is the following Scala program that computes the frequencies of all words occurring in a set of text files and prints the most common ones. Each map, flatMap (a variant of map) and reduceByKey takes an anonymous function that performs a simple operation on a single data item (or a pair of items), and applies its argument to transform an RDD into a new RDD.
PySpark
PySpark is the Python API for Apache Spark, introduced in Spark 0.7, released
in February 2013. It allows Spark applications to be written in
Python and provides an interactive shell for
exploratory analysis. PySpark code executes under the standard
CPython runtime and can call native Python libraries such as
NumPy and SciPy; communication between Python user code and Spark's
JVM-based core has historically been mediated by the
Py4J library.
PySpark provides Python interfaces to most of Spark's components, including
Spark Core, Spark SQL and the DataFrame API,
Structured Streaming, and
MLlib; since Spark 4.1 it also
exposes the Spark Declarative Pipelines API.
A pandas-compatible API, known as pandas API on Spark, was integrated into
PySpark in Apache Spark 3.2.0, released in October 2021. It provides equivalents
to the pandas data-analysis API that execute against the
Spark engine, allowing pandas-style code to be run on distributed data. The component originated as
Spark SQL
Spark SQL is a component on top of Spark Core that introduced a data abstraction called DataFrames, which provides support for structured and semi-structured data. Spark SQL provides a domain-specific language (DSL) to manipulate DataFrames in Scala, Java, Python or .NET. It also provides SQL language support, with command-line interfaces and ODBC/JDBC server. Although DataFrames lack the compile-time type-checking afforded by RDDs, as of Spark 2.0, the strongly typed DataSet is fully supported by Spark SQL as well.
Or alternatively via SQL:
Spark Declarative Pipelines
Spark Declarative Pipelines (SDP) is a declarative framework for defining and
running extract, transform, load (ETL) data pipelines, added in Apache Spark
4.1.0, which was released on December 16, 2025. Developers declare the datasets a pipeline should produce and the queries that define them, rather than writing imperative code specifying how each dataset is computed and in what order; Spark constructs a dataflow graph and manages dependency ordering, parallelism, checkpointing, and retries.
The framework extends Spark's lazy, declarative execution model, previously
applied to individual queries through Spark SQL, to
pipelines spanning multiple datasets. Pipelines are
defined in SQL or Python and are organized around streaming tables and
materialized views, with the underlying transformations expressed as "flows";
batch and streaming computations can be combined within a single pipeline.
A pipeline using the syntax can declare a streaming table that ingests records and a
materialized view that aggregates them, using the Python API:
The same datasets can be defined in SQL:
Spark Structured Streaming
Spark Structured Streaming uses Spark Core's fast scheduling capability to perform streaming analytics. It ingests data in micro-batches and performs RDD transformations on those micro-batches of data. This design enables the same set of application code written for batch analytics to be used in streaming analytics, thus facilitating easy implementation of lambda architecture. However, this convenience comes with the penalty of latency equal to the mini-batch duration. Other streaming data engines that process event by event rather than in micro-batches include Storm and the streaming component of Flink. Spark Streaming has support built-in to consume from Kafka, Flume, Twitter, ZeroMQ, Kinesis, and TCP/IP sockets.
In Spark 2.x, a separate technology based on Datasets, called Structured Streaming, that has a higher-level interface is also provided to support streaming.
Apache Spark 4.x added a Real-Time Mode
(RTM) execution model for Structured Streaming, with the stated goal of
lowering end-to-end latency to support operational and batch workloads on a single engine. Existing Structured Streaming queries written
against the DataFrame and Dataset APIs can be executed under the new mode
without modification to the query.
Spark can be deployed in a traditional on-premises data center as well as in the cloud.
Spark Connect
Spark Connect is a decoupled client–server architecture for Apache Spark
that allows remote applications to connect to a Spark cluster from any
environment, introduced in Apache Spark 3.4, released in April 2023. The architecture separates the client application from the Spark driver, which historically ran in the same process; under Spark Connect, the
client is a thin library that can be embedded in application servers,
IDEs, notebooks and other programming
environments.
The Spark Connect client translates DataFrame
operations into unresolved logical query plans, encodes them using
Protocol Buffers, and transmits them to the Spark server over the
gRPC framework; the server translates these plans into Spark's logical
plan operators and executes them through the standard Spark execution pipeline.
Results are streamed back to the client as Apache Arrow-encoded row
batches.
PySpark applications connect to a Spark Connect server by specifying a remote
URL when creating a Spark session:
PySpark support for Spark Connect was added in Spark 3.4, and Scala client
MLlib machine learning library
Spark MLlib is a distributed machine-learning framework on top of Spark Core that, due in large part to the distributed memory-based Spark architecture, is as much as nine times as fast as the disk-based implementation used by Apache Mahout (according to benchmarks done by the MLlib developers against the alternating least squares (ALS) implementations, and before Mahout itself gained a Spark interface), and scales better than Vowpal Wabbit. Many common machine learning and statistical algorithms have been implemented and are shipped with MLlib which simplifies large scale machine learning pipelines, including:
summary statistics, correlations, stratified sampling, hypothesis testing, random data generation
classification and regression: support vector machines, logistic regression, linear regression, naive Bayes classification, Decision Tree, Random Forest, Gradient-Boosted Tree
collaborative filtering techniques including alternating least squares (ALS)
cluster analysis methods including k-means, and latent Dirichlet allocation (LDA)
dimensionality reduction techniques such as singular value decomposition (SVD), and principal component analysis (PCA)
feature extraction and transformation functions
optimization algorithms such as stochastic gradient descent, limited-memory BFGS (L-BFGS)
GraphX
GraphX is a distributed graph-processing framework on top of Apache Spark. Because it is based on RDDs, which are immutable, graphs are immutable and thus GraphX is unsuitable for graphs that need to be updated, let alone in a transactional manner like a graph database. GraphX provides two separate APIs for implementation of massively parallel algorithms (such as PageRank): a Pregel abstraction, and a more general MapReduce-style API. Unlike its predecessor Bagel, which was formally deprecated in Spark 1.6, GraphX has full support for property graphs (graphs where properties can be attached to edges and vertices).
Like Apache Spark, GraphX initially started as a research project at UC Berkeley's AMPLab and Databricks, and was later donated to the Apache Software Foundation and the Spark project.
Language support
Apache Spark has built-in support for Scala, Java, SQL, R, Python, and Swift with 3rd party support for the .NET CLR, Julia, and more.
History
Spark was initially started by Matei Zaharia at UC Berkeley's AMPLab in 2009, and open sourced in 2010 under a BSD license.
In 2013, the project was donated to the Apache Software Foundation and switched its license to Apache 2.0. In February 2014, Spark became a Top-Level Apache Project.
In November 2014, Spark founder M. Zaharia's company Databricks set a new world record in large scale sorting using Spark.
Spark had in excess of 1000 contributors in 2015, making it one of the most active projects in the Apache Software Foundation and one of the most active open source big data projects.
Scala version
Spark 3.5.2 is based on Scala 2.13 (and thus works with Scala 2.12 and 2.13 out-of-the-box), but it can also be made to work with Scala 3.
Developers
Apache Spark is developed by a community. The project is managed by a group called the "Project Management Committee" (PMC).
Maintenance releases and EOL
Feature release branches will, generally, be maintained with bug fix releases for a period of 18 months. For example, branch 2.3.x is no longer considered maintained as of September 2019, 18 months after the release of 2.3.0 in February 2018. No more 2.3.x releases should be expected after that point, even for bug fixes.
The last minor release within a major a release will typically be maintained for longer as an “LTS” release. For example, 2.4.0 was released on November 2, 2018, and had been maintained for 31 months until 2.4.8 was released in May 2021. 2.4.8 is the last release and no more 2.4.x releases should be expected even for bug fixes.



