mirror of
https://github.com/apache/superset.git
synced 2026-04-13 13:18:25 +00:00
28 lines
625 B
Plaintext
28 lines
625 B
Plaintext
---
|
|
title: Firebolt
|
|
hide_title: true
|
|
sidebar_position: 39
|
|
version: 1
|
|
---
|
|
|
|
## Firebolt
|
|
|
|
The recommended connector library for Firebolt is [firebolt-sqlalchemy](https://pypi.org/project/firebolt-sqlalchemy/).
|
|
Superset has been tested on `firebolt-sqlalchemy>=0.0.1`.
|
|
|
|
The recommended connection string is:
|
|
|
|
```
|
|
firebolt://{username}:{password}@{database}
|
|
or
|
|
firebolt://{username}:{password}@{database}/{engine_name}
|
|
```
|
|
|
|
Here's a connection string example of Superset connecting to a Firebolt database:
|
|
|
|
```
|
|
firebolt://email@domain:password@sample_database
|
|
or
|
|
firebolt://email@domain:password@sample_database/sample_engine
|
|
```
|