Overview

Airflow has a lot of great features and is a fast moving project. As such, there are some common pitfalls that are worth noting.


Details

t2 = BashOperator(
task_id='sleep',
bash_command="/home/batcher/test.sh", // This fails with `Jinja template not found` error
#bash_command="/home/batcher/test.sh ", // This works (has a space after)
dag=dag)

Other useful Tips and Tricks: