Dagster integration for Ducklake
Project description
dagster-ducklake
A dagster module that provides integration with ducklake
Installation
The dagster_ducklake module is available as a PyPI package - install with your preferred python
environment manager (We recommend uv).
source .venv/bin/activate
uv pip install dagster-ducklake
Example Usage
import dagster as dg
@dg.asset
def my_ducklake_asset(ddb: DuckDBConnectionProvider):
with ddb.duckdb_connect() as con:
query = "select * from table"
df = con.query(query).df()
df.head()
Resource initialization
{
"ducklake": DuckLakeResource(
metadata_backend=PostgresConfig(
host="db.mycorp.com",
port=5432,
database="ducklake_catalog",
user=dg.EnvVar("POSTGRES_USER"),
password=dg.EnvVar("POSTGRES_PASSWORD"),
),
storage_backend=S3Config(
endpoint_url="objectstore.mycorp.com",
bucket="duckpond-dev",
prefix="stage",
aws_access_key_id=dg.EnvVar("OBJECT_STORE_USER"),
aws_secret_access_key=dg.EnvVar("OBJECT_STORE_PASSWORD"),
region=dg.EnvVar("OBJECT_STORE_REGION"),
use_ssl=True,
url_style="path",
),
alias="stage",
plugins=["postgres", "httpfs", "ducklake"],
),
}
Development
The Makefile provides the tools required to test and lint your local installation
make test
make ruff
make check
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 dagster_ducklake-0.0.3.tar.gz.
File metadata
- Download URL: dagster_ducklake-0.0.3.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6323b3a765cbe3386ca57f785003ba8c4eb6259ae7870cbc577824abe00d2564
|
|
| MD5 |
21b05e8212b3daed87c6021229a9e9ee
|
|
| BLAKE2b-256 |
a49eb3feecec7dbfc0f491b2d6b190b672b5fb6d30ed62920d2eef47ff3d5bde
|
File details
Details for the file dagster_ducklake-0.0.3-py3-none-any.whl.
File metadata
- Download URL: dagster_ducklake-0.0.3-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f78335193147b7f01ad7c73296f701d82f18ee16cf1ca69a842ab5275d7881d2
|
|
| MD5 |
f76f9ef641185a17dc7bac7c9c17e3a8
|
|
| BLAKE2b-256 |
1e07cedf842ab0a55a18a5cae08db7e546921feae23d71ceb66fa73cca898d57
|