Skip to content
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

[Core] 1.9 upgrade guide #6184

Merged
merged 37 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
eb6e590
adding upgrade guide
runleonarun Oct 1, 2024
179e624
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 1, 2024
5cf5f67
updating with internal changes
runleonarun Oct 1, 2024
77b743d
fixing link
runleonarun Oct 1, 2024
438f5a9
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 1, 2024
26abb99
Update website/docs/docs/dbt-versions/core-upgrade/06-upgrading-to-v1…
runleonarun Oct 1, 2024
85bda08
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 1, 2024
a6e475c
Update website/docs/docs/dbt-versions/core-upgrade/06-upgrading-to-v1…
runleonarun Oct 1, 2024
8c8eff1
fixing link
runleonarun Oct 1, 2024
18bcb9f
adding adapters
runleonarun Oct 1, 2024
d49c1f7
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 1, 2024
00462f2
Apply suggestions from code review
runleonarun Oct 1, 2024
d2143e7
removing INSERT link
runleonarun Oct 2, 2024
7a5391d
Update website/docs/docs/dbt-versions/core-upgrade/06-upgrading-to-v1…
amychen1776 Oct 2, 2024
932874b
Apply suggestions from code review
runleonarun Oct 2, 2024
1365f9d
Update website/docs/docs/dbt-versions/core-upgrade/06-upgrading-to-v1…
runleonarun Oct 2, 2024
ba06ec2
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 2, 2024
56c362b
Apply suggestions from code review
runleonarun Oct 2, 2024
3d45b3f
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 2, 2024
e7a2d46
Apply suggestions from code review
runleonarun Oct 2, 2024
4c6bf6c
Apply suggestions from code review
runleonarun Oct 2, 2024
74f519c
Update 06-upgrading-to-v1.9.md
runleonarun Oct 2, 2024
866a0fe
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 2, 2024
fef4db3
@grace feedback
runleonarun Oct 2, 2024
24b0dd5
Apply suggestions from code review
runleonarun Oct 2, 2024
28cd2c7
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 2, 2024
a6b0a62
Remove `state_modified_compare_vars` from the upgrade guide
dbeatty10 Oct 2, 2024
33628eb
Update website/docs/docs/dbt-versions/core-upgrade/06-upgrading-to-v1…
runleonarun Oct 2, 2024
f50f2a4
Merge branch 'current' into upgrade-1.9-guide
mirnawong1 Oct 3, 2024
9bbcce4
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 3, 2024
74a30ef
Apply suggestions from code review
runleonarun Oct 3, 2024
c7b2e20
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 3, 2024
5d8ae6e
Update website/docs/docs/dbt-versions/core-upgrade/06-upgrading-to-v1…
runleonarun Oct 3, 2024
06bbe85
Update 06-upgrading-to-v1.9.md
runleonarun Oct 3, 2024
5613080
Update 06-upgrading-to-v1.9.md
runleonarun Oct 3, 2024
1ae0f55
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 3, 2024
f58be81
Merge branch 'current' into upgrade-1.9-guide
runleonarun Oct 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions website/dbt-versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ exports.versions = [
version: "1.9.1",
customDisplay: "Cloud (Versionless)",
},
{
version: "1.9",
isPrerelease: true,
},
{
version: "1.8",
EOLDate: "2025-04-15",
Expand Down
113 changes: 113 additions & 0 deletions website/docs/docs/dbt-versions/core-upgrade/06-upgrading-to-v1.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
---
title: "Upgrading to v1.9 (beta)"
id: upgrading-to-v1.9
description: New features and changes in dbt Core v1.9
displayed_sidebar: "docs"
---

graciegoheen marked this conversation as resolved.
Show resolved Hide resolved
## Resources

- [dbt Core 1.9 changelog](https://github.com/dbt-labs/dbt-core/blob/1.9.latest/CHANGELOG.md)
- [dbt Core CLI Installation guide](/docs/core/installation-overview)
- [Cloud upgrade guide](/docs/dbt-versions/upgrade-dbt-version-in-cloud#versionless)

## What to know before upgrading

dbt Labs is committed to providing backward compatibility for all versions 1.x. Any behavior changes will be accompanied by a [behavior change flag](/reference/global-configs/behavior-changes#behavior-change-flags) to provide a migration window for existing projects. If you encounter an error upon upgrading, please let us know by [opening an issue](https://github.com/dbt-labs/dbt-core/issues/new).

dbt Cloud is now [versionless](/docs/dbt-versions/versionless-cloud). If you have selected "Versionless" in dbt Cloud, you already have access to all the features, fixes, and other functionality that is included in dbt Core v1.9.
For users of dbt Core, since v1.8 we recommend explicitly installing both `dbt-core` and `dbt-<youradapter>`. This may become required for a future version of dbt. For example:

```sql
python3 -m pip install dbt-core dbt-snowflake
```

## New and changed features and functionality

Features and functionality new in dbt v1.9.

### Microbatch `incremental_strategy`

Incremental models are, and have always been, a *performance optimization* — for datasets that are too large to be dropped and recreated from scratch every time you do a `dbt run`. Learn more about [incremental models](/docs/build/incremental-models-overview).

Historically, managing incremental models involved several manual steps and responsibilities, including:

- Add a snippet of dbt code (in an `is_incremental()` block) that uses the already-existing table (`this`) as a rough bookmark, so that only new data gets processed.
- Pick one of the strategies for smushing old and new data together (`append`, `delete+insert`, or `merge`).
- If anything goes wrong, or your schema changes, you can always "full-refresh", by running the same simple query that rebuilds the whole table from scratch.

While this works for many use-cases, there’s a clear limitation with this approach: *Some datasets are just too big to fit into one query.*

Starting in Core 1.9, you can use the new microbatch strategy to optimize your largest datasets -- **process your event data in discrete periods with their own SQL queries, rather than all at once.** The benefits include:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Starting in Core 1.9, you can use the new microbatch strategy to optimize your largest datasets -- **process your event data in discrete periods with their own SQL queries, rather than all at once.** The benefits include:
Starting in Core 1.9, you can use the new [microbatch strategy](/docs/build/incremental-microbatch) to optimize your largest datasets -- **process your event data in discrete periods with their own SQL queries, rather than all at once.** The benefits include:

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

blocked on #6194


- Simplified query design: Write your model query for a single batch of data. dbt will use your `event_time`, `lookback`, and `batch_size` configurations to automatically generate the necessary filters for you, making the process more streamlined and reducing the need for you to manage these details.
- Independent batch processing: dbt automatically breaks down the data to load into smaller batches based on the specified `batch_size` and processes each batch independently, improving efficiency and reducing the risk of query timeouts. If some of your batches fail, you can use `dbt retry` to load only the failed batches.
- Targeted reprocessing: To load a *specific* batch or batches, you can use the CLI arguments `--event-time-start` and `--event-time-end`.

While microbatch is in "beta", this functionality is still gated behind an env var, which will change to a behavior flag when 1.9 is GA. To use microbatch:
runleonarun marked this conversation as resolved.
Show resolved Hide resolved

- Set `DBT_EXPERIMENTAL_MICROBATCH` to `true` in your project
runleonarun marked this conversation as resolved.
Show resolved Hide resolved
Currently microbatch is supported on these adapters with more to come:
runleonarun marked this conversation as resolved.
Show resolved Hide resolved
* postgres
* snowflake
* bigquery
* spark

### Snapshots improvements

Beginning in dbt Core 1.9, we've streamlined snapshot configuration and added a handful of new configurations to make dbt **snapshots easier to configure, run, and customize.** These improvements include:

- New snapshot specification: Snapshots can now be configured in a YAML file, which provides a cleaner and more consistent set up.
- New `snapshot_meta_column_names` config: Allows you to customize the names of meta fields (for example, `dbt_valid_from`, `dbt_valid_to`, etc.) that dbt automatically adds to snapshots. This increases flexibility to tailor metadata to your needs.
runleonarun marked this conversation as resolved.
Show resolved Hide resolved
- `target_schema` is now optional for snapshots: When omitted, snapshots will use the schema defined for the current environment.
- Standard `schema` and `database` configs supported: Snapshots will now be consistent with other dbt resource types. You can specify where environment-aware snapshots should be stored.
- Warning for incorrect `updated_at` data type: To ensure data integrity, you'll see a warning if the `updated_at` field specified in the snapshot configuration is not the proper data type or timestamp.

Read more about [Snapshots meta fields](/docs/build/snapshots#snapshot-meta-fields).

### `state:modified` improvements

We’ve made improvements to `state:modified` behaviors to help reduce the risk of false positives and negatives. Read more about [the `state:modified` behavior flags](#managing-changes-to-legacy-behaviors) that leverage these improvements:
runleonarun marked this conversation as resolved.
Show resolved Hide resolved

- Added environment-aware enhancements for environments where the logic purposefully differs (for example, materializing as a table in `prod` but a `view` in dev).
- Models that use `var` or `env_var` are included in `state:modified`.
runleonarun marked this conversation as resolved.
Show resolved Hide resolved

### Managing changes to legacy behaviors

dbt Core v1.9 has a handful of new flags for [managing changes to legacy behaviors](/reference/global-configs/behavior-changes). You may opt into recently introduced changes (disabled by default), or opt out of mature changes (enabled by default), by setting `True` / `False` values, respectively, for `flags` in `dbt_project.yml`.

You can read more about each of these behavior changes in the following links:

- (Introduced, disabled by default) [`state_modified_compare_more_unrendered_values`](/reference/global-configs/behavior-changes#behavior-change-flags). Set to `True` to start persisting unrendered_database and unrendered_schema configs during source parsing, and do comparison on unrendered values during `state:modified` checks.
runleonarun marked this conversation as resolved.
Show resolved Hide resolved
- (Introduced, disabled by default) [`state_modified_compare_vars`](/reference/global-configs/behavior-changes#behavior-change-flags). Set to `True` if a model uses a `var` or `env_var` in its definition. dbt will be able to identify its lineage to include the model in `state:modified` because the var or env_var value has changed.
- (Introduced, disabled by default) [`skip_nodes_if_on_run_start_fails` project config flag](/reference/global-configs/behavior-changes#behavior-change-flags). If the flag is set and **any** `on-run-start` hook fails, mark all selected nodes as skipped.
- `on-run-start/end` hooks are **always** run, regardless of whether they passed or failed last time.
- (Introduced, disabled by default) [[Redshift] `restrict_direct_pg_catalog_access`](/reference/global-configs/behavior-changes#redshift-restrict_direct_pg_catalog_access). If the flag is set the adapter will use the Redshift API (through the Python client) if available, or query Redshift's `information_schema` tables instead of using `pg_` tables.

## Adapter specific features and functionalities

### Redshift

- Support IAM Role auth

### Snowflake

- Iceberg Table Format support will be available on three out of the box materializations: table, incremental, dynamic tables.

### Bigquery

- Can cancel running queries on keyboard interrupt
- Auto-drop intermediate tables created by incremental models to save resources

### Spark

- Support overriding the ODBC driver connection string which now enables you to provide custom connections

## Quick hits

We also made some quality-of-life improvements in Core 1.9, enabling you to:

- dbt now returns an an error (versioned models) or warning (unversioned models) when you [remove a contracted model by deleting, renaming, or disabling](/docs/collaborate/govern/model-contracts#how-are-breaking-changes-handled) it.
runleonarun marked this conversation as resolved.
Show resolved Hide resolved
runleonarun marked this conversation as resolved.
Show resolved Hide resolved
- Document [singular data tests](/docs/build/data-tests#document-singular-tests).
runleonarun marked this conversation as resolved.
Show resolved Hide resolved
- Use `ref` and `source` in [foreign key constraints](/reference/resource-properties/constraints).
- Use `dbt test` with the `--resource-type` / `--exclude-resource-type` flag, making it possible to include or exclude data tests (`test`) or unit tests (`unit_test`).
2 changes: 1 addition & 1 deletion website/docs/docs/dbt-versions/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Release notes are grouped by month for both multi-tenant and virtual private clo
## October 2024

- **Enhancement**: In dbt Cloud Versionless, snapshots defined in SQL files can now use `config` defined in `schema.yml` YAML files. This update resolves the previous limitation that required snapshot properties to be defined exclusively in `dbt_project.yml` and/or a `config()` block within the SQL file. This enhancement will be included in the upcoming dbt Core v1.9 release.
- **Enhancement**: In May 2024, dbt Cloud versionless began inferring a model's `primary_key` based on configured data tests and/or constraints within `manifest.json`. The inferred `primary_key` is visible in dbt Explorer and utilized by the dbt Cloud [compare changes](/docs/deploy/run-visibility#compare-tab) feature. This will also be released in dbt Core 1.9.
- **Enhancement**: In dbt Cloud versionless, dbt infers a model's `primary_key` based on configured data tests and/or constraints within `manifest.json`. The inferred `primary_key` is visible in dbt Explorer and utilized by the dbt Cloud [compare changes](/docs/deploy/run-visibility#compare-tab) feature. This will also be released in dbt Core 1.9.
Read about the [order dbt infers columns can be used as primary key of a model](https://github.com/dbt-labs/dbt-core/blob/7940ad5c7858ff11ef100260a372f2f06a86e71f/core/dbt/contracts/graph/nodes.py#L534-L541).
- **New:** dbt Explorer now includes trust signal icons, which is currently available as a [Preview](/docs/dbt-versions/product-lifecycles#dbt-cloud). Trust signals offer a quick, at-a-glance view of data health when browsing your dbt models in Explorer. These icons indicate whether a model is **Healthy**, **Caution**, **Degraded**, or **Unknown**. For accurate health data, ensure the resource is up-to-date and has had a recent job run. Refer to [Trust signals](/docs/collaborate/explore-projects#trust-signals-for-resources) for more information.
- **New:** Auto exposures are now available in Preview in dbt Cloud. Auto-exposures helps users understand how their models are used in downstream analytics tools to inform investments and reduce incidents. It imports and auto-generates exposures based on Tableau dashboards, with user-defined curation. To learn more, refer to [Auto exposures](/docs/collaborate/auto-exposures).
Expand Down
Loading