Skip to main content

Environment diff tool for dbt

Project description

Recce

install pipy Python downloads license

InfuseAI Discord Invite

Recce is a PR review tool designed for DBT projects. It facilitates the comparison of results between two environments, such as development and production, and helps in identifying any differences.

Features

Use cases

Recce is primarily designed for PR Review purposes. However, it can be expanded to the following use cases:

  1. During development, we can verify new results by contrasting them with those from production prior to pushing the changes.
  2. While reviewing PR, you can grasp the extent of the changes and their impact before merging.
  3. For troubleshooting, you can execute ad-hoc diff queries to pinpoint the root causes.

Usage

Prerequisites

You have to have at least two environments in your dbt project. For example, one is for development and another is for production. You can prepare two targets with separate schemas in your DBT profile. Here is profiles.yml example

jaffle_shop:
  target: dev
  outputs:
    dev:
      type: duckdb
      path: jaffle_shop.duckdb
      schema: dev
    prod:
      type: duckdb
      path: jaffle_shop.duckdb
      schema: main

Getting Started

5 minutes walkthrough by jaffle shop example

  1. Installation

    pip install recce
    
  2. Go to your DBT project

    cd your-dbt-project/
    
  3. Prepare base artifacts: DBT generates artifacts when every invocation. You can find these files in the target/ folder.

    artifacts DBT command
    manifest.json dbt run, dbt build, ..
    catalog.json (optional) dbt docs generate

    Copy the artifacts for the base environment to target-base/ folder.

  4. Run the recce server.

    recce server issue-123.json
    

    Recce would diff environments between target/ and target-base/

Lineage Diff

Ad-Hoc Query and Query Diff

You can use any dbt macros installed in your project.

select * from {{ ref("mymodel") }}

In the query diff, which involves comparing the results from two different environments, the browser is required to pull all result data to the client side. Consequently, minimizing the data volume in the query results is essential for efficiency and performance.

[!TIP] Hotkeys Cmd + Enter: Run query Cmd + Shift + Enter: Run query diff

Schema diff

To use schema diff, make sure that both environments have catalog.json.

Row count diff

Profile diff

Profile diff uses the get_profile from dbt_profiler. Make sure that this package is installed in your project.

packages:
  - package: data-mie/dbt_profiler
    version: <version>

Please reference [dbt-profiler] to understand the definition of each profiling stats.

Value diff

  1. Added: New added PKs.
  2. Removed: Removed PKs.
  3. Matched: For a column, the count of matched value of common PKs.
  4. Matched %: For a column, the ratio of matched over common PKs.

PK: Primary key

Value diff uses the compare_column_values from audit-helper. Make sure that this package is installed in your project.

packages:
  - package: dbt-labs/audit_helper
    version: <version>

Value diff requires to select a column as private key. The catalog.json is required to list the available columns.

Checklist

When you feel that your query is worth recording, you can add it to the checklist and name the title and leave a description. This is very helpful for subsequent posting in PR comments.

Q&A

Q: How recce connect to my data warehouse? Does recce support my data warehouse?

recce use the dbt adapter to connect to your warehouse. So it should work for your data warehouse.

Q: What credential does recce connect to the two environments?

Recce uses the same target in the profile to connect your warehouse. If you use the default target dev, it uses the credentials to connect to both environments. So please make sure that the credential can access both environments.

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

recce-nightly-0.5.0.20240125.tar.gz (671.7 kB view details)

Uploaded Source

Built Distribution

recce_nightly-0.5.0.20240125-py3-none-any.whl (683.9 kB view details)

Uploaded Python 3

File details

Details for the file recce-nightly-0.5.0.20240125.tar.gz.

File metadata

  • Download URL: recce-nightly-0.5.0.20240125.tar.gz
  • Upload date:
  • Size: 671.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for recce-nightly-0.5.0.20240125.tar.gz
Algorithm Hash digest
SHA256 74aaff99b55935557f4c25a471a4942d74a1c664999637fabd0b5a27dd49efb2
MD5 f119878f0183a9ce6d18645ebbe23402
BLAKE2b-256 cf9d63f0d8865f999f01f84353d494e4ff4a6a3d0457a245f4327ea45d34e8de

See more details on using hashes here.

File details

Details for the file recce_nightly-0.5.0.20240125-py3-none-any.whl.

File metadata

File hashes

Hashes for recce_nightly-0.5.0.20240125-py3-none-any.whl
Algorithm Hash digest
SHA256 9af71618dd4290c5e00f514a43e8af73e268b43796e9b5245c7f55950ee2935e
MD5 ee3f9fc867383241285ab5663d0588b2
BLAKE2b-256 68f487afdcc1b129aed68b592caecbaead89fe190784fa7af53c620e39e2a3a9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page