Sandy Ryza
Sandy Ryza
Probably the best way to do this is by exposing the `AssetSpec`.
## Summary & Motivation This PR is an exploration of hypothetical APIs for loading definitions. It consists of two explorations: - A sketch of an integration (Airbyte) that pulls asset...
## Summary & Motivation On the run page, if you hover over "N assets", you see these labels: I think "View downstream lineage" is misleading, and it should just be...
## Summary & Motivation ## How I Tested These Changes ## Changelog Insert changelog entry or "NOCHANGELOG" here. - [ ] `NEW` _(added new feature or capability)_ - [ ]...
## Summary & Motivation Fixes https://github.com/dagster-io/dagster/issues/25328. Currently, when asset backfills launch, all the checks for the selected assets are executed. However, these checks aren't explicitly included on the `asset_check_selection` property...
## Summary & Motivation Not a part of the codebase I am super familiar with, but makes it possible to configure the timeout when canceling a run launched by the...
### Reproduction Use this code location: ```python from dagster import BackfillPolicy, DailyPartitionsDefinition, Definitions, asset, asset_check pdef = DailyPartitionsDefinition("2024-10-01") @asset(partitions_def=pdef, backfill_policy=BackfillPolicy.single_run()) def adummy() -> None: pass @asset_check(asset=adummy) def acheck() -> None:...