DB-API 2.0 client for DuckHaven's SQL session/statement API
Project description
duckhaven-sql-connector
A PEP 249 (DB-API 2.0) Python client for DuckHaven's SQL session API.
It is a pure HTTP client of DuckHaven's public REST API: it authenticates with a
DuckHaven Personal Access Token (dh_pat_…), opens a SQL session bound to one compute
agent, runs statements against that session's persistent DuckDB connection, and fetches
results. It never talks to a compute node directly and depends on no DuckHaven server
internals.
This connector is the shared transport that dbt-duckhaven, the dlt duckhaven
destination, a future CLI, and Airflow operators build on.
Install
pip install duckhaven-sql-connector
# optional extras:
pip install "duckhaven-sql-connector[arrow]" # client-side Arrow tables
pip install "duckhaven-sql-connector[otel]" # OpenTelemetry trace propagation
Usage
from duckhaven_sql_connector import connect
with connect(
host="https://duckhaven.internal",
workspace="analytics",
token="dh_pat_…",
catalog="sales", # optional default catalog
# agent="…-uuid-…", # optional explicit compute (an agent UUID); omit to auto-pick
) as conn:
with conn.cursor() as cur:
cur.execute("SELECT ? AS n", [1]) # qmark params, rendered safely client-side
print(cur.description, cur.fetchall())
A runnable version is in examples/quickstart.py.
Note: The DuckHaven SQL session surface is disabled unless the operator sets
SQL_SESSIONS_ENABLED=trueon the server. Against a server with it off, opening a session raises anOperationalError.
Errors
Failures raise the standard PEP 249 exceptions,
carrying the server's code/status_code/detail:
ProgrammingError— a rejected statement (statement_not_allowed), a denied grant, or a missing object.OperationalError— an unavailable/disconnected agent, a reaped or closed session (reconnect), a timeout, or the session surface being disabled.MaxRetryDurationError(a subtype) is raised when retries exhaust the configured time budget.InterfaceError— bad connection configuration or a malformed response.
Idempotent requests (poll/fetch/cancel) are retried on transient failures with capped
exponential backoff; a server Retry-After header is honored, and retries are bounded by
both a max-attempt count and a total-time budget (RetryPolicy.max_elapsed). Statement
submits are never auto-retried.
Column types
cursor.description carries the result's column types in PEP 249's type_code field,
spelled the way DuckDB prints a logical type — the same string DESCRIBE returns, so it is
self-describing for parameterized and nested types:
cur.execute("SELECT id, amount, created_at FROM sales.orders")
[(d[0], d[1]) for d in cur.description]
# [('id', 'BIGINT'), ('amount', 'DECIMAL(18,4)'), ('created_at', 'TIMESTAMP WITH TIME ZONE')]
cur.column_types # the same types on their own
Both are None against a server (or agent) older than this field, so code that reads them
should tolerate that.
Values are not re-typed to match. Results travel as JSON, so a
DECIMALorHUGEINTarrives as a float with its precision already lost, aBLOBas hex text, anINTERVALas an ISO-8601 duration, and temporal types as ISO-8601 strings. The connector reports the true type but does not cast the value, because casting could not restore precision that was gone before the client saw it — it would only hide the loss.
Metadata
For relation introspection (as dbt and BI tools need), the cursor exposes metadata methods; fetch the rows as usual:
cur.tables(catalog="sales", schema_name="public")
for catalog, schema, name, table_type in cur.fetchall():
...
cur.columns(catalog="sales", schema_name="public", table_name="orders")
for catalog, schema, table, column, position, data_type, is_nullable in cur.fetchall():
...
# also: cur.catalogs(), cur.schemas(catalog=…)
Two things are worth knowing about how these work:
columns()needs an exacttable_name. It reports columns withDESCRIBE, which describes one relation.information_schema.columnsis not usable: for an attached Iceberg table it returns a single placeholder row (__/UNKNOWN) instead of the real columns, and inconsistently so — a table something has already touched in the session reports correctly while the rest do not — so it returns wrong data rather than failing. Usetables()to enumerate, thencolumns()per relation.data_typeis DuckDB's spelling, the same vocabulary a query result reports.catalogs(),schemas()andtables()read DuckHaven's REST browse endpoints, not SQL. Engine-side enumeration is refused on any workspace with a scoped catalog attached, since the engine cannot filter those listings by grant; the REST endpoints can, and behave identically on open catalogs. They cost one request per catalog in scope, plus one per schema fortables(), so passcatalog=andschema_name=when you can.
Arrow results
With the arrow extra, fetch results as a pyarrow.Table:
cur.execute("SELECT * FROM sales.orders")
table = cur.fetch_arrow_table()
Observability
otelextra — each request emits a client span and injects a W3Ctraceparent, so client spans join the DuckHaven server trace. It is a no-op when the extra isn't installed.- Hooks — pass
connect(..., hooks=Hooks(...))to observe request timings, retries, and rows fetched without any OpenTelemetry dependency (a client library runs no metrics server).
Server version
conn.server_version() reports the server's release and API-contract version:
v = conn.server_version()
if v is None:
... # server predates GET /api/version — assume the oldest supported behaviour
else:
print(v.version, v.api_version) # e.g. "1.4.0", 1
version is the build/release version; api_version is an integer bumped only on a
breaking API change. It is a provenance and coarse-compatibility signal, not a feature
list — an additive change (a new field, a newly admitted statement) moves neither — so it
is for support and diagnostics rather than for gating behaviour. A server too old to expose
the endpoint returns None.
Compatibility
The exact server endpoints and fields this client depends on are pinned in
contract/duckhaven-openapi.subset.json and checked
by the contract test. Regenerate it against a running server with
make refresh-contract HOST=https://duckhaven.internal to detect API drift early.
License
Apache-2.0.
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
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 duckhaven_sql_connector-0.3.0.tar.gz.
File metadata
- Download URL: duckhaven_sql_connector-0.3.0.tar.gz
- Upload date:
- Size: 29.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c8d9e0a026b6bdf85bc5e45ba037d60a342d69f0dcb576feb2371fad8c76c15
|
|
| MD5 |
ab864a80bdf65ac3e9228db4c8aee251
|
|
| BLAKE2b-256 |
863ed75471777265f51d29ad5cc87af6d87648a14cb8b479fe4be6e0b751c7f0
|
Provenance
The following attestation bundles were made for duckhaven_sql_connector-0.3.0.tar.gz:
Publisher:
release.yml on tamasmrtn/duckhaven-clients
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
duckhaven_sql_connector-0.3.0.tar.gz -
Subject digest:
5c8d9e0a026b6bdf85bc5e45ba037d60a342d69f0dcb576feb2371fad8c76c15 - Sigstore transparency entry: 2226804909
- Sigstore integration time:
-
Permalink:
tamasmrtn/duckhaven-clients@4884d9f8e9ac880f38a412d8148d14e7b048d85d -
Branch / Tag:
refs/tags/sql-connector-v0.3.0 - Owner: https://github.com/tamasmrtn
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4884d9f8e9ac880f38a412d8148d14e7b048d85d -
Trigger Event:
push
-
Statement type:
File details
Details for the file duckhaven_sql_connector-0.3.0-py3-none-any.whl.
File metadata
- Download URL: duckhaven_sql_connector-0.3.0-py3-none-any.whl
- Upload date:
- Size: 34.1 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 |
8c0e8d5a8bf1be0159845be62523b49edf662b4a2311e13bf8a9721e2a667afd
|
|
| MD5 |
23094a0bdc043b59533a08e1d4014499
|
|
| BLAKE2b-256 |
ff155a137d02bb887d0587d800a63f2c66923f5fe854932f5b12be0366d4343d
|
Provenance
The following attestation bundles were made for duckhaven_sql_connector-0.3.0-py3-none-any.whl:
Publisher:
release.yml on tamasmrtn/duckhaven-clients
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
duckhaven_sql_connector-0.3.0-py3-none-any.whl -
Subject digest:
8c0e8d5a8bf1be0159845be62523b49edf662b4a2311e13bf8a9721e2a667afd - Sigstore transparency entry: 2226805411
- Sigstore integration time:
-
Permalink:
tamasmrtn/duckhaven-clients@4884d9f8e9ac880f38a412d8148d14e7b048d85d -
Branch / Tag:
refs/tags/sql-connector-v0.3.0 - Owner: https://github.com/tamasmrtn
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4884d9f8e9ac880f38a412d8148d14e7b048d85d -
Trigger Event:
push
-
Statement type: