connector
Databricks logo

Databricks

Query Databricks SQL warehouses directly.

Connection fields

FieldRequiredDescription
hostYesDatabricks workspace server hostname.
http_pathYesHTTP path for the SQL warehouse — its trailing segment (after the last "/") is used as the warehouse ID.
tokenYesPersonal access token.
catalogNoDefault catalog.
schemaNoDefault 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.