feat: support databend for superset (#23308)

This commit is contained in:
Jeremy
2023-11-03 03:00:11 +08:00
committed by GitHub
parent b58cc24bd4
commit 5690946b1a
6 changed files with 508 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
---
title: Databend
hide_title: true
sidebar_position: 39
version: 1
---
## Databend
The recommended connector library for Databend is [databend-sqlalchemy](https://pypi.org/project/databend-sqlalchemy/).
Superset has been tested on `databend-sqlalchemy>=0.2.3`.
The recommended connection string is:
```
databend://{username}:{password}@{host}:{port}/{database_name}
```
Here's a connection string example of Superset connecting to a Databend database:
```
databend://user:password@localhost:8000/default?secure=false
```