Skip to content
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

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

maximearmstrong
Copy link
Contributor

@maximearmstrong maximearmstrong commented Apr 1, 2025

Summary & Motivation

This PR updates the dbt_cloud_assets decorator to pass the check specs to the multi-asset definition, and updates DbtCloudJobRunResults.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

@maximearmstrong maximearmstrong force-pushed the maxime/ad-861/support-asset-checks-for-dbt-cloud-assets branch from c9eab5f to fe87154 Compare April 1, 2025 02:17
@maximearmstrong maximearmstrong marked this pull request as ready for review April 1, 2025 02:26
@maximearmstrong maximearmstrong self-assigned this Apr 1, 2025
@maximearmstrong maximearmstrong requested a review from dpeng817 April 1, 2025 02:26
Comment on lines +206 to +216
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
),
)
Copy link
Contributor

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.

Suggested change
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.

Copy link
Contributor

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.

@maximearmstrong maximearmstrong force-pushed the maxime/ad-861/support-asset-checks-for-dbt-cloud-assets branch from fe87154 to ac15702 Compare April 1, 2025 13:07
@maximearmstrong maximearmstrong force-pushed the maxime/ad-849/implement-asset-decorator5 branch 2 times, most recently from 7eb9e75 to f407202 Compare April 1, 2025 14:05
@maximearmstrong maximearmstrong force-pushed the maxime/ad-861/support-asset-checks-for-dbt-cloud-assets branch 2 times, most recently from 1baa197 to ff63464 Compare April 1, 2025 14:30
@maximearmstrong maximearmstrong force-pushed the maxime/ad-849/implement-asset-decorator5 branch from f407202 to cda3d09 Compare April 1, 2025 14:30
Copy link
Contributor

@dpeng817 dpeng817 left a 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:
Copy link
Contributor

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?

Copy link
Contributor Author

@maximearmstrong maximearmstrong Apr 1, 2025

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.

@maximearmstrong maximearmstrong force-pushed the maxime/ad-849/implement-asset-decorator5 branch from cda3d09 to bed08d7 Compare April 1, 2025 16:33
@maximearmstrong maximearmstrong force-pushed the maxime/ad-861/support-asset-checks-for-dbt-cloud-assets branch 2 times, most recently from 91e8446 to 58aa1ea Compare April 1, 2025 20:40
@maximearmstrong maximearmstrong force-pushed the maxime/ad-849/implement-asset-decorator5 branch 2 times, most recently from 004e3cc to 4da6e0e Compare April 1, 2025 21:30
@maximearmstrong maximearmstrong force-pushed the maxime/ad-861/support-asset-checks-for-dbt-cloud-assets branch from 58aa1ea to 44ed558 Compare April 1, 2025 21:30
@maximearmstrong maximearmstrong requested a review from dpeng817 April 1, 2025 21:33
Copy link
Contributor

@dpeng817 dpeng817 left a 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:
Copy link
Contributor

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]
Copy link
Contributor

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

@maximearmstrong maximearmstrong force-pushed the maxime/ad-849/implement-asset-decorator5 branch from 4da6e0e to aebe7d5 Compare April 3, 2025 14:59
@maximearmstrong maximearmstrong force-pushed the maxime/ad-861/support-asset-checks-for-dbt-cloud-assets branch from 44ed558 to 6aabf00 Compare April 3, 2025 14:59
Base automatically changed from maxime/ad-849/implement-asset-decorator5 to master April 3, 2025 19:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants