Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
DATA-1750
The changes in this PR make sure to get the parents of an intermediate table and add it as an input to the dbt task config. By doing this, we can make sure that data flows through int models as they are updated in the staging layer of DBT(which is connected to the core layer)
Test case:
I used the
fct_final_order_transmission
table as an example to generate the task config. For this, the output dbt task config adds the first upstream dependencies of the model until either models in the staging layer are parents and/or a materialized table/view is a parent. For example, below is the entire lineage of the parents offct_final_order_transmission
:The box in red are the inputs that are defined for this model.
link to dbt docs page
and here are the inputs that are generated by the code: