You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- **cubesql:** Always repartition joins when right side has multiple partitions ([#10105](https://github.com/cube-js/cube/issues/10105)) ([ae32748](https://github.com/cube-js/cube/commit/ae327483caabba974e271fb52f4ccc5fd5fa5789))
|`CUBEJS_DB_NAME`| The name of the database to connect to | A valid database name | ✅ |
53
53
|`CUBEJS_DB_DATABRICKS_URL`| The URL for a JDBC connection | A valid JDBC URL | ✅ |
54
54
|`CUBEJS_DB_DATABRICKS_ACCEPT_POLICY`| Whether or not to accept the license terms for the Databricks JDBC driver |`true`, `false`| ✅ |
55
-
|`CUBEJS_DB_DATABRICKS_TOKEN`| The [personal access token][databricks-docs-pat] used to authenticate the Databricks connection | A valid token | ✅ |
55
+
|`CUBEJS_DB_DATABRICKS_OAUTH_CLIENT_ID`| The OAuth client ID for [service principal][ref-databricks-m2m-oauth] authentication | A valid client ID | ❌ |
56
+
|`CUBEJS_DB_DATABRICKS_OAUTH_CLIENT_SECRET`| The OAuth client secret for [service principal][ref-databricks-m2m-oauth] authentication | A valid client secret | ❌ |
57
+
|`CUBEJS_DB_DATABRICKS_TOKEN`| The [personal access token][databricks-docs-pat] used to authenticate the Databricks connection | A valid token | ❌ |
56
58
|`CUBEJS_DB_DATABRICKS_CATALOG`| The name of the [Databricks catalog][databricks-catalog] to connect to | A valid catalog name | ❌ |
57
59
|`CUBEJS_DB_EXPORT_BUCKET_MOUNT_DIR`| The path for the [Databricks DBFS mount][databricks-docs-dbfs] (Not needed if using Unity Catalog connection) | A valid mount path | ❌ |
58
60
|`CUBEJS_DB_MAX_POOL`| The maximum number of concurrent database connections to pool. Default is `8`| A valid number | ❌ |
Copy file name to clipboardExpand all lines: docs/pages/product/configuration/data-sources/duckdb.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,8 +72,8 @@ deployment][ref-demo-deployment] in Cube Cloud.
72
72
|`CUBEJS_DB_DUCKDB_S3_USE_SSL`| Use SSL for connection | A boolean | ❌ |
73
73
|`CUBEJS_DB_DUCKDB_S3_URL_STYLE`| To choose the S3 URL style(vhost or path) |`vhost` or `path`| ❌ |
74
74
|`CUBEJS_DB_DUCKDB_S3_SESSION_TOKEN`| The token for the S3 session | A valid Session Token | ❌ |
75
-
|`CUBEJS_DB_DUCKDB_EXTENSIONS`| A comma-separated list of DuckDB extensionsto install and load | A comma-separated list of DuckDB extensions | ❌ |
76
-
|`CUBEJS_DB_DUCKDB_COMMUNITY_EXTENSIONS`| A comma-separated list of DuckDB community extensionsto install and load | A comma-separated list of DuckDB community extensions | ❌ |
75
+
|`CUBEJS_DB_DUCKDB_EXTENSIONS`| A comma-separated list of DuckDB extensionsto install and load | A comma-separated list of DuckDB extensions | ❌ |
76
+
|`CUBEJS_DB_DUCKDB_COMMUNITY_EXTENSIONS`| A comma-separated list of DuckDB community extensionsto install and load | A comma-separated list of DuckDB community extensions | ❌ |
77
77
|`CUBEJS_DB_DUCKDB_S3_USE_CREDENTIAL_CHAIN`| A flag to use credentials chain for secrets for S3 connections |`true`, `false`. Defaults to `false`| ❌ |
78
78
|`CUBEJS_CONCURRENCY`| The number of [concurrent queries][ref-data-source-concurrency] to the data source | A valid number | ❌ |
|`CUBEJS_DB_USER`| The username used to connect to the database | A valid database username | ✅ |
31
31
|`CUBEJS_DB_PASS`| The password used to connect to the database | A valid database password | ✅ |
32
32
|`CUBEJS_DB_PRESTO_CATALOG`| The catalog within Presto to connect to | A valid catalog name within a Presto database | ✅ |
33
+
|`CUBEJS_DB_PRESTO_AUTH_TOKEN`| The authentication token to use when connecting to Presto/Trino. It will be sent in the `Authorization` header. | A valid authentication token | ❌ |
33
34
|`CUBEJS_DB_SCHEMA`| The schema within the database to connect to | A valid schema name within a Presto database | ✅ |
34
35
|`CUBEJS_DB_SSL`| If `true`, enables SSL encryption for database connections from Cube |`true`, `false`| ❌ |
35
36
|`CUBEJS_DB_MAX_POOL`| The maximum number of concurrent database connections to pool. Default is `8`| A valid number | ❌ |
|`CUBEJS_DB_USER`| The username used to connect to the database | A valid database username | ✅ |
31
31
|`CUBEJS_DB_PASS`| The password used to connect to the database | A valid database password | ✅ |
32
32
|`CUBEJS_DB_PRESTO_CATALOG`| The catalog within Presto to connect to | A valid catalog name within a Presto database | ✅ |
33
+
|`CUBEJS_DB_PRESTO_AUTH_TOKEN`| The authentication token to use when connecting to Presto/Trino. It will be sent in the `Authorization` header. | A valid authentication token | ❌ |
33
34
|`CUBEJS_DB_SCHEMA`| The schema within the database to connect to | A valid schema name within a Presto database | ✅ |
34
35
|`CUBEJS_DB_SSL`| If `true`, enables SSL encryption for database connections from Cube |`true`, `false`| ❌ |
35
36
|`CUBEJS_DB_MAX_POOL`| The maximum number of concurrent database connections to pool. Default is `8`| A valid number | ❌ |
0 commit comments