Created
November 23, 2020 06:11
-
-
Save lakshay-arora/731507c8e98d5c4050ffb50cb3cc4409 to your computer and use it in GitHub Desktop.
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
### importing the required libraries | |
from datetime import timedelta | |
from airflow import DAG | |
from airflow.operators.python_operator import PythonOperator | |
from airflow.utils.dates import days_ago |
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
# define the DAG | |
dag = DAG( | |
'python_operator_sample', | |
default_args=default_args, | |
description='How to use the Python Operator?', | |
schedule_interval=timedelta(days=1), | |
) |
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
# define the python function | |
def my_function(x): | |
return x + " is a must have tool for Data Engineers." |
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
# define the first task | |
t1 = PythonOperator( | |
task_id='print', | |
python_callable= my_function, | |
op_kwargs = {"x" : "Apache Airflow"}, | |
dag=dag, | |
) | |
t1 |
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
# These args will get passed on to the python operator | |
default_args = { | |
'owner': 'lakshay', | |
'depends_on_past': False, | |
'start_date': days_ago(2), | |
'email': ['[email protected]'], | |
'email_on_failure': False, | |
'email_on_retry': False, | |
'retries': 1, | |
'retry_delay': timedelta(minutes=5), | |
# 'queue': 'bash_queue', | |
# 'pool': 'backfill', | |
# 'priority_weight': 10, | |
# 'end_date': datetime(2016, 1, 1), | |
# 'wait_for_downstream': False, | |
# 'dag': dag, | |
# 'sla': timedelta(hours=2), | |
# 'execution_timeout': timedelta(seconds=300), | |
# 'on_failure_callback': some_function, | |
# 'on_success_callback': some_other_function, | |
# 'on_retry_callback': another_function, | |
# 'sla_miss_callback': yet_another_function, | |
# 'trigger_rule': 'all_success' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment