Skip to content

Commit

Permalink
Update materializations-guide-4-incremental-models.md (#4378)
Browse files Browse the repository at this point in the history
## What are you changing in this pull request and why?
Match description with the IDs used in the table.
  • Loading branch information
matthewshaver authored Nov 2, 2023
2 parents 31c5305 + 62ed7dc commit 8f7f165
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ We did our last `dbt build` job on `2022-01-31`, so any new orders since that ru
- 🏔️ build the table from the **beginning of time again — a _table materialization_**
- Simple and solid, if we can afford to do it (in terms of time, compute, and money — which are all directly correlated in a cloud warehouse). It’s the easiest and most accurate option.
- 🤏 find a way to run **just new and updated rows since our previous run — _an_ _incremental materialization_**
- If we _can’t_ realistically afford to run the whole table — due to complex transformations or big source data, it takes too long — then we want to build incrementally. We want to just transform and add the row with id 567 below, _not_ the previous two with ids 123 and 456 that are already in the table.
- If we _can’t_ realistically afford to run the whole table — due to complex transformations or big source data, it takes too long — then we want to build incrementally. We want to just transform and add the row with id 567 below, _not_ the previous two with ids 123 and 234 that are already in the table.

| order_id | order_status | customer_id | order_item_id | ordered_at | updated_at |
| -------- | ------------ | ----------- | ------------- | ---------- | ---------- |
Expand Down

0 comments on commit 8f7f165

Please sign in to comment.