Тёмный

The Airflow BranchPythonOperator for Beginners in 10 mins 

Data with Marc
Подписаться 26 тыс.
Просмотров 20 тыс.
50% 1

The Airflow BranchPythonOperator for Beginners in 10 mins - Execute specific tasks to execute.
👍 Smash the like button to become better at Airflow
❤️ Subscribe to my channel to become a master of Airflow
🏆 Take my course : www.udemy.com/course/the-ulti... to join the legends of Airflow
🚨 My Patreon: / marclamberti to support my work and be friend for life
The materials: www.notion.so/The-BranchPytho...
The blogs post: marclamberti.com/blog/airflow...
1. Use case
You have a data pipelines with 3 different tasks. The first is_api_available checks if the API is available or not. Next, if the API is available you execute the task Download, but if NOT you want to execute is_api_available_2 first and then the task Download. How can you do that? How can you choose what task or another according to a condition? The BranchPythonOperator!
2. What is the BranchPythonOperator?
The BranchPythonOperator allows to choose a specific path in your DAG according to a criterion. More specifically, it returns the task id of the NEXT task to execute based on a condition/value etc.
3. How to use the BranchPythonOperator
Really simple, you import the BranchPythonOperator. You implement it.
You have to pass a python callable function. That function is triggered by the BranchPythonOperator like with the PythonOperator but this time, the function must return the task id of the next task to execute. Finally, specify the dependencies between your tasks.
4. The BranchPythonOperator with XComs
Be careful. Each time a BranchPythonOperator is triggered, 2 XComs are created. XComs are not removed automatically. If you have hundreds of BranchPythonOperators, you will store a lot of XComs. To mitigate this, specify the parameter do_xcom_push in the BranchPythonOperator to only generate one XCom instead of one.
5. BranchPythonOperator task skipped
When a task is not triggered by the BranchPythonOperator, it is skipped. The problem is, if you have a task which depends both on the skipped task and the task triggered by the BranchPythonOperator, that task will be skipped as well. Why? Trigger rules! By default, if one of the parents of a task is skipped, then the task is skipped as well. You can fix this with the trigger rule none_failed_or_skipped
6. BranchPythonOperator multiple task ids
You can definitely choose to execute multiple tasks with the BranchPythonOperator. You just have to return a list of task ids instead of a task id.
Enjoy!

Опубликовано:

 

12 янв 2021

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 23   
@MarcLamberti
@MarcLamberti 3 года назад
Comment below the next topic you would like to address :)
@cherrejim
@cherrejim 3 года назад
super well explained. Thanks
@nicolaschouali4295
@nicolaschouali4295 Год назад
Hi mark !! Very helpful. Thank you
@matrix_AI
@matrix_AI 2 года назад
The problem that u described with storing, I was facing that...... Thanks for helping
@rahulkumarpatnaik6023
@rahulkumarpatnaik6023 2 года назад
Thank you ❤️🙏
@taukirkhan3417
@taukirkhan3417 2 года назад
Very helpful
@sharmaakarsh
@sharmaakarsh 2 года назад
Wonderful video 👌👌👌
@emre_0134
@emre_0134 9 месяцев назад
It was very helpful , many thanks Marc🤩👏👌
@MarcLamberti
@MarcLamberti 9 месяцев назад
Thank you 🙏
@Arieleyo
@Arieleyo Год назад
very useful! suscribed ❤
@MarcLamberti
@MarcLamberti Год назад
❤️
@v4ldevrr4m47
@v4ldevrr4m47 3 года назад
Thanks a lt for this material. Regarding next topic.I am curius about thitd libs in your PythonOperators scripts . considering tha my airflow is a container how it manage pip install ?
@siddhardhakommineni7390
@siddhardhakommineni7390 Год назад
The input value accurate , Is there any way that I can pass it using UI input ??
@user-sl9ot
@user-sl9ot 2 года назад
Do yo have an example about "6. BranchPythonOperator multiple task ids" ?
@mbcebrix
@mbcebrix 2 года назад
Hi mark. Can you do indepth tutorial on creating dynamic dags?
@MarcLamberti
@MarcLamberti 2 года назад
Look at my latest video 😉
@ahmedismail3828
@ahmedismail3828 3 года назад
Hi Marc, I've been following your tutorials to get a grip on airflow, and I must say these are the best available but I keep getting a syntax error at python_callable line with the BranchPythonOperator, this way the dag doesn't get imported to airflow. Can you help out with this?
@MarcLamberti
@MarcLamberti 3 года назад
Show me what you've done :)
@mnsosa
@mnsosa 7 месяцев назад
how tf do i use branching with dag decorator?
@donnillorussia
@donnillorussia 2 года назад
How to use branching between single task and a TaskGroup, especially if a TaskGroup is designed with TaskFlowAPI?!!!!!!!!!!! And where is task.branch decorator???????!!!!!
Далее
Apache Airflow: Adios SubDAGs! Welcome TaskGroups!
6:53
5  Оркестраторы и работа с Airflow
1:15:47
Airflow DockerOperator: The Basics (and more 🤫)
19:36
Running Airflow 2.0 with Docker in 5 mins
11:55
Просмотров 162 тыс.
Don't Use Apache Airflow
16:21
Просмотров 88 тыс.
ChatGPT Just Learned To Fix Itself!
5:47
Просмотров 32 тыс.
Airflow Sensors : Get started in 10 mins
11:55
Просмотров 25 тыс.
Dynamic Tasks in Airflow
53:56
Просмотров 8 тыс.