The Airflow BranchPythonOperator for Beginners in 10 mins

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!

Пікірлер: 23

  • @MarcLamberti
    @MarcLamberti3 жыл бұрын

    Comment below the next topic you would like to address :)

  • @cherrejim
    @cherrejim3 жыл бұрын

    super well explained. Thanks

  • @nicolaschouali4295
    @nicolaschouali4295 Жыл бұрын

    Hi mark !! Very helpful. Thank you

  • @taukirkhan3417
    @taukirkhan3417 Жыл бұрын

    Very helpful

  • @rahulkumarpatnaik6023
    @rahulkumarpatnaik60232 жыл бұрын

    Thank you ❤️🙏

  • @sharmaakarsh
    @sharmaakarsh2 жыл бұрын

    Wonderful video 👌👌👌

  • @emre_0134
    @emre_01348 ай бұрын

    It was very helpful , many thanks Marc🤩👏👌

  • @MarcLamberti

    @MarcLamberti

    8 ай бұрын

    Thank you 🙏

  • @matrix_AI
    @matrix_AI2 жыл бұрын

    The problem that u described with storing, I was facing that...... Thanks for helping

  • @Arieleyo
    @Arieleyo Жыл бұрын

    very useful! suscribed ❤

  • @MarcLamberti

    @MarcLamberti

    Жыл бұрын

    ❤️

  • @v4ldevrr4m47
    @v4ldevrr4m473 жыл бұрын

    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 ?

  • @ahmedismail3828
    @ahmedismail38283 жыл бұрын

    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 :)

  • @user-sl9ot
    @user-sl9ot2 жыл бұрын

    Do yo have an example about "6. BranchPythonOperator multiple task ids" ?

  • @mbcebrix
    @mbcebrix2 жыл бұрын

    Hi mark. Can you do indepth tutorial on creating dynamic dags?

  • @MarcLamberti

    @MarcLamberti

    2 жыл бұрын

    Look at my latest video 😉

  • @siddhardhakommineni7390
    @siddhardhakommineni7390 Жыл бұрын

    The input value accurate , Is there any way that I can pass it using UI input ??

  • @mnsosa
    @mnsosa6 ай бұрын

    how tf do i use branching with dag decorator?

  • @donnillorussia
    @donnillorussia2 жыл бұрын

    How to use branching between single task and a TaskGroup, especially if a TaskGroup is designed with TaskFlowAPI?!!!!!!!!!!! And where is task.branch decorator???????!!!!!