Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions docs/databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<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:
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
Loading