Databricks¶
Installation¶
Connection Parameters¶
Connect using the Database.from_databricks()
method with parameters:
PARAMETER | DESCRIPTION |
---|---|
server_hostname
|
Databricks workspace hostname.
TYPE:
|
http_path
|
HTTP path to the Databricks warehouse.
TYPE:
|
access_token
|
Personal access token for authentication.
TYPE:
|
catalog
|
Name of the catalog to use.
TYPE:
|
schema
|
Name of the schema to use.
TYPE:
|
match_schema
|
Regex pattern to filter schemas. Mutually exclusive with match_tables.
TYPE:
|
match_tables
|
Regex pattern to filter tables. Mutually exclusive with match_schema.
TYPE:
|
**kwargs
|
Additional arguments passed to the DBAPI connection call.
TYPE:
|