One command to manage any shape of data platform: databases, ingestion, BI, cloud, and CI.
Project description
dataplat
One command to manage any shape of data platform.
dataplat ships a single CLI, dp, with an area for each type of component
in a data platform: warehouses/databases, ingestion, BI, cloud, and CI. Point
it at your stack through environment variables — nothing about your
infrastructure is hardcoded.
dp
├── status # one-shot health overview (--json, --no-aws)
├── open # airbyte | superset | rds [id] | redshift | secrets [name]
├── config # init | show | doctor [--connect]
├── db # warehouses & databases (Postgres, Redshift, DuckDB)
│ ├── query # ad-hoc SQL (--format table|csv|json, --write guard)
│ ├── describe # schema/table/view report (--json)
│ ├── long-queries # triage per target (--history, --json) [1]
│ ├── kill # cancel/terminate queries by PID [1]
│ ├── role # list | show | create | drop [1]
│ ├── top-tables # rank big tables (--drop-sql, --drop)
│ └── dbt-orphans # scan/rename | revert | purge (--older-than) [1]
├── ingest # data ingestion
│ └── airbyte
│ ├── connections # list | get | create | update | set-cursor
│ │ # sync | refresh | reset | delete
│ ├── jobs # list | get | cancel
│ ├── sources # list | get | create | update | delete
│ ├── destinations # list | get | create | update | delete
│ ├── definitions # list-sources | list-destinations
│ ├── workspaces # list | get
│ ├── tags # list | create
│ └── templates # source | destination | connection
├── bi # business intelligence
│ └── superset
│ ├── users # list | create | update | delete
│ ├── roles # list
│ └── groups # list
├── cloud # cloud providers
│ └── aws
│ ├── secrets # list | get | compare | set | edit | rename-key
│ │ # describe | versions | rollback | delete | restore
│ ├── rds # metrics | plot | list
│ └── redshift # metrics
└── ci # build infrastructure
└── github
└── runner # start | stop | status
[1] Cannot apply to a duckdb target: an in-process, single-user database has no
roles, no other sessions, and no rename that survives a dependent view. See
Engines for the matrix and the reason per command.
Installation
Requires Python 3.12 or newer, on Linux or macOS. Windows is untested and parts
of it will not work: dp config init creates a symlink, the dependency
self-install re-execs the process, and dp ci github runner drives docker.
uv tool install "dataplat[all]" # recommended: everything
# or
pipx install "dataplat[all]"
# or
pip install "dataplat[all]"
Each area's dependencies are an optional extra, so you can also install only what your platform uses:
| Extra | Enables | Pulls in |
|---|---|---|
db |
dp db |
psycopg |
duckdb |
duckdb targets inside dp db |
duckdb |
ingest |
dp ingest |
httpx, textual, croniter |
bi |
dp bi |
httpx |
cloud |
dp cloud |
boto3, plotext |
all |
everything | all of the above |
duckdb is the one extra that is an engine rather than an area, so it is
deliberately not part of db: the extension module alone is three times
psycopg's size, and someone whose warehouse is PostgreSQL should not carry an
embedded database engine to run dp db describe. dataplat[db,duckdb] is what
a DuckDB target needs; dataplat[all] includes both.
A bare pip install dataplat gives you the core (status, open,
config) with every other area stubbed. You don't have to plan this in
advance: dp knows which areas your configuration enables and installs
what's missing on demand — see below.
If your warehouse is a DuckDB file, read Engines before you
install: dp db query, dp db describe and dp db top-tables work against it,
and the other four dp db commands cannot — DuckDB is in-process and
single-user, so there is nothing for them to act on.
Auto-installing dependencies
Two ways, both of which detect whether dp runs from a uv tool, pipx, or
plain-venv install and use the matching installer:
dp config sync # detect enabled areas, install missing deps (confirms)
dp config sync --check # report only; exit 1 if something is missing (CI-friendly)
Or just use a command: if your config enables an area whose extra is
missing, dp db query ... shows exactly what it will run, asks, installs,
and re-runs your original command. Non-interactive sessions never install
silently — they print the command and exit instead. dp config doctor
also reports per-area dependency status.
Either path only ever adds to your install: the command is pinned to the
dataplat version you already run, so installing an extra never upgrades the
tool underneath you, and it carries your existing extras along — duckdb
included — so adding db cannot drop an ingest you had, and no self-install
can drop the DuckDB driver.
Carrying duckdb along matters more than the rest, because nothing would ever
put it back. It is the one dependency outside this machinery: it belongs to an
engine, and both paths above plan per area. So it is never installed for you
and never offered mid-command — you are already talking to a database by then. A
DuckDB target whose driver is missing stops at exit 3 with the extra named:
Error: A duckdb target needs the duckdb package, which is not installed: it is
the 'duckdb' extra (dataplat[duckdb]). Run: …
The Run: tail is the command for the environment dp runs from — uv tool,
pipx, or the venv's pip — pinned to the version you already have, so it adds the
driver without upgrading the tool underneath you.
Shell completion
dp --install-completion # detect the shell, write the script, hook it up
dp --show-completion # print it instead, and install it yourself
Completion takes effect in the next shell. bash, zsh and fish are supported;
--show-completion is the escape hatch when your rc file is managed by
something else (Nix, chezmoi, a dotfiles repo) or when shell detection fails.
dp <TAB> is answered from the area names alone and imports nothing.
Completing inside an area has to import it, because the subcommands it owes
the shell are that area's own — so the first dp db <TAB> pays for psycopg, and
an area whose extra is not installed completes to nothing rather than offering
to install it mid-keystroke.
Quick start
-
Declare your database targets — any names you like:
# ~/.envrc (or any env mechanism you prefer) export DP_TARGETS="warehouse,lake,local" export DP_DEFAULT_TARGET="warehouse" export WAREHOUSE_ENGINE=postgresql export WAREHOUSE_HOST=db.example.com export WAREHOUSE_DATABASE=analytics export WAREHOUSE_USER=me export WAREHOUSE_PASSWORD=… export LAKE_ENGINE=redshift export LAKE_HOST=lake.abc123.eu-central-1.redshift-serverless.amazonaws.com export LAKE_DATABASE=dev export LAKE_USER=me export LAKE_PASSWORD=… export LAKE_REASSIGN_OWNER=admin # role drop reassigns owned objects here export LOCAL_ENGINE=duckdb export LOCAL_PATH=~/data/warehouse.duckdb # a file, not a server; or :memory:
-
Optionally link that file globally and check your setup:
dp config init --envrc ~/.envrc # set the global link dp config show # which .envrc is active, what's set dp config doctor --connect # validate config; probe live systems
-
Go:
dp status dp db query 'SELECT 1' dp db query -t lake 'SELECT 1' dp db query -t local 'SELECT 1'
Environment loading
dp loads variables from .envrc on startup without overriding values
already set in your shell. Lookup order:
DP_ENVRC_PATH~/.config/dataplat/.envrc(the global link — set it withdp config init).envrcin the current directory- the
.envrcbeside a development checkout of dataplat itself
Candidate 3 makes every command sensitive to where you run it: standing in a
cloned repo points dp at whatever host and credentials that repo's .envrc
exports. dp config show and dp config doctor always name the active file
and which candidate produced it, and warn when it came from the current
directory. Set DP_ENVRC_ALLOW_CWD=0 to drop that candidate entirely and
rely only on the global link you chose.
Engines
dp db speaks three engines, and they are not three sizes of the same database.
PostgreSQL and Redshift are servers reached over the PostgreSQL wire protocol,
with users, sessions and an ACL system. DuckDB is a database file, opened
inside the dp process: no host, no port, no password, no TLS, and no users at
all — every connection is the same implicit user, duckdb.
| Engine | <NAME>_ENGINE |
Reached through | Needs |
|---|---|---|---|
| PostgreSQL | postgresql (the default) |
host/port/user/password over libpq | dataplat[db] |
| Redshift | redshift |
the same, port 5439 by default | dataplat[db] |
| DuckDB | duckdb |
a database file, in this process | dataplat[db,duckdb] |
What each command can do
dp db command |
PostgreSQL | Redshift | DuckDB | Why not, on DuckDB |
|---|---|---|---|---|
query |
✓ | ✓ | ✓ | — |
describe |
✓ | ✓ | ✓ | — |
top-tables |
✓ | ✓ | ✓ | works, but ranks by estimated rows and shows no sizes — see below |
role list / show / create / drop |
✓ | ✓ ¹ | ✗ | it has no users or roles at all — pg_roles, pg_authid and pg_user do not exist, and every connection is the same implicit user, duckdb |
long-queries |
✓ | ✓ | ✗ | it runs inside this process and has no pg_stat_activity: there are no other sessions to inspect |
kill |
✓ | ✓ | ✗ | the same — there is no other session to cancel |
dbt-orphans |
✓ | ✓ ² | ✗ | it quarantines an orphan by renaming it, and ALTER TABLE … RENAME TO fails with a DependencyException whenever a view depends on the table, which in a dbt project is the normal case. DuckDB has no CASCADE |
¹ dp db role show reports Password set: unknown on Redshift: there is no
pg_authid, and pg_user.passwd is masked to '********' for every row, so
the question cannot be answered rather than answered wrongly.
² dp db dbt-orphans does not consider materialized views on Redshift: there is
no pg_matviews catalog listing them.
A refused command exits 2 — "a combination of arguments that cannot work", the same code as an unknown flag or an unknown target — and says which engine and why:
$ dp db role list -t local
Error: dp db role list cannot run against DuckDB: it has no users or roles at
all — pg_roles, pg_authid and pg_user do not exist, and every connection is the
same implicit user, 'duckdb'. That is what DuckDB is, not a missing dataplat
feature.
It never says "not implemented", because none of these is a gap waiting for a
release. A single-user in-process database has no roles to grant, no concurrent
sessions to triage and nobody else's query to cancel; dbt-orphans is refused
because its one mechanism is a rename DuckDB rejects, and a destructive command
that half works is worse than none. If you need role management or query
triage, that is a reason to put a server behind the data, not to wait for a
flag.
A mixed configuration keeps working. dp db long-queries runs across every
target by default, so there the refusal is per target: the servers still
report, each DuckDB target says why it cannot on stderr — where it cannot
corrupt --json — and the run is not counted as a failure, because nothing
failed. Only when every target in scope is a DuckDB one is the refusal the whole
answer, and then it exits 2.
Where a command does run but cannot answer every part of its report, it names
what it left out. dp db describe against a DuckDB target ends with a
Not applicable on DuckDB section listing privileges, default privileges,
size and materialized views, each with the reason — because a section that is
simply missing reads as "nothing is configured" when what it means is "this
engine has no such concept".
DuckDB configuration
export DP_TARGETS="warehouse,local"
export LOCAL_ENGINE=duckdb
export LOCAL_PATH=~/data/warehouse.duckdb # or :memory:
export LOCAL_READ_ONLY=1 # optional
| Variable | Purpose |
|---|---|
<NAME>_ENGINE=duckdb |
Makes this target a database file instead of a server. |
<NAME>_PATH |
The database file. ~ is expanded; a relative path is resolved against the directory you run dp in, exactly as DuckDB would. :memory: opens an ephemeral in-memory database instead. |
<NAME>_DATABASE |
Accepted as a fallback for _PATH, because every other engine takes a database name from it and that is what you will reach for first. _PATH wins if both are set. |
<NAME>_READ_ONLY |
Truthy ⇒ open the file read-only. DuckDB enforces it itself, so it is a guard and not a hint: a write fails with Cannot execute statement of type "CREATE" on database … attached in read-only mode!, and — like any statement the engine rejects — exits 1 rather than 5, because retrying it cannot help. |
--database/-d is the flag spelling of the path and beats both variables;
there is no --path, because every db command already has -d.
Five behaviours worth knowing before you configure one:
- Server settings are refused, not ignored.
<NAME>_HOST,_PORT,_USER,_PASSWORDand_SSLMODE— and the matching flags — stop a DuckDB target at exit 3 naming the offender, because a target carrying both a host and a path is a configuration that is wrong in one of two ways, and guessing which half you meant is how a query ends up running against the wrong database. The mirror is refused too:<NAME>_PATHon apostgresqltarget. Only this target's own<NAME>_*variables count, so a strayPGHOSTleft in your shell does not break a DuckDB target. - dataplat never creates the database file.
duckdb.connect()would, and for a read-mostly tool that is the wrong default: a mistyped path would become an empty database, anddp db describewould then report — truthfully — that your warehouse contains nothing. A missing path is exit 3, naming the path. --verbosenames the file, and whether it was opened read-only:[dp:sql] connect /data/warehouse.duckdb engine=duckdb read-only.dp statusincludes DuckDB targets, and says what it could not check rather than leaving a blank:✓ local — reachable; long-running queries not applicable on DuckDB — it runs inside this process and has no pg_stat_activity ….dp config showanddp config doctorare not DuckDB-aware yet. They list and check the libpq variables for every target, so a correct DuckDB target shows_HOST/_USER/_PASSWORDasunset,doctorreports them as missing, and neither mentions_PATHor_READ_ONLY. Ignore that for DuckDB targets — and do not set_HOSTto silence it, since that is exactly what a DuckDB target refuses.
DuckDB top-tables sizes are estimates
dp db top-tables works against DuckDB, but its numbers do not mean what the
same columns mean on a server. PostgreSQL ranks by bytes from
pg_total_relation_size() (heap + indexes + toast); Redshift by
svv_table_info.size. DuckDB has neither pg_total_relation_size() nor
pg_database_size(), and no catalog column carrying per-table bytes at all. So
on a DuckDB target the report is a different report:
- rows are ranked by
duckdb_tables().estimated_size— DuckDB's row-count estimate, not bytes — and the section header says so:ranked by estimated rows, with the column headedRows (est.); - the
Sizeand% of diskcolumns are not shown, rather than shown full of—: a Size column of dashes under a0 B (0.0% of disk)footer would read as a dataplat defect instead of as the engine's answer. The keys stay in--jsonwithsize_bytes: nullandmatched_bytes: null, so a script sees the gap explicitly rather than a field that vanished; - the one real byte figure is the whole database file, from
pragma_database_size(). It is printed asDatabase file:and deliberately not used as the denominator of a percentage: it covers every schema in the file, including free blocks, so nothing above it divides into it; - the section prints, in one line, exactly where its numbers came from, and
--jsoncarries the same thing per target asranked_byandsize_basis— so two targets on different engines in one report cannot be misread as comparable.
Use it to find the big tables inside one DuckDB file. Do not compare a DuckDB ranking with a PostgreSQL one, and do not add the two engines' figures together.
One thing to know before --drop/--drop-sql there, which the emitted script
also says: DuckDB does not block DROP TABLE on a dependent view — it
leaves the view broken — while a foreign-key child does block it, and there is no
CASCADE.
Configuration reference
| Variable | Purpose |
|---|---|
DP_ENVRC_PATH |
Explicit .envrc to load, ahead of every other candidate. |
DP_ENVRC_ALLOW_CWD |
Set to 0 to stop picking up .envrc from the current directory. |
DP_VERBOSE |
Set to 1 to trace every statement and request to stderr, for a whole session — same switch as --verbose. |
DP_TARGETS |
Comma-separated DB target names (e.g. warehouse,lake). |
DP_DEFAULT_TARGET |
Target used when --target is omitted (default: first of DP_TARGETS). |
<NAME>_ENGINE |
postgresql (default), redshift or duckdb, per target. |
<NAME>_HOST/_PORT/_USER/_PASSWORD/_DATABASE/_SSLMODE |
Connection settings, per target. Server-only: all but _DATABASE are refused on a duckdb target — see Engines. |
<NAME>_PATH |
DuckDB only: the database file, or :memory:. <NAME>_DATABASE is accepted as a fallback. |
<NAME>_READ_ONLY |
DuckDB only: truthy ⇒ open the database file read-only. |
<NAME>_REASSIGN_OWNER |
Default owner for dp db role drop ownership transfer. |
AIRBYTE_BASE_URL + AIRBYTE_CLIENT_ID/AIRBYTE_CLIENT_SECRET (cloud) or AIRBYTE_EMAIL/AIRBYTE_PASSWORD (OSS) |
Airbyte API access. |
SUPERSET_BASE_URL, SUPERSET_ADMIN_USERNAME, SUPERSET_ADMIN_PASSWORD |
Superset API access. |
DP_AWS_PROFILE |
Default AWS profile for dp cloud aws commands. |
DP_AWS_PROFILE_ALIASES |
Short aliases, e.g. prod=AdminAccess-Prod,qa=AdminAccess-QA. |
DP_AWS_REGION |
Default AWS region (falls back to AWS_REGION, then the profile). |
DP_RDS_INSTANCE |
Default RDS instance for dp cloud aws rds / dp status. |
DP_DBT_PROJECT |
dbt project name — required for dp db dbt-orphans. |
DP_DBT_INVOCATION_COMMAND |
Optional filter on dbt_artifacts invocations. |
DP_DBT_ORPHANS_EXCLUDE_SCHEMAS |
Comma-separated schemas to skip (default raw,_raw,dbt_artifacts). |
GHA_APP_ID, GHA_APP_PRIVATE_KEY |
GitHub App creds for dp ci github runner. |
DP_CI_RUNNER_DNS |
Comma-separated DNS servers for the runner container. |
Conventions
-t/--target— named DB target fromDP_TARGETS. Multi-target commands acceptall. Sets the engine and env prefix in one flag;--engine/--env-prefixremain as overrides.--json— every read command can emit machine-readable output.--yes/-y— every destructive or bulk-mutating command confirms first; pass--yesin scripts. Bulk mutators also support--dry-run.--limit/-n— row caps share one spelling everywhere.- Secrets stay off argv — prefer
--value-stdin/ hidden prompts; values are never echoed back. --verbose— a root flag: show what the tool actually sent, on stderr.
Exit codes
Exit codes are a contract, not an implementation detail — a wrapper script branches on them long after it has stopped reading our output:
| Code | Meaning | Retry? |
|---|---|---|
0 |
Success. | — |
1 |
Unexpected or not-yet-classified failure. Also a declined confirmation: "no" is not an error, but it is not "done" either. | No — you don't know what happened. |
2 |
Invalid input: an unknown flag or target, a value that cannot be parsed, a combination of arguments that cannot work. | No — the command itself is wrong. |
3 |
Configuration problem: missing connection settings, an unknown engine, an unset AIRBYTE_BASE_URL or DP_DBT_PROJECT. |
No — a human has to fix the config. |
4 |
Authentication failure: credentials rejected, a login endpoint that would not authenticate, aws sso login failed. |
No — a new credential is needed. |
5 |
External service failure: a call to Airbyte, Superset or AWS failed, timed out or returned something unusable; a warehouse that refused the operation. | Yes — the only class where a retry can help. |
0, 1 and 2 keep their conventional meanings. 2 is Click's own code for a
usage error, which is why invalid input shares it: dp db query --format nope
(Click's complaint) and -t nosuchtarget (ours) are one condition to the
caller — "you passed something I cannot use" — and splitting them by who noticed
would be a distinction with no use.
The point of the codes above 2 is that 5 is the one worth retrying, and 3
and 4 are the ones you must never retry: no amount of sleeping and trying
again creates a missing config file or repairs a rejected password. Cap the
retries anyway — 5 means "the other end failed", which covers a warehouse
that was restarting and a DROP the server refused because something still
depends on it, and only the first of those gets better on its own.
dp db long-queries -t warehouse --json > queries.json
case $? in
0) ;;
5) echo "service unavailable; will retry" >&2; exit 75 ;; # EX_TEMPFAIL
*) echo "not retryable; fix and re-run" >&2; exit 1 ;;
esac
Treat 1 as "unknown", never as "retryable": it is the code for a failure
dataplat has not classified, so retrying it is a guess.
Verbose tracing
--verbose (or DP_VERBOSE=1) answers the one question logs cannot: what did
dp actually send?
dp --verbose db query 'SELECT 1' # root flag, before the subcommand
DP_VERBOSE=1 dp db long-queries 2> trace.log # or for a whole session
dp --verbose db describe public 2>&1 >/dev/null | grep '\[dp:sql\]'
Every line is prefixed with its category — [dp:sql] or [dp:http] — and
collapsed onto one line, so the output greps cleanly:
[dp:sql] connect me@db.example.com:5432/analytics engine=postgresql
[dp:sql] SELECT 1 FROM pg_namespace WHERE nspname = %s | 1 params bound
[dp:http] GET https://api.airbyte.com/v1/jobs?limit=20
[dp:http] GET https://api.airbyte.com/v1/jobs?limit=20 -> 200 143.8ms
SQL is traced before the statement runs, which is the point: the trace you
need is the one for the query that never came back, and a line written afterwards
would never be written at all. That is also why there is no duration on it — use
dp db long-queries for how long. HTTP gets two lines for the same reason, one
on the way out and one on the response; a line with no -> status partner is
the signal that a request hung, was refused, or never connected.
It writes to stderr and never to stdout, so --json and --format csv stay
machine-readable with tracing on. Piping into jq is still valid, and
2>/dev/null drops the trace without touching the data:
dp --verbose db query --format json 'SELECT 1' 2>/dev/null | jq
Secrets are never traced. Every message is redacted on the way out —
passwords (including the SQL PASSWORD '…' literal that role creation sends),
tokens, API keys, Authorization headers and credentials embedded in a URL all
become ***. Parameter values, result rows and response bodies are not traced
at all: they are your warehouse's data, and a trace that scrolls the answer past
you has hidden the request it exists to show.
Examples
Daily overview
dp status # DBs, Airbyte jobs (24h), runners, RDS at a glance
dp open superset # jump to a web UI
DB query
dp db query 'SELECT 1' # default target
dp db query -t lake 'SELECT 1' # named target
dp db query --format csv -n 0 'SELECT ...' > out.csv
echo 'SELECT 1' | dp db query
dp db query --write 'UPDATE t SET x = 1' # writes need --write or a confirm
dp db query -t local 'SELECT * FROM duckdb_tables()' # DuckDB target
Your SQL is sent as you wrote it, so write it in the target's own dialect —
DuckDB's catalogs (duckdb_tables(), pragma_database_size()) on a duckdb
target, pg_* on a server. DuckDB does provide pg_catalog compatibility
views, so simple pg_class / information_schema queries work on all three.
Long queries and kill
dp db long-queries # all targets: running + recent failures
dp db long-queries -t warehouse --history # pg_stat_statements aggregate
dp db kill 12345 -t warehouse # terminate a backend (confirms first)
DB roles
dp db role list --users-only
dp db role show alice -t lake --json
dp db role create svc_reporting --table-select reporting --databases analytics
dp db role create readers --no-login --table-select reporting # passwordless group role
dp db role create readers --no-login --grant-to alice,bob
dp db role drop old_user --all-databases --dry-run
list, create, and drop work against both Postgres and Redshift targets —
and against no DuckDB target, which has no users to manage at all (see
Engines). create makes login roles with generated passwords by
default; --no-login creates a passwordless group-style role instead. drop
transfers owned objects to the target's <NAME>_REASSIGN_OWNER before
DROP USER.
Cleanup
dp db top-tables --schema-prefix dev_ -n 30
dp db top-tables --drop-sql > review.sql # emit a script
dp db dbt-orphans # dry-run scan (default)
dp db dbt-orphans --no-dry-run # apply renames (confirms)
dp db dbt-orphans purge --older-than 7 --no-dry-run
dp db dbt-orphans revert # undo from the audit log
AWS secrets
dp cloud aws secrets list --prefix /kubernetes
dp cloud aws secrets get /my/secret --key password
dp cloud aws secrets compare /my/secret -p prod -p qa
echo -n "hunter2" | dp cloud aws secrets set my/secret --value-stdin -p qa
dp cloud aws secrets versions my/secret
dp cloud aws secrets rollback my/secret # AWSCURRENT -> AWSPREVIOUS
All writes show their targets and confirm (or --yes).
AWS monitoring
dp cloud aws rds metrics --json
dp cloud aws rds plot -m cpu -m connections --hours 12
dp cloud aws redshift metrics -w my-workgroup
Airbyte
dp ingest airbyte connections list -w <workspace-id> --json
dp ingest airbyte connections sync -c <connection-id> --wait
dp ingest airbyte connections reset -c <connection-id>
# Move every date-based cursor to a date, across all connections from one source
dp ingest airbyte connections set-cursor --source-id <id> --to 2024-01-01 --dry-run
dp ingest airbyte connections set-cursor -c <connection-id> --to 2024-01-01 --yes
# xmin (Postgres transaction-id) cursors: set them directly
dp ingest airbyte connections set-cursor -c <connection-id> --xmin 0 --yes
Development
See CONTRIBUTING.md for the integration suite and the rules for changing SQL that runs on Redshift.
git clone https://github.com/hanslemm/dataplat
cd dataplat
uv sync --group dev --all-extras
uv run pytest
uv run ruff check .
uv run ruff format --check .
uv run mypy dataplat
CI runs those four across Python 3.12 and 3.13 — the floor the wheel advertises as well as the pinned dev version.
The three engines are not equally covered, and the difference is worth knowing before you trust a number the tool printed:
| Engine | Coverage in CI | Needs |
|---|---|---|
| PostgreSQL | real SQL, really executed | a container (-m integration, DP_TEST_PG_REQUIRED=1) |
| DuckDB | real SQL, really executed | nothing — it is in-process, so it runs in the default job |
| Redshift | none: generated and asserted, never executed | a cluster you own (-m redshift) |
Redshift cannot be containerized, so CI cannot cover it. If you run dataplat
against a Redshift cluster, you can verify your own deployment: point
DP_TEST_RS_TARGET at one of your targets and run the read-only tier
(uv run pytest -m redshift). It only issues SELECTs — a guard refuses
anything else before it reaches the server — and prints what your cluster
answered. See CONTRIBUTING.md.
Integration tests against a real PostgreSQL
Most of the suite drives a fake database cursor. That proves a code path
called execute, never that the SQL it built is valid. The tests in
tests/integration/ close that gap: they run the real statements against a
live PostgreSQL and check the results, so an invalid column reference or a
broken GRANT fails here instead of on your warehouse.
uv run pytest stays green without Docker — the suite skips itself when
no server is reachable. You only need the container to actually exercise it:
docker run -d --name dp-pg-test -p 55432:5432 \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_DB=dataplat_test \
postgres:16 -c shared_preload_libraries=pg_stat_statements
# Once per database: pg_stat_statements is a per-database extension.
docker exec dp-pg-test psql -U postgres -d dataplat_test \
-c 'CREATE EXTENSION IF NOT EXISTS pg_stat_statements'
DP_TEST_PG_REQUIRED=1 uv run pytest -m integration
The -c shared_preload_libraries=pg_stat_statements is not optional for full
coverage: without it the extension installs but every read of the view fails
with pg_stat_statements must be loaded via shared_preload_libraries, so
dp db long-queries --history stays untested.
| Variable | Purpose |
|---|---|
DP_TEST_PG_DSN |
Connection string for the test server. Default: postgresql://postgres:postgres@127.0.0.1:55432/dataplat_test. |
DP_TEST_PG_REQUIRED |
Truthy ⇒ an unreachable server is a hard error. Unset ⇒ the tests skip. |
Set DP_TEST_PG_REQUIRED=1 whenever a skip would be a lie — that is, always
in CI. Without it a broken container makes the tests vanish and the run goes
green having validated no SQL at all. CI runs the integration job with it set,
against a pinned PostgreSQL major, and the release workflow runs the same job
as a gate before publishing.
Each test runs in a transaction that is rolled back afterwards, so tests never
see each other's objects and nothing survives a failed run. To select the
fast, database-free subset explicitly, use -m "not integration".
Known gap: Redshift. Redshift cannot be containerized, so every Redshift-specific code path remains fake-tested only — its SQL is generated and asserted against a fake cursor, never executed. Treat changes to Redshift paths as unverified by CI and test them against a real cluster.
Not a gap: DuckDB. There is nothing to containerize — a DuckDB database is a
file (or :memory:), and the driver is installed by --all-extras — so the
DuckDB SQL is really executed, with no marker, no container, no env var and no
skip path. A DuckDB change that "could not be tested" is a change that was not
tested.
Releasing
Bump [project].version, then tag X.Y.Z (bare semver, no v prefix) on
main. The release workflow refuses to publish unless the tag matches that
version, and runs the full check matrix plus the integration suite against a
real PostgreSQL first; only then does GitHub Actions build and publish to PyPI
via Trusted Publishing. A published version can be yanked but never replaced,
so the extra minutes buy a guarantee that the shipped SQL has at least been
parsed by a server. Commits follow
Conventional Commits.
License
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dataplat-0.4.0.tar.gz.
File metadata
- Download URL: dataplat-0.4.0.tar.gz
- Upload date:
- Size: 556.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f81f9773edd9b721e93cebf80f8a5a254ff94b8b0638044f766e072d10fba727
|
|
| MD5 |
bef6ed39f48c12d38d10572aa35f2ed5
|
|
| BLAKE2b-256 |
f71abd7e6af020800e9a0d9399d29284b52c319b5d70bb2bcf1082cd7b1986cc
|
Provenance
The following attestation bundles were made for dataplat-0.4.0.tar.gz:
Publisher:
release.yml on hanslemm/dataplat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dataplat-0.4.0.tar.gz -
Subject digest:
f81f9773edd9b721e93cebf80f8a5a254ff94b8b0638044f766e072d10fba727 - Sigstore transparency entry: 2272632255
- Sigstore integration time:
-
Permalink:
hanslemm/dataplat@bdd06200f1c6f8e14df9ac0bbc52717ab230c638 -
Branch / Tag:
refs/tags/0.4.0 - Owner: https://github.com/hanslemm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bdd06200f1c6f8e14df9ac0bbc52717ab230c638 -
Trigger Event:
push
-
Statement type:
File details
Details for the file dataplat-0.4.0-py3-none-any.whl.
File metadata
- Download URL: dataplat-0.4.0-py3-none-any.whl
- Upload date:
- Size: 273.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dddc247233ddff24a0b2193d2771e95f59ce88fe52e59e289fdb36e9756fb0f2
|
|
| MD5 |
5eb7d02ab9082f706282f075602e021f
|
|
| BLAKE2b-256 |
34e615d20d010496d2458103de1f184ab7a3db4b63b95deea50e2aa615ca4ad7
|
Provenance
The following attestation bundles were made for dataplat-0.4.0-py3-none-any.whl:
Publisher:
release.yml on hanslemm/dataplat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dataplat-0.4.0-py3-none-any.whl -
Subject digest:
dddc247233ddff24a0b2193d2771e95f59ce88fe52e59e289fdb36e9756fb0f2 - Sigstore transparency entry: 2272632423
- Sigstore integration time:
-
Permalink:
hanslemm/dataplat@bdd06200f1c6f8e14df9ac0bbc52717ab230c638 -
Branch / Tag:
refs/tags/0.4.0 - Owner: https://github.com/hanslemm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bdd06200f1c6f8e14df9ac0bbc52717ab230c638 -
Trigger Event:
push
-
Statement type: