Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
NiallRees committed Feb 12, 2021
1 parent bda9ba6 commit 59fa506
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Models included:
- `fct_dbt__latest_full_model_executions`
- `fct_dbt__critical_path`

These are all pretty self explanatory with the exception of critical path. This model determines the slowest route through your DAG, which provides you with the information needed to make a targeted effort to reducing `dbt run` times. For example:
The critical path model determines the slowest route through your DAG, which provides you with the information needed to make a targeted effort to reducing `dbt run` times. For example:

![Critical Path](critical_path.png)

Expand All @@ -33,6 +33,7 @@ models:
+schema: your_destination_schema

```
Note that the model materializations are defined in this package's `dbt_project.yml`, so do not set them in your project.

3. Run `dbt deps`.

Expand Down
2 changes: 1 addition & 1 deletion models/schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2

models:
- name: fct_dbt__critical_path
description: A table of all models and executions times that make up the critical path of a full, incremental run.
description: A table of models and executions times that make up the critical path of a full, incremental run.
columns:
- name: node_id
description: Primary key.
Expand Down

0 comments on commit 59fa506

Please sign in to comment.