Skip to main content

Detect, classify, and block schema drift in PostgreSQL before your pipelines break

Project description

DriftBrake-Banner

Detect, classify, and block schema drift in PostgreSQL before your pipelines break

Tests PyPI Latest Release PyPI Downloads Python License

DriftBrake is a Python package that automatically reads the current schema of a PostgreSQL database, compares it against a versioned contract, classifies drifts by impact, and can block pipelines before they break in production.

The tool catches bugs that could silently corrupt or break data pipelines before they reach production. The idea is simple: you create a "contract" describing exactly how your database should look. Before running any pipeline, DriftBrake compares the actual database against this contract and warns you (or blocks you) if anything has changed.


Documentation: Click here!
Readme versão BR: Clique aqui!

The tool

DriftBrake is not a migration tool. It doesn't apply changes to the database, doesn't generate SQL scripts, and doesn't manage schema versions.

DriftBrake runs before pipelines execute, verifying that the actual database still respects the contract expected by its data consumers. It detects deviations, classifies impact, and blocks execution when necessary — but never alters the database.

Summary:

  • Reads the PostgreSQL schema
  • Compares it against a contract
  • Classifies changes by impact
  • Blocks pipelines on breaking changes
  • Generates JSON, HTML, and Markdown reports

Example workflow

The schema.lock.json (the contract) is generated automatically when you run init.

actual database
       │
       ▼
  [1] init          ← takes the "snapshot" of the database and saves it as the contract
       │
       ▼
 schema.lock.json   ← this file is the contract (versioned in Git)
       │
       │    (the database may change over time)
       │
       ▼
  [2] check         ← compares the current database against the contract
       │
       ├── all equal → pipeline can run
       └── change detected → alert or block

When a change is deliberate and approved, use update-contract to update the contract. When you want to compare two states without touching the contract, use diff or snapshot.


Glossary

Contract (schema.lock.json): the JSON file that describes how the database should look. It works as a "lock file" (hence the name) — just as package-lock.json pins package versions, this file pins the database structure.

BREAKING: a change that breaks existing consumers. Examples: removing a column, changing a type from INTEGER to VARCHAR, adding a NOT NULL column without a default.

WARNING: a change that deserves attention but doesn't necessarily break anything right now. Examples: adding a NOT NULL column with a default, changing a default value.

SAFE: a change with no impact on existing consumers. Examples: adding a nullable column, creating a new table.

Diff: the difference found between the contract (what was expected) and the actual database (what exists now).

Expected contract & current database: the comparator always treats the contract as the "agreed-upon truth" and the database as the "actual state." If something exists in the database but not in the contract, it's an addition. If it exists in the contract but is missing from the database, it's a removal.

Initial usage example

Create the initial contract:

driftbrake init --db-url "$DATABASE_URL" --output schema.lock.json

Verify before the pipeline runs:

driftbrake check \
  --db-url "$DATABASE_URL" \
  --contract schema.lock.json \
  --fail-on BREAKING \
  --json schema_diff.json \
  --html schema_report.html

Update the contract after approving changes:

driftbrake update-contract --db-url "$DATABASE_URL" --contract schema.lock.json

How it works

The current flow:

schema.lock.json (contract versioned in Git)
        │
        ▼
DriftBrake connects to PostgreSQL
        │
        ▼
reads the current schema automatically
        │
        ▼
compares expected against current
        │
        ├── OK ──────────────────── pipeline runs
        │
        └── BREAKING ────────────── pipeline blocked
                                    ├── displays in terminal
                                    ├── generates schema_diff.json
                                    └── generates schema_report.html

Change types detected

The tool detects the following categories of change in every comparison:

Type What it means
table_added A new table appeared in the database
table_removed A table that existed is gone from the database
column_added A new column was added to an existing table
column_removed A column was removed from an existing table
type_changed A column's data type changed (e.g. INTEGERTEXT)
nullable_changed The column stopped accepting NULL or started accepting it
default_changed The column's default value changed or was removed
primary_key_changed A column gained or lost its primary key
unique_changed A UNIQUE constraint was added or removed
foreign_key_changed A foreign key was modified
foreign_key_added A foreign key was created where there was none
ordinal_position_changed The column's position in the table changed
possible_rename A column was removed and a similar one was added in the same table. The tool only flags this as a suspicion of rename, never as a confirmation. Always classified as WARNING.

possible_rename is a heuristic, never a confirmation. DriftBrake flags the suspicion when a removed column and an added column appear type-compatible. Final validation must be done by whoever reviews the migration.


possible_rename confidence

Each possible_rename occurrence carries a confidence field indicating how certain the heuristic is:

Level Criteria
high Similar name + same type + close ordinal position (difference ≤ 2)
medium Same type + close ordinal position (difference ≤ 2)
low Only type-compatible (SAFE or WARNING in the type matrix)

Important rules:

  • possible_rename is never automatically classified as BREAKING — always WARNING.
  • A confidence: "high" is still a suspicion, not a certainty.
  • Always review migrations before accepting a rename with driftbrake update-contract.

PostgreSQL types (compatibility matrix)

Conversion Severity
varchar(50)varchar(100) SAFE
varchar(100)varchar(50) BREAKING
textvarchar(n) BREAKING
varchar(n)text SAFE
integerbigint WARNING
bigintinteger BREAKING
smallintinteger SAFE
numeric(10,2)numeric(12,2) SAFE
numeric(12,2)numeric(10,2) BREAKING
numerictext BREAKING
datetimestamp WARNING
timestampdate BREAKING


Stack

  • SQLAlchemy — PostgreSQL reflection/inspection
  • Typer — CLI
  • Rich — terminal output
  • Jinja2 — HTML templates
  • python-dotenv — environment variables
  • PyYAML — configuration
  • pytest — tests

License

MIT license

Author

Yuri Pontes — Former Cabo (Corporal equivalent) - Brazilian Army, transitioning to data engineering.

LinkedIn · GitHub

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

driftbrake-0.0.3.tar.gz (29.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

driftbrake-0.0.3-py3-none-any.whl (41.1 kB view details)

Uploaded Python 3

File details

Details for the file driftbrake-0.0.3.tar.gz.

File metadata

  • Download URL: driftbrake-0.0.3.tar.gz
  • Upload date:
  • Size: 29.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for driftbrake-0.0.3.tar.gz
Algorithm Hash digest
SHA256 a66ee0685ddbd94bc4ba9dc6236a786f56ba52e4cc9ffe6c83753e68e464d8cd
MD5 f4c5230450b55798f010f575fadb7c05
BLAKE2b-256 0335b1a27cd0a8962c4f85e75a8a88db70b71a6de8f4b7d07a978ce91e3a2e1d

See more details on using hashes here.

File details

Details for the file driftbrake-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: driftbrake-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 41.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for driftbrake-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 acf2984cd55e3a2acd20ccb8b954bb289e46eac9642b4eecfb467685b5fefb9e
MD5 598d07f502433135abcc8107aad228a2
BLAKE2b-256 4907825198c28649e0c04e336f2553590bbe795a46aeac95367b79ffe04b3c9d

See more details on using hashes here.

Supported by

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