Created
May 22, 2021 13:44
-
-
Save fclesio/f081315521f7aa34eb7dcd85e2089ce8 to your computer and use it in GitHub Desktop.
DockerOperator with Docker Compose - Sleep Statements
This file contains hidden or 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
from datetime import datetime, timedelta | |
from airflow import DAG | |
from airflow.operators.bash_operator import BashOperator | |
from airflow.operators.docker_operator import DockerOperator | |
from airflow.operators.python_operator import BranchPythonOperator | |
from airflow.operators.dummy_operator import DummyOperator | |
default_args = { | |
'owner' : 'airflow', | |
'description' : 'Use of the DockerOperator', | |
'depend_on_past' : False, | |
'start_date' : datetime(2021, 5, 1), | |
'email_on_failure' : False, | |
'email_on_retry' : False, | |
'retries' : 1, | |
'retry_delay' : timedelta(minutes=5) | |
} | |
with DAG('docker_operator_demo', default_args=default_args, schedule_interval="5 * * * *", catchup=False) as dag: | |
start_dag = DummyOperator( | |
task_id='start_dag' | |
) | |
end_dag = DummyOperator( | |
task_id='end_dag' | |
) | |
t1 = BashOperator( | |
task_id='print_current_date', | |
bash_command='date' | |
) | |
t2 = DockerOperator( | |
task_id='docker_command_sleep', | |
image='docker_image_task', | |
container_name='task___command_sleep', | |
api_version='auto', | |
auto_remove=True, | |
command="echo hello", | |
docker_url="unix://var/run/docker.sock", | |
network_mode="bridge" | |
) | |
t3 = DockerOperator( | |
task_id='docker_command_hello', | |
image='docker_image_task', | |
container_name='task___command_hello', | |
api_version='auto', | |
auto_remove=True, | |
command="/bin/sleep 40", | |
docker_url="unix://var/run/docker.sock", | |
network_mode="bridge" | |
) | |
t4 = BashOperator( | |
task_id='print_hello', | |
bash_command='echo "hello world"' | |
) | |
start_dag >> t1 | |
t1 >> t2 >> t4 | |
t1 >> t3 >> t4 | |
t4 >> end_dag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment