Connect to Databricks SQL Warehouse
# S4 method for DatabricksDriver
dbConnect(
drv,
warehouse_id = NULL,
http_path = NULL,
catalog = NULL,
schema = NULL,
staging_volume = NULL,
max_active_connections = 30,
fetch_timeout = 300,
token = db_token(),
host = db_host(),
...
)A DatabricksConnection object
A DatabricksDriver object
Optional ID of the SQL warehouse to connect to
Optional HTTP path for the SQL warehouse; if provided, the warehouse ID is extracted from this path
Optional catalog name to use as default
Optional schema name to use as default
Optional volume path for large dataset staging
Maximum number of concurrent download connections when fetching query results (default: 30)
Timeout in seconds for downloading each result chunk (default: 300)
Authentication token (defaults to db_token())
Databricks workspace host (defaults to db_host())
Additional arguments (ignored)
Provide either warehouse_id or http_path. When http_path is
supplied, the warehouse ID is extracted from the /warehouses/<id> segment.