The Airflow BranchPythonOperator for Beginners in 10 mins

Поделиться
HTML-код
  • Опубликовано: 12 янв 2021
  • 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!

Комментарии • 24

  • @MarcLamberti
    @MarcLamberti  3 года назад

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

    • @allwinjayson
      @allwinjayson 11 дней назад

      Please share the video for holidays excluding.
      My use case is the job will be run on every 5th of month. If 5th is in my custom holiday list the job will run on the next working days... Please put the video which is very helpful for mw

  • @cherrejim
    @cherrejim 3 года назад +1

    super well explained. Thanks

  • @nicolaschouali4295
    @nicolaschouali4295 Год назад

    Hi mark !! Very helpful. Thank you

  • @rahulkumarpatnaik6023
    @rahulkumarpatnaik6023 2 года назад

    Thank you ❤️🙏

  • @matrix_AI
    @matrix_AI 2 года назад

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

  • @taukirkhan3417
    @taukirkhan3417 2 года назад

    Very helpful

  • @sharmaakarsh
    @sharmaakarsh 2 года назад

    Wonderful video 👌👌👌

  • @emre_0134
    @emre_0134 10 месяцев назад

    It was very helpful , many thanks Marc🤩👏👌

  • @Arieleyo
    @Arieleyo Год назад

    very useful! suscribed ❤

  • @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 ??

  • @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?

  • @mnsosa
    @mnsosa 8 месяцев назад

    how tf do i use branching with dag decorator?

  • @mbcebrix
    @mbcebrix 2 года назад

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

  • @user-sl9ot
    @user-sl9ot 2 года назад

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

  • @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???????!!!!!