Spark data pipeline that processes movie ratings data.
We define a Data Lakehouse architecture with the following layers:
Raw
: Contains raw data files directly ingested from an event stream, e.g. Kafka. This data should generally not be accessible (can contain PII, duplicates, quality issues, etc).Curated
: Contains transformed data according to business and data quality rules. This data can be accessed as tables registered in a data catalog.
Delta is used as the table format.
The Spark data pipeline consumes data from the raw layer (incrementally, for a given execution date), performs transformations and business logic, and persists to the curated layer.
After persisting, Data Quality checks are run using Soda.
The curated datasets are in principle partitioned by execution date.
To optimize file size in the output table, the following properties are enabled on the Spark session:
- Auto compaction: to periodically merge small files into bigger ones automatically.
- Optimized writes: to write bigger sized files automatically.
More information can be found on the Delta docs.
Configuration is defined in app_config.yaml and managed by the ConfigManager class, which is a wrapper around Dynaconf.
Poetry is used for Python packaging and dependency management.
Since there are multiple ways of deploying and running Spark applications in production (Kubernetes, AWS EMR, Databricks, etc), this repo aims to be as agnostic and generic as possible. The application and its dependencies are built into a Docker image (see Dockerfile).
In order to distribute code and dependencies across Spark executors this method is used.
Github Actions workflows for CI/CD are defined here and can be seen here.
The logic is as follows:
- On PR creation/update:
- Run code checks and tests.
- Build Docker image.
- Publish Docker image to Github Container Registry with a tag referring to the PR, like
ghcr.io/guidok91/spark-movies-etl:pr-123
.
- On push to master:
- Run code checks and tests.
- Create Github release.
- Build Docker image.
- Publish Docker image to Github Container Registry with the latest tag, e.g.
ghcr.io/guidok91/spark-movies-etl:master
.
Docker images in the Github Container Registry can be found here.
The repo includes a Makefile
. Please run make help
to see usage.
To start with, you can run make docker-build
and make docker-run
to spin up a Docker container for the project.