connector
Databricks
Query Databricks SQL warehouses directly.
Connection fields
| Field | Required | Description |
|---|---|---|
host | Yes | Databricks workspace server hostname. |
http_path | Yes | HTTP path for the SQL warehouse — its trailing segment (after the last "/") is used as the warehouse ID. |
token | Yes | Personal access token. |
catalog | No | Default catalog. |
schema | No | Default schema. |
Example configuration
{
"host": "my-workspace.cloud.databricks.com",
"http_path": "/sql/1.0/warehouses/abc123def456",
"token": "••••••••",
"catalog": "main",
"schema": "analytics"
}Caveats
- http_path's warehouse ID is extracted as everything after the last "/" — a malformed path silently sends an empty warehouse_id rather than failing fast.