-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
feat(dbt): add parameter toggle to emit column dependency metadata #20548
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @rexledesma and the rest of your teammates on Graphite |
Deploy preview for dagster-docs ready! Preview available at https://dagster-docs-89ll1ol7y-elementl.vercel.app Direct link to changed pages: |
c33f5da
to
579cb49
Compare
8c51d54
to
d035115
Compare
@@ -570,6 +570,22 @@ snapshots: | |||
- "{{ dagster.log_column_level_metadata() }}" | |||
``` | |||
|
|||
Column dependencies can be removed from materialization metadata by disabling the collection of parent relation metadata. This can be done by setting the `enable_parent_relation_metadata_collection` argument to `False` in the `dagster.log_column_level_metadata()` macro: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feel free to ignore if you feel otherwise, but collect_parent_relation_metadata
is shorter and might be equally clear.
579cb49
to
a953dac
Compare
d035115
to
e8d6efb
Compare
a953dac
to
11709ae
Compare
e8d6efb
to
de86c55
Compare
11709ae
to
4f0105d
Compare
de86c55
to
926c496
Compare
4f0105d
to
0456137
Compare
926c496
to
a683924
Compare
Deploy preview for dagit-core-storybook ready! ✅ Preview Built with commit a683924. |
0456137
to
ba083cc
Compare
a683924
to
566fe88
Compare
ba083cc
to
0628a9c
Compare
566fe88
to
c05e69a
Compare
Merge activity
|
c05e69a
to
0024112
Compare
…20548) ## Summary & Motivation Allow the collection of column schema metadata for a dbt node's parents to be enabled or disabled. Disabling this collection prevents column dependencies from being emitted in the dbt node's materialization. ## How I Tested These Changes pytest, added docs
…20548) ## Summary & Motivation Allow the collection of column schema metadata for a dbt node's parents to be enabled or disabled. Disabling this collection prevents column dependencies from being emitted in the dbt node's materialization. ## How I Tested These Changes pytest, added docs
Summary & Motivation
Allow the collection of column schema metadata for a dbt node's parents to be enabled or disabled. Disabling this collection prevents column dependencies from being emitted in the dbt node's materialization.
How I Tested These Changes
pytest, added docs