-
Couldn't load subscription status.
- Fork 1.1k
Document new behavior flags for dbt-databricks #8049
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
216c575
e825acb
e9c2e53
999325e
d50c900
00b5b11
2bf8989
b1c7d22
ed71baf
b9398a7
195e4f7
5667f53
91a89bb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,6 +11,8 @@ The following are the current [behavior change flags](/docs/reference/global-con | |
| | [`use_info_schema_for_columns`](#use-information-schema-for-columns) | 1.9.0 | TBD | | ||
| | [`use_user_folder_for_python`](#use-users-folder-for-python-model-notebooks) | 1.9.0 | TBD | | ||
| | [`use_materialization_v2`](#use-restructured-materializations) | 1.10.0 | TBD | | ||
| | [`use_managed_iceberg`](#use-managed-iceberg) | 1.11.0 | TBD | | ||
| | [`use_replace_on_for_insert_overwrite`](#use-replace-on-for-insert_overwrite-strategy) | 1.11.0 | TBD | | ||
|
|
||
| ## Use information schema for columns | ||
|
|
||
|
|
@@ -178,3 +180,11 @@ models: | |
| ``` | ||
|
|
||
| </File> | ||
|
|
||
| ## Use managed Iceberg | ||
|
|
||
| The `use_managed_iceberg` flag is `False` by default and results in a [UniForm](https://www.databricks.com/blog/delta-uniform-universal-format-lakehouse-interoperability) table when `table_format` is set to `iceberg`. When this flag is set to `True`, the table is created as a [managed Iceberg table](https://docs.databricks.com/aws/en/tables/managed). | ||
|
|
||
| ## Use `replace on` for `insert_overwrite` strategy | ||
|
|
||
| The `use_replace_on_for_insert_overwrite` flag is only relevant when using incremental models with the `insert_overwrite` strategy on SQL warehouses. The flag is `True` by default and results in using the `replace on` syntax to perform partition overwrites. When the flag is set to `False`, partition overwrites will be performed via `insert overwrite` with dynamic partition overwrite. The latter is only officially supported for cluster computes, and will truncate the entire table when used with SQL warehouses. | ||
|
||
Uh oh!
There was an error while loading. Please reload this page.