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

Update triggering asset events key type #47282

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions airflow/models/taskinstance.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ def get_prev_start_date_success() -> pendulum.DateTime | None:
def get_prev_end_date_success() -> pendulum.DateTime | None:
return timezone.coerce_datetime(_get_previous_dagrun_success().end_date)

def get_triggering_events() -> dict[str, list[AssetEvent]]:
def get_triggering_events() -> dict[Asset, list[AssetEvent]]:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if we should use a custom mapping class like OutletEventAccessors so we can accept AssetRef here; it is a bit clunky for users to need to pass in the original asset object to get events.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, sounds like a good idea

if TYPE_CHECKING:
assert session is not None

Expand All @@ -958,10 +958,10 @@ def get_triggering_events() -> dict[str, list[AssetEvent]]:
if dag_run not in session:
dag_run = session.merge(dag_run, load=False)
asset_events = dag_run.consumed_asset_events
triggering_events: dict[str, list[AssetEvent]] = defaultdict(list)
triggering_events: dict[Asset, list[AssetEvent]] = defaultdict(list)
for event in asset_events:
if event.asset:
triggering_events[event.asset.uri].append(event)
triggering_events[event.asset].append(event)

return triggering_events

Expand Down
2 changes: 1 addition & 1 deletion docs/apache-airflow/templates-ref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Variable Type Description
``{{ expanded_ti_count }}`` int | ``None`` | Number of task instances that a mapped task was expanded into. If
| the current task is not mapped, this should be ``None``.
| Added in version 2.5.
``{{ triggering_asset_events }}`` dict[str, | If in an Asset Scheduled DAG, a map of Asset URI to a list of triggering :class:`~airflow.models.asset.AssetEvent`
``{{ triggering_asset_events }}`` dict[str, | If in an Asset Scheduled DAG, a map of Asset objects to a list of triggering :class:`~airflow.models.asset.AssetEvent`
list[AssetEvent]] | (there may be more than one, if there are multiple Assets with different frequencies).
| Read more here :doc:`Assets <authoring-and-scheduling/datasets>`.
| Added in version 2.4.
Expand Down
2 changes: 1 addition & 1 deletion task_sdk/src/airflow/sdk/definitions/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Context(TypedDict, total=False):
templates_dict: dict[str, Any] | None
test_mode: bool
ti: RuntimeTaskInstanceProtocol
# triggering_asset_events: Mapping[str, Collection[AssetEvent | AssetEventPydantic]]
# triggering_asset_events: Mapping[Asset, Collection[AssetEvent | AssetEventPydantic]]
triggering_asset_events: Any
try_number: int | None
ts: str
Expand Down
Loading