Skip to content

Upstream Source

This page is part of Truthound Orchestration 3.x.

Source repository: seadonggyun4/truthound-orchestration Upstream docs path: docs/dagster/recipes.md Edit upstream page: Edit in orchestration

Dagster Recipes

Add A Resource To Existing Definitions

Start by adding DataQualityResource() to your existing Definitions object and validating one asset with a simple rule.

Profile Before Turning On Hard Fails

Use profiled_asset or a profile op in staging before enabling strict asset checks in production.

Use Asset Checks For Catalog Visibility

Prefer asset checks when you want failures to show up as first-class Dagster quality signals rather than buried inside asset logic.

Separate Quality Execution From Alerting

Run validation through resources or asset helpers, then attach SLA hooks or separate downstream ops for alerting and incident routing.