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
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,18 @@ Currently, the following adapters are supported:
23
23
### Cloning via dbt Package Hub
24
24
25
25
Check [dbt Hub](https://hub.getdbt.com/dbt-labs/dbt_project_evaluator/latest/) for the latest installation instructions, or [read the docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages.
26
-
### Additional setup for Databricks/Spark
26
+
### Additional setup for Databricks/Spark/DuckDB/Redshift
27
27
28
28
In your `dbt_project.yml`, add the following config:
This is required because the project currently provides limited support for arrays macros for Databricks/Spark which is not part of `spark_utils` yet.
37
+
This is required because the project currently overrides a small number of dbt core macros in order to ensure the project can run across the listed adapters. The overridden macros are in the [cross_db_shim directory](macros/cross_db_shim/).
38
38
39
39
### How It Works
40
40
@@ -1055,14 +1055,17 @@ vars:
1055
1055
| variable | description | default |
1056
1056
| ----------- | ----------- | ----------- |
1057
1057
| `chained_views_threshold` | threshold for unacceptable length of chain of views for `fct_chained_views_dependencies` | 4 |
1058
+
| `insert_batch_size` | number of records inserted per batch when unpacking the graph into models | 10000 |
1058
1059
1059
1060
```yml
1060
1061
# dbt_project.yml
1061
-
# set your chained views threshold to 8 instead of 4
1062
1062
1063
1063
vars:
1064
1064
dbt_project_evaluator:
1065
+
# set your chained views threshold to 8 instead of 4
1065
1066
chained_views_threshold: 8
1067
+
# update the number of records inserted from the graph from 10,000 to 500 to reduce query size
0 commit comments