dbt Core
Set up Datafold’s integration with dbt Core to automate Data Diffs in your CI pipeline.
Getting started
To add Datafold to your continuous integration (CI) pipeline using dbt Core, follow these steps:
1. Create a dbt Core integration.
2. Set up the dbt Core integration.
Complete the configuration by specifying the following fields:
Basic settings
Field Name | Description |
---|---|
Configuration name | Choose a name for your for your Datafold dbt integration. |
Repository | Select your dbt project. |
Data Connection | Select the data connection your dbt project writes to. |
Primary key tag | Choose a string for tagging primary keys. |
Advanced settings: Configuration
Field Name | Description |
---|---|
Import dbt tags and descriptions | Import dbt metadata (including column and table descriptions, tags, and owners) to Datafold. |
Slim Diff | Data diffs will be run only for models changed in a pull request. See our guide to Slim Diff for configuration options. |
Diff Hightouch Models | Run Data Diffs for Hightouch models affected by your PR. |
CI fails on primary key issues | The existence of null or duplicate primary keys will cause CI to fail. |
Pull Request Label | When this is selected, the Datafold CI process will only run when the datafold label has been applied. |
CI Diff Threshold | Data Diffs will only be run automatically for a given CI run if the number of diffs doesn’t exceed this threshold. |
Branch commit selection strategy | Select “Latest” if your CI tool creates a merge commit (the default behavior for GitHub Actions). Choose “Merge base” if CI is run against the PR branch head (the default behavior for GitLab). |
Custom base branch | If defined, CI will run only on pull requests with the specified base branch. |
Columns to ignore | Use standard gitignore syntax to identify columns that Datafold should never diff for any table. This can improve performance for large datasets. Primary key columns will not be excluded even if they match the pattern. |
Files to ignore | If at least one modified file doesn’t match the ignore pattern, Datafold CI diffs all changed models in the PR. If all modified files should be ignored, Datafold CI does not run in the PR. (Additional details.) |
Advanced settings: Sampling
Sampling allows you to compare large datasets more efficiently by checking only a representative subset of the data rather than every row. By analyzing this smaller but statistically meaningful sample, Datafold can quickly estimate differences without the overhead of a full dataset comparison. To learn more about how sampling can result in a speedup of 2x to 20x or more, see our best practices on sampling.
Field Name | Description |
---|---|
Enable sampling | Enable sampling for data diffs to optimize analyzing large datasets. |
Sampling tolerance | The tolerance to apply in sampling for all data diffs. |
Sampling confidence | The confidence to apply when sampling. |
Sampling threshold | Sampling will be disabled automatically if tables are smaller than specified threshold. If unspecified, default values will be used depending on the Data Connection type. |
3. Obtain an Datafold API Key and CI config ID.
In the dbt Core integration creation form, generate a new Datafold API Key and obtain the CI config ID.
4. Configure your CI script(s) with the Datafold SDK.
Using the Datafold SDK, configure your CI script(s) to upload dbt manifest.json
files. The dbt Core integration creation form automatically generates scripts for integrating Datafold with your CI/CD pipeline.
Datafold determines which dbt models to diff in a CI run by comparing two manifest.json
files generated by your production branch and your PR branch.
The following command will be incorporated into your CI script(s).
Implementation details vary depending on which CI tool you use. Please review the following instructions and examples for your organization’s CI tool.
5. Test your dbt Core integration.
Wait for the production manifest to be successfully uploaded.
Then, test your CI integration by opening a new pull request with changes to a SQL file to trigger the workflow.
CI implementation tools
We’ve created guides and templates for three popular CI tools.
Having trouble setting up Datafold in CI?
We’re here to help! Please reach out and chat with a Datafold Solutions Engineer.
To add Datafold to your CI tool, add datafold dbt upload
steps in two CI jobs:
- Upload Production Artifacts: A CI job that build a production
manifest.json
. This can be either your Production Job or a special Artifacts Job (explained below). - Upload Pull Request Artifacts: A CI job that builds a PR
manifest.json
.
This ensures Datafold always has the necessary manifest.json
files, enabling us to run data diffs comparing production data to dev data.
Upload Production Artifacts
Add the datafold dbt upload
step to either your Production Job or an Artifacts Job.
Production Job
If your dbt prod job kicks off on merges to main/master, add a datafold dbt upload
step after the dbt build
step.
Artifacts Job
For scheduled production jobs, create a dedicated job to generate and upload a manifest.json
to Datafold.
Pull Request Artifacts
Include the datafold dbt upload
step in your CI job that builds PR data.
Store Datafold API Key
Save the API key as DATAFOLD_API_KEY
in your GitHub repository settings.
CI for dbt multi-projects
When setting up CI for dbt multi-projects, each project should have its own dedicated CI integration to ensure that changes are validated independently.
CI for dbt multi-projects within a monorepo
When managing multiple dbt projects within a monorepo (a single repository), it’s essential to configure individual Datafold CI integrations for each project to ensure proper isolation.
This approach prevents unintended triggering of CI processes for projects unrelated to the changes made. Here’s the recommended approach for setting it up in Datafold:
1. Create separate CI integrations: Create separate CI integrations within Datafold, one for each dbt project within the monorepo. Each integration should be configured to reference the same GitHub repository.
2. Configure file filters: For each CI integration, define file filters to specify which files should trigger the CI run. These filters prevent CI runs from being initiated when files from other projects in the monorepo are updated.
3. Test and validate: Before deployment, test each CI integration to validate that it triggers only when changes occur within its designated dbt project. Verify that modifications to files in one project do not inadvertently initiate CI processes for unrelated projects in the monorepo.
Advanced configurations
Skip Datafold in CI
To skip the Datafold step in CI, include the string datafold-skip-ci
in the last commit message.
Programmatically trigger CI runs
The Datafold app relies on the version control service webhooks to trigger the CI runs. When the dedicated cloud deployments is behind a VPN, webhooks cannot directly reach the deployment due to the network’s restricted access.
We can overcome this by triggering the CI runs via the datafold-sdk in the Actions/Job Runners, assuming they’re running in the same network.
Add a new Datafold SDK command after uploading the manifest in a PR job:
Important
When configuring your CI script, be sure to use ${{ github.event.pull_request.head.sha }}
for the Pull Request Job instead of ${{ github.sha }}
, which is often mistakenly used.
${{ github.sha }}
defaults to the latest commit SHA on the branch and will not work correctly for pull requests.
Running diffs before opening a PR
Some teams want to show Data Diff results in their tickets before creating a pull request. This speeds up code reviews as developers can QA code changes before requesting a PR review.
Check out how to automate this workflow here.