Dry run dbt projects
Project description
dbt-dry-run
dbt is a tool that helps manage data transformations using templated SQL queries. These SQL queries are executed against a target data warehouse. It doesn't check the validity of SQL queries before it executes your project. This dry runner uses BigQuery's dry run capability to allow you to check that SQL queries are valid before trying to execute them.
See the blog post for more information on how the dry runner works.
Quickstart
Installation
The dry runner can be installed via pip:
pip install dbt-dry-run
Running
The dry runner has a single command called dbt-dry-run
in order for it to run you must
first compile a dbt manifest using dbt compile
as you normally would.
Then on the same machine (So that the dry runner has access to your dbt project source and the
manifest.yml
) you can run the dry-runner in the same directory as our dbt_project.yml
:
dbt-dry-run
Like dbt it will search for profiles.yml
in ~/.dbt/
and use the default target specified.
Just like in the dbt CLI you can override these defaults:
dbt-dry-run default --project-dir /my_org_dbt/ --profiles-dir /my_org_dbt/profiles/ --target local
The full CLI help is shown below, anything prefixed with [dbt] can be used in the same way as a normal dbt parameter:
❯ dbt-dry-run --help
Usage: dbt-dry-run [OPTIONS] [PROFILE]
Options:
--profiles-dir TEXT [dbt] Where to search for `profiles.yml`
[default: /Users/<user>/.dbt]
--project-dir TEXT [dbt] Where to search for `dbt_project.yml`
[default: /Users/<user>/Code/dbt-
dry-run]
--vars TEXT [dbt] CLI Variables to pass to dbt
--target TEXT [dbt] Target profile
--verbose / --no-verbose Output verbose error messages [default: no-
verbose]
--report-path TEXT Json path to dump report to
--install-completion [bash|zsh|fish|powershell|pwsh]
Install completion for the specified shell.
--show-completion [bash|zsh|fish|powershell|pwsh]
Show completion for the specified shell, to
copy it or customize the installation.
--help Show this message and exit.
Reporting Results & Failures
If the result is successful it will output the number of models that were tested like so:
Dry running 3 models
DRY RUN SUCCESS!
The process will also return exit code 0
If there are failures it will print a summary table of the nodes that failed:
Dry running 3 models
Node model.test_models_with_invalid_sql.second_layer failed with exception:
400 POST https://bigquery.googleapis.com/...: Column d in USING clause not found on left side of join at [6:88]
(job ID: 5e336f32-273d-480a-b8bb-cdf4fca66a98)
Total 1 failures:
1 : model.test_models_with_invalid_sql.second_layer : BadRequest : ERROR
DRY RUN FAILURE!`
The process will also return exit code 1
Report Artefact
If you specify ---report-path
a JSON file will be outputted regardless of dry run success/failure with detailed
information of each node's predicted schema or error message if it has failed:
{
"success": false,
"node_count": 3,
"failure_count": 1,
"failed_node_ids": [
"model.test_models_with_invalid_sql.second_layer"
],
"nodes": [
{
"unique_id": "seed.test_models_with_invalid_sql.my_seed",
"success": true,
"error_message": null,
"table": {
"fields": [
...
]
}
},
{
"unique_id": "model.test_models_with_invalid_sql.first_layer",
"success": true,
"error_message": null,
"table": {
"fields": [
...
]
}
},
{
"unique_id": "model.test_models_with_invalid_sql.second_layer",
"success": false,
"error_message": "BadRequest",
"table": null
}
]
}
Contributing/Running locally
To setup a dev environment you need poetry, first run poetry install
to install all dependencies. Then
the Makefile
contains all the commands needed to run the test suite and linting.
- verify: Formats code with
black
, type checks withmypy
and then runs the unit tests with coverage. - integration: Runs the integration tests against BigQuery (See Integration Tests)
There is also a shell script ./run-integration.sh <PROJECT_DIR>
which will run one of the integration tests locally.
Where <PROJECT_DIR>
is one of the directory names in /integration/projects/
. (See Integration Tests)
Running Integration Tests
In order to run integration tests locally you will need access to a BigQuery project/instance in which your gcloud application
default credentials has the role Big Query Data Owner
. The BigQuery instance should have an empty dataset called dry_run
.
Setting the environment variable DBT_PROJECT=<YOUR GCP PROJECT HERE>
will tell the integration tests which GCP
project to run the test suite against. The test suite does not currently materialize any data into the project.
The integration tests will run on any push to main
to ensure the package's core functionality is still in place.
Auto Trader employees can request authorisation to access the at-dry-run-integration-dev
project for this purpose
Capabilities and Limitations
Things this can catch
The dry run can catch anything the BigQuery planner can identify before the query has run. Which includes:
- Typos in SQL keywords:
selec
instead ofselect
- Typos in columns names:
orders.produts
instead oforders.products
- Problems with incompatible data types: Trying to execute "4" + 4
- Incompatible schema changes to models: Removing a column from a view that is referenced by a downstream model explicitly
- Incompatible schema changes to sources: Third party modifies schema of source tables without your knowledge
- Permission errors: The dry runner should run under the same service account your production job runs under. This allows you to catch problems with table/project permissions as dry run queries need table read permissions just like the real query
- Incorrect configuration of snapshots: For example a typo in the
unique_key
config. Orcheck_cols
which do not exist in the snapshot
Things this can't catch
There are certain cases where a syntactically valid query can fail due to the data in the tables:
- Queries that run but do not return intended/correct result. This is checked using tests
NULL
values inARRAY_AGG
(See IGNORE_NULLS bullet point)- Bad query performance that makes it too complex/expensive to run
Things still to do...
Implementing the dry runner required re-implementing some areas of dbt. Mainly how the
adapter sets up connections and credentials with the BigQuery client, we have only
implemented the methods of how we connect to our warehouse so if you don't use OAUTH or
service account JSON files then this won't be able to read profiles.yml
correctly.
The implementation of seeds is incomplete as well as we don't use them very much in our
own dbt projects. The dry runner will just use the datatypes that agate
infers from the CSV
files.
License
Copyright 2022 Auto Trader Limited
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dbt-dry-run-0.4.1.tar.gz
.
File metadata
- Download URL: dbt-dry-run-0.4.1.tar.gz
- Upload date:
- Size: 32.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/35.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.11 tqdm/4.64.0 importlib-metadata/4.12.0 keyring/23.7.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a9776f79a2ac432699015ff5b2c78bc761e83ad618a72c001e9673f47d44c6b |
|
MD5 | 215855d88cb4e53932bc7f8b2415fbe3 |
|
BLAKE2b-256 | 0ead040943aed761d4549b5e9cf0c43af887daa940d7cea5dc67f0541e672fef |
File details
Details for the file dbt_dry_run-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: dbt_dry_run-0.4.1-py3-none-any.whl
- Upload date:
- Size: 39.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/35.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.11 tqdm/4.64.0 importlib-metadata/4.12.0 keyring/23.7.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3b6e0077c9c1222a4e1ae17e65afc79f510d1593df1742838ab26f8ec651d46 |
|
MD5 | 764a07af37d4c282be847be1293178a6 |
|
BLAKE2b-256 | 93cb457d039649b7789d5395e4b588fb04058a1e2d3a05e77d52024fb159cb05 |