Skip to content

Commit f0c40c5

Browse files
claudespiceClaude
andauthored
fix: Correct Databricks mode values, client_timeout default, and GCS param name (#1459)
Co-authored-by: Claude <claude@spices-MacBook.localdomain>
1 parent 5a4ce74 commit f0c40c5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

website/docs/components/data-connectors/databricks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ Use the [secret replacement syntax](../secret-stores/) to reference a secret, e.
6262

6363
| Parameter Name | Description |
6464
| ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
65-
| `mode` | The execution mode for querying against Databricks. The default is `spark_connect`. Possible values:<br /> <ul><li>`spark_connect`: Use Spark Connect to query against Databricks. Requires a Spark cluster to be available.</li><li>`delta_lake`: Query directly from Delta Tables. Requires the object store credentials to be provided.</li></ul> |
66-
| `databricks_endpoint` | The endpoint of the Databricks instance. Required for both modes. |
65+
| `mode` | The execution mode for querying against Databricks. The default is `spark_connect`. Possible values:<br /> <ul><li>`spark_connect`: Use Spark Connect to query against Databricks. Requires a Spark cluster to be available.</li><li>`delta_lake`: Query directly from Delta Tables. Requires the object store credentials to be provided.</li><li>`sql_warehouse`: Use the SQL Statement Execution API to query against a Databricks SQL Warehouse.</li></ul> |
66+
| `databricks_endpoint` | The endpoint of the Databricks instance. Required for all modes. |
6767
| `databricks_sql_warehouse_id` | The ID of the SQL Warehouse in Databricks to use for the query. Only valid when `mode` is `sql_warehouse`. |
6868
| `databricks_cluster_id` | The ID of the compute cluster in Databricks to use for the query. Only valid when `mode` is `spark_connect`. |
6969
| `databricks_use_ssl` | If true, use a TLS connection to connect to the Databricks endpoint. Default is `true`. |
70-
| `client_timeout` | Optional. Applicable only in `delta_lake` mode. Specifies timeout for object store operations. Default value is `30s` E.g. `client_timeout: 60s` |
70+
| `client_timeout` | Optional. Applicable only in `delta_lake` mode. Specifies timeout for object store operations. E.g. `client_timeout: 60s` |
7171
| `databricks_token` | The Databricks API token to authenticate with the Unity Catalog API. Can't be used with `databricks_client_id` and `databricks_client_secret`. |
7272
| `databricks_client_id` | The Databricks Service Principal Client ID. Can't be used with `databricks_token`. |
7373
| `databricks_client_secret` | The Databricks Service Principal Client Secret. Can't be used with `databricks_token`. |
@@ -144,7 +144,7 @@ Configure the connection to the object store when using `mode: delta_lake`. Use
144144

145145
| Parameter Name | Description |
146146
| ------------------------ | ------------------------------------------------------------ |
147-
| `google_service_account` | Filesystem path to the Google service account JSON key file. |
147+
| `databricks_google_service_account` | Filesystem path to the Google service account JSON key file. |
148148

149149
## Examples
150150

@@ -218,7 +218,7 @@ Configure the connection to the object store when using `mode: delta_lake`. Use
218218
mode: delta_lake
219219
databricks_endpoint: dbc-a1b2345c-d6e7.cloud.databricks.com
220220
databricks_token: ${secrets:my_token}
221-
databricks_google_service_account_path: /path/to/service-account.json
221+
databricks_google_service_account: /path/to/service-account.json
222222
```
223223

224224
## Types

0 commit comments

Comments
 (0)