From 8fb0f7edf7190be4a5305d5d3f85c196efd0966a Mon Sep 17 00:00:00 2001 From: Emil Sadek Date: Mon, 15 Jun 2026 15:32:44 -0700 Subject: [PATCH] docs: add datafusion, spark, and clickhouse examples --- docs/databases.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/docs/databases.md b/docs/databases.md index 6ada5d3..f122ff9 100644 --- a/docs/databases.md +++ b/docs/databases.md @@ -25,6 +25,20 @@ Connect to Amazon Redshift: databow --driver redshift --uri postgresql://localhost:5439 --option redshift.cluster_type=redshift-serverless --option redshift.workgroup_name= --option redshift.db_name=sample_data_dev ``` +## Apache DataFusion + +Install the Apache DataFusion driver with dbc: + +```sh +dbc install datafusion +``` + +Connect to Apache DataFusion: + +```sh +databow --driver datafusion +``` + ## Apache Doris Install the Arrow Flight SQL driver with dbc: @@ -39,6 +53,20 @@ Connect to Apache Doris: databow --driver flightsql --uri grpc://localhost:8070 --username root ``` +## Apache Spark + +Install the Apache Spark driver with dbc: + +```sh +dbc install --pre spark +``` + +Connect to Apache Spark: + +```sh +databow --driver spark --uri "spark://admin@localhost:15002?auth_type=none&api=connect" +``` + ## BigQuery Install the BigQuery driver with dbc: @@ -67,6 +95,20 @@ Connect to Citus: databow --driver postgresql --uri postgresql://postgres:password@localhost:5432/postgres ``` +## ClickHouse + +Install the ClickHouse driver with dbc: + +```sh +dbc install --pre clickhouse +``` + +Connect to ClickHouse: + +```sh +databow --driver clickhouse --uri http://localhost:8123 --username user --password pass +``` + ## Databricks Install the Databricks driver with dbc: