ETL Testing with Isolated Dev/Test Environments
Why are multiple environments so important?
When working with a data lake, it’s useful to have replicas of your production environment. These replicas allow you to test these ETLs and understand changes to your data without impacting the consumers of the production data.
Running ETL and transformation jobs directly in production without proper ETL testing presents a huge risk of having data issues flow into dashboards, ML models, and other consumers sooner or later.
The most common approach to avoid making changes directly in production is to create and maintain multiple data environments and perform ETL testing on them. Dev environments give you a space in which to develop the data pipelines and test environment where pipeline changes are tested before pushing it to production.
Without lakeFS, the challenge with this approach is that it can be time-consuming and costly to maintain these separate dev/test environments to enable thorough effective ETL testing. And for larger teams it forces multiple people to share these environments, requiring significant coordination. Depending on the size of the data involved there can also be high costs due to the duplication of data.
How does lakeFS help with Dev/Test environments?
lakeFS makes creating isolated dev/test environments for ETL testing quick and cheap. lakeFS uses zero-copy branching which means that there is no duplication of data when you create a new environment. This frees you from spending time on environment maintenance and makes it possible to create as many environments as needed.
In a lakeFS repository, data is always located on a branch
. You can think of each branch
in lakeFS as its own environment. This is because branches are isolated, meaning changes on one branch have no effect other branches.
Objects that remain unchanged between two branches are not copied, but rather shared to both branches via metadata pointers that lakeFS manages. If you make a change on one branch and want it reflected on another, you can perform a merge
operation to update one branch with the changes from another.
Using branches as development and testing environments
The key difference when using lakeFS for isolated data environments is that you can create them immediately before testing a change. And once new data is merged into production, you can delete the branch - effectively deleting the old environment.
This is different from creating a long-living test environment used as a staging area to test all the updates. With lakeFS, we create a new branch for each change to production that we want to make. One benefit of this is the ability to test multiple changes at one time.
Try it out! Creating Dev/Test Environments with lakeFS for ETL Testing
lakeFS supports UI, CLI (lakectl
commandline utility) and several clients for the API to run the Git-like operations. Let us explore how to create dev/test environments using each of these options below.
There are two ways that you can try out lakeFS:
- The lakeFS Playground on lakeFS Cloud - fully managed lakeFS with a 30-day free trial
- Local Docker-based quickstart and samples
You can also deploy lakeFS locally or self-managed on your cloud of choice.
Using lakeFS Playground on lakeFS Cloud
In this tutorial, we will use a lakeFS playground environment to create dev/test data environments for ETL testing. This allows you to spin up a lakeFS instance in a click, create different data environments by simply branching out of your data repository and develop & test data pipelines in these isolated branches.
First, let us spin up a playground instance. Once you have a live environment, login to your instance with access and secret keys. Then, you can work with the sample data repository my-repo
that is created for you.
Click on my-repo
and notice that by default, the repo has a main
branch created and sample_data
preloaded to work with.
You can create a new branch (say, test-env
) by going to the Branches tab and clicking Create Branch. Once it is successful, you will see two branches under the repo: main
and test-env
.
Now you can add, modify or delete objects under the test-env
branch without affecting the data in the main branch.
Trying out lakeFS with Docker and Jupyter Notebooks
This use case shows how to create dev/test data environments for ETL testing using lakeFS branches. The following tutorial provides a lakeFS environment, a Jupyter notebook, and Python lakefs_client API to demonstrate integration of lakeFS with Spark. You can run this tutorial on your local machine.
Follow the tutorial video below to get started with the playground and Jupyter notebook, or follow the instructions on this page.
Prerequisites
Before getting started, you will need Docker installed on your machine.
Running lakeFS and Jupyter Notebooks
Follow along the steps below to create dev/test environment with lakeFS.
-
Start by cloning the lakeFS samples Git repository:
git clone https://github.com/treeverse/lakeFS-samples.git
cd lakeFS-samples
-
Run following commands to download and run Docker container which includes Python, Spark, Jupyter Notebook, JDK, Hadoop binaries, lakeFS Python client and Airflow (Docker image size is around 4.5GB):
git submodule init git submodule update docker compose up
Open the local Jupyter Notebook and go to the spark-demo.ipynb
notebook.
Configuring lakeFS Python Client
Setup lakeFS access credentials for the lakeFS instance running. The defaults for these that the samples repo Docker Compose uses are shown here:
lakefsAccessKey = 'AKIAIOSFODNN7EXAMPLE'
lakefsSecretKey = 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY'
lakefsEndPoint = 'http://lakefs:8000'
Next, setup the storage namespace to a location in the bucket you have configured. The storage namespace is a location in the underlying storage where data for this repository will be stored.
storageNamespace = 's3://example/'
You can use lakeFS through the UI, API or lakectl
commandline. For this use-case, we use python lakefs_client
to run lakeFS core operations.
import lakefs_client
from lakefs_client import models
from lakefs_client.client import LakeFSClient
# lakeFS credentials and endpoint
configuration = lakefs_client.Configuration()
configuration.username = lakefsAccessKey
configuration.password = lakefsSecretKey
configuration.host = lakefsEndPoint
client = LakeFSClient(configuration)
lakeFS can be configured to work with Spark in two ways:
- Access lakeFS using the S3-compatible API
- Access lakeFS using the lakeFS-specific Hadoop FileSystem
Upload the Sample Data to Main Branch
To upload an object to the my-repo
, use the following command.
import os
contentToUpload = open('/data/lakefs_test.csv', 'rb')
client.objects.upload_object(
repository="my-repo",
branch="main",
path=fileName, content=contentToUpload)
Once uploaded, commit the changes to the main
branch and attach some metadata to the commit as well.
client.commits.commit(
repository="my-repo",
branch="main",
commit_creation=models.CommitCreation(
message='Added my first object!',
metadata={'using': 'python_api'}))
In this example, we use lakeFS S3A gateway to read data from the storage bucket.
dataPath = f"s3a://my-repo/main/lakefs_test.csv"
df = spark.read.csv(dataPath)
df.show()
Create a Test Branch
Let us start by creating a new branch test-env
on the example repo my-repo
.
client.branches.create_branch(
repository="my-repo",
branch_creation=models.BranchCreation(
name="test-env",
source="main"))
Now we can use Spark to write the csv file from main
branch as a Parquet file to the test-env
of our lakeFS repo. Suppose we accidentally write the dataframe back to “test-env” branch again, this time in append mode.
df.write.mode('overwrite').parquet('s3a://my-repo/test-env/')
df.write.mode('append').parquet('s3a://my-repo/test-env/')
What happens if we re-read in the data on both branches and perform a count on the resulting DataFrames?
There will be twice as many rows in test-env
branch. That is, we accidentally duplicated our data! Oh no!
Data duplication introduce errors into our data analytics, BI and machine learning efforts; hence we would like to avoid duplicating our data.
On the main
branch however, there is still just the original data - untouched by our Spark code. This shows the utility of branch-based isolated environments with lakeFS.
You can safely continue working with the data from main which is unharmed due to lakeFS isolation capabilities.