Source code for airflow.example_dags.example_outlet_event_extra

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

"""
Example DAG to demonstrate annotating an asset event with extra information.

Also see examples in ``example_inlet_event_extra.py``.
"""

from __future__ import annotations

import datetime

from airflow.decorators import task
from airflow.models.dag import DAG
from airflow.providers.standard.operators.bash import BashOperator
from airflow.sdk.definitions.asset import Asset
from airflow.sdk.definitions.asset.metadata import Metadata

[docs]asset = Asset(uri="s3://output/1.txt", name="test-asset")
with DAG( dag_id="asset_with_extra_by_yield", catchup=False, start_date=datetime.datetime.min, schedule="@daily", tags=["produces"], ): @task(outlets=[asset])
[docs] def asset_with_extra_by_yield(): yield Metadata(asset, {"hi": "bye"})
asset_with_extra_by_yield() with DAG( dag_id="asset_with_extra_by_context", catchup=False, start_date=datetime.datetime.min, schedule="@daily", tags=["produces"], ): @task(outlets=[asset])
[docs] def asset_with_extra_by_context(*, outlet_events=None): outlet_events[asset].extra = {"hi": "bye"}
asset_with_extra_by_context() with DAG( dag_id="asset_with_extra_from_classic_operator", catchup=False, start_date=datetime.datetime.min, schedule="@daily", tags=["produces"], ): def _asset_with_extra_from_classic_operator_post_execute(context, result): context["outlet_events"][asset].extra = {"hi": "bye"} BashOperator( task_id="asset_with_extra_from_classic_operator", outlets=[asset], bash_command=":", post_execute=_asset_with_extra_from_classic_operator_post_execute, )

Was this entry helpful?