-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AIP-34] TaskGroup: A UI task grouping concept as an alternative to S…
- Loading branch information
Showing
16 changed files
with
1,849 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# 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 demonstrating the usage of the TaskGroup.""" | ||
|
||
from airflow.models.dag import DAG | ||
from airflow.operators.dummy_operator import DummyOperator | ||
from airflow.utils.dates import days_ago | ||
from airflow.utils.task_group import TaskGroup | ||
|
||
# [START howto_task_group] | ||
with DAG(dag_id="example_task_group", start_date=days_ago(2)) as dag: | ||
start = DummyOperator(task_id="start") | ||
|
||
# [START howto_task_group_section_1] | ||
with TaskGroup("section_1", tooltip="Tasks for section_1") as section_1: | ||
task_1 = DummyOperator(task_id="task_1") | ||
task_2 = DummyOperator(task_id="task_2") | ||
task_3 = DummyOperator(task_id="task_3") | ||
|
||
task_1 >> [task_2, task_3] | ||
# [END howto_task_group_section_1] | ||
|
||
# [START howto_task_group_section_2] | ||
with TaskGroup("section_2", tooltip="Tasks for section_2") as section_2: | ||
task_1 = DummyOperator(task_id="task_1") | ||
|
||
# [START howto_task_group_inner_section_2] | ||
with TaskGroup("inner_section_2", tooltip="Tasks for inner_section2") as inner_section_2: | ||
task_2 = DummyOperator(task_id="task_2") | ||
task_3 = DummyOperator(task_id="task_3") | ||
task_4 = DummyOperator(task_id="task_4") | ||
|
||
[task_2, task_3] >> task_4 | ||
# [END howto_task_group_inner_section_2] | ||
|
||
# [END howto_task_group_section_2] | ||
|
||
end = DummyOperator(task_id='end') | ||
|
||
start >> section_1 >> section_2 >> end | ||
# [END howto_task_group] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,3 +43,4 @@ class DagAttributeTypes(str, Enum): | |
DICT = 'dict' | ||
SET = 'set' | ||
TUPLE = 'tuple' | ||
TASK_GROUP = 'taskgroup' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.