-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[dagster-dbt] Support asset checks in dbt_cloud_assets #28907
base: master
Are you sure you want to change the base?
[dagster-dbt] Support asset checks in dbt_cloud_assets #28907
Conversation
c9eab5f
to
fe87154
Compare
yield AssetCheckResult( | ||
passed=result_status == TestStatus.Pass, | ||
asset_key=asset_check_key.asset_key, | ||
check_name=asset_check_key.name, | ||
metadata=metadata, | ||
severity=( | ||
AssetCheckSeverity.WARN | ||
if result_status == TestStatus.Warn | ||
else AssetCheckSeverity.ERROR | ||
), | ||
) |
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.
There's an issue with the severity assignment for passing tests in AssetCheckResult
. Currently, when a test passes (result_status == TestStatus.Pass
), the severity is still set to AssetCheckSeverity.ERROR
because of how the conditional is structured.
According to the AssetCheckSeverity
documentation, ERROR
should only indicate actual issues with the asset. For passing tests, the severity parameter should either be omitted or explicitly set to None
.
Consider modifying the severity assignment to only apply for failing tests:
severity=(
AssetCheckSeverity.WARN if result_status == TestStatus.Warn
else AssetCheckSeverity.ERROR if result_status != TestStatus.Pass
else None
)
This ensures that passing tests don't incorrectly receive an error severity level.
yield AssetCheckResult( | |
passed=result_status == TestStatus.Pass, | |
asset_key=asset_check_key.asset_key, | |
check_name=asset_check_key.name, | |
metadata=metadata, | |
severity=( | |
AssetCheckSeverity.WARN | |
if result_status == TestStatus.Warn | |
else AssetCheckSeverity.ERROR | |
), | |
) | |
yield AssetCheckResult( | |
passed=result_status == TestStatus.Pass, | |
asset_key=asset_check_key.asset_key, | |
check_name=asset_check_key.name, | |
metadata=metadata, | |
severity=( | |
AssetCheckSeverity.WARN if result_status == TestStatus.Warn | |
else AssetCheckSeverity.ERROR if result_status != TestStatus.Pass | |
else None | |
), | |
) |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
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.
I don't remember the exact semantics here but this looks potentially real. Worth looking into.
fe87154
to
ac15702
Compare
7eb9e75
to
f407202
Compare
1baa197
to
ff63464
Compare
f407202
to
cda3d09
Compare
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.
There's something weird here. If the asset check wasn't selected and we yield an evaluation, reasonably sure that we error in the system.
In general feels like there's some duplication from dagster dbt which is desirable but it's hard to know what is what bc the code is being duplicated rather than reused.
I understand that it's hard to directly reuse dbt behavior due to munging from a different artifact but I want to better understand in this case what's new vs what's coming from the old integration. And potentially create an adapter layer so that all this conversion happens in one place
else AssetCheckSeverity.ERROR | ||
), | ||
) | ||
elif asset_check_key is not None: |
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.
And this means that it's an asset check in either direct invocation or that the check wasn't selected? Does this mirror DBT behavior?
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.
I've double checked and I think the condition should be elif not has_asset_def and asset_check_key is not None
instead. We should not yield an evaluation in an asset context if the check was not selected. This would also reflect the behavior in dbt core.
In dbt core, we use asset observations for tests that are executed but not selected. I agree that we should share the code between dbt core and dbt Cloud here to avoid conflicts and behavior discrepancy. I will update the condition for this PR, and reuse the same code for both integrations in another PR.
cda3d09
to
bed08d7
Compare
91e8446
to
58aa1ea
Compare
004e3cc
to
4da6e0e
Compare
58aa1ea
to
44ed558
Compare
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.
I'll approve with the assumption that the comments will be cleaned up and that the weirdness here regarding AssetCheckEvaluation is inherited from dbt core integration. We should definitely consolidate.
else AssetCheckSeverity.ERROR | ||
), | ||
) | ||
elif not has_asset_def and asset_check_key is not None: |
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.
I still really don't understand this line of code. Like; why is it ok to yield an asset check evaluation in a non asset context? Is it because we don't coerce them?
assert len(outputs) == 28 | ||
|
||
# materialization outputs have metadata, asset check outputs don't | ||
outputs_with_metadata = [output for output in outputs if output.step_output_data.metadata] |
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.
Feels weird to just arbitrarily check metadata; we should be checking for the particular metadata we care about
4da6e0e
to
aebe7d5
Compare
44ed558
to
6aabf00
Compare
Summary & Motivation
This PR updates the
dbt_cloud_assets
decorator to pass the check specs to the multi-asset definition, and updatesDbtCloudJobRunResults.to_default_asset_events
to yield AssetCheckResults when asset check are executed in an asset execution context.How I Tested These Changes
Updated test with BK