DuckDB (duckdb.org) provider for Apache Airflow
Project description
airflow-provider-duckdb
A DuckDB provider for Airflow. This provider exposes a hook/connection that returns a DuckDB connection.
This works for either local or MotherDuck connections.
Installation
pip install airflow-provider-duckdb
Connection
The connection type is duckdb
. It supports setting the following parameters:
host
(optional): Path to local file or MotherDuck database (leave blank for in-memory database)password
(optional): MotherDuck Service token (leave blank for local database)
These have been relabeled in the Airflow UI for clarity.
For example, if you want to connect to a local file:
host
:/path/to/file.db
password
: (leave blank)
If you want to connect to a MotherDuck database:
host
:<YOUR_DB_NAME>
password
:<YOUR_MOTHERDUCK_SERVICE_TOKEN>
Usage
import pandas as pd
import pendulum
from airflow.decorators import dag, task
from duckdb_provider.hooks.duckdb_hook import DuckDBHook
@dag(
schedule=None,
start_date=pendulum.datetime(2022, 1, 1, tz="UTC"),
catchup=False,
)
def duckdb_transform():
@task
def create_df() -> pd.DataFrame:
"""
Create a dataframe with some sample data
"""
df = pd.DataFrame(
{
"a": [1, 2, 3],
"b": [4, 5, 6],
"c": [7, 8, 9],
}
)
return df
@task
def simple_select(df: pd.DataFrame) -> pd.DataFrame:
"""
Use DuckDB to select a subset of the data
"""
hook = DuckDBHook.get_hook('duckdb_default')
conn = hook.get_conn()
# execute a simple query
res = conn.execute("SELECT a, b, c FROM df WHERE a >= 2").df()
return res
@task
def add_col(df: pd.DataFrame) -> pd.DataFrame:
"""
Use DuckDB to add a column to the data
"""
hook = DuckDBHook.get_hook('duckdb_default')
conn = hook.get_conn()
# add a column
conn.execute("CREATE TABLE tb AS SELECT *, a + b AS d FROM df")
# get the table
return conn.execute("SELECT * FROM tb").df()
@task
def aggregate(df: pd.DataFrame) -> pd.DataFrame:
"""
Use DuckDB to aggregate the data
"""
hook = DuckDBHook.get_hook('duckdb_default')
conn = hook.get_conn()
# aggregate
return conn.execute("SELECT SUM(a), COUNT(b) FROM df").df()
create_df_res = create_df()
simple_select_res = simple_select(create_df_res)
add_col_res = add_col(simple_select_res)
aggregate_res = aggregate(add_col_res)
duckdb_transform()
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
Close
Hashes for airflow-provider-duckdb-0.1.1a8.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 825f5c7ac55e639ad3cfa17d545b694920e40a8aef573f7bcc570d0b5598c832 |
|
MD5 | 57d1a018fbc8a85808d51ee29b03993b |
|
BLAKE2b-256 | d2a42f03a814530a559113875bffa05204d7a6365345c9d8cf115677db69721f |
Close
Hashes for airflow_provider_duckdb-0.1.1a8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10ae3300e9609d94bcaa27b26cfffe4e0fb58c629607dfa410e90bb7f78dedbd |
|
MD5 | 95f723a27e0922d13704ed133575dc44 |
|
BLAKE2b-256 | 0d8ca4aa22a3b40a2dfe8ff4691c7d39fdc976069bac43b01118c9ffd03db75a |