Airflow has an annoying error that causes a failure when we try to use the BashOperator like this:
operator = BashOperator(
task_id='operator_id',
bash_command='some_bash_script.sh',
dag=dag)
What is wrong? For some reason, it tries to apply the template variables to the “bash_command” parameter even if we don’t use them. Consequently, the template loader fails with the TemplateNotFound error because it cannot find any template variables in the given string.
Of course, in this case, it is the correct behavior because we don’t use any template variables. Unfortunately, it is not the behavior we want.
To make Airflow ignore the missing template and just use the given string as the file name (as it should do anyway), we have to trick the template parsing code by adding a single space at the end of the parameter:
operator = BashOperator(
task_id='operator_id',
bash_command='some_bash_script.sh ',
dag=dag)
Want to build AI systems that actually work?
Download my expert-crafted GenAI Transformation Guide for Data Teams and discover how to properly measure AI performance, set up guardrails, and continuously improve your AI solutions like the pros.