This is an automated email from the ASF dual-hosted git repository.
sfirke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 1c934b474a docs: add documentation for Arc to Superset's supported
databases (#35585)
1c934b474a is described below
commit 1c934b474a868602e6f0de0baeeeb24c77461039
Author: Ignacio Van Droogenbroeck <[email protected]>
AuthorDate: Tue Oct 14 11:16:59 2025 -0300
docs: add documentation for Arc to Superset's supported databases (#35585)
---
docs/docs/configuration/databases.mdx | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/docs/docs/configuration/databases.mdx
b/docs/docs/configuration/databases.mdx
index 4d8a0e1a4c..1448d7ef9e 100644
--- a/docs/docs/configuration/databases.mdx
+++ b/docs/docs/configuration/databases.mdx
@@ -49,6 +49,7 @@ are compatible with Superset.
| [Apache Pinot](/docs/configuration/databases#apache-pinot)
| `pip install pinotdb`
| `pinot://BROKER:5436/query?server=http://CONTROLLER:5983/`
|
| [Apache Solr](/docs/configuration/databases#apache-solr)
| `pip install sqlalchemy-solr`
|
`solr://{username}:{password}@{hostname}:{port}/{server_path}/{collection}`
|
| [Apache Spark SQL](/docs/configuration/databases#apache-spark-sql)
| `pip install pyhive`
| `hive://hive@{hostname}:{port}/{database}`
|
+| [Arc (Basekick Labs)](/docs/configuration/databases#arc)
| `pip install arc-superset-dialect`
| `arc://{api_key}@{hostname}:{port}/{database}`
|
| [Ascend.io](/docs/configuration/databases#ascendio) |
`pip install impyla`
|
`ascend://{username}:{password}@{hostname}:{port}/{database}?auth_mechanism=PLAIN;use_ssl=true`
|
| [Azure MS SQL](/docs/configuration/databases#sql-server) |
`pip install pymssql`
|
`mssql+pymssql://UserName@presetSQL:[email protected]:1433/TestSchema`
|
| [ClickHouse](/docs/configuration/databases#clickhouse) |
`pip install clickhouse-connect`
| `clickhousedb://{username}:{password}@{hostname}:{port}/{database}`
|
@@ -1256,6 +1257,20 @@ The expected connection string is formatted as follows:
hive://hive@{hostname}:{port}/{database}
```
+#### Arc
+
+The recommended connector library is
[arc-superset-dialect](https://pypi.org/project/arc-superset-dialect/). Install
with `pip install arc-superset-dialect`.
+
+The connection string looks like:
+
+```
+arc://{api_key}@{hostname}:{port}/{database}
+```
+
+##### Multi-Database Support
+
+Arc supports multiple databases (schemas) within a single instance. In
Superset, each Arc database appears as a schema in the SQL Lab, and
cross-database queries are supported using `database.table` syntax.
+
#### SQL Server
The recommended connector library for SQL Server is
[pymssql](https://github.com/pymssql/pymssql).