I do not seem to understand how to import modules into an apache airflow DAG definition file. I would want to do this to be able to create a library which makes declaring tasks with similar settings less verbose, for instance.
Here is the simplest example I can think of that replicates the issue: I modified the airflow tutorial (https://airflow.apache.org/tutorial.html#recap) to simply import a module and run a definition from that module. Like so:
Directory structure:
- dags/
-- __init__.py
-- lib.py
-- tutorial.py
tutorial.py:
"""
Code that goes along with the Airflow located at:
http://airflow.readthedocs.org/en/latest/tutorial.html
"""
from airflow import DAG
from airflow.operators.bash_operator import BashOperator
from datetime import datetime, timedelta
# Here is my added import
from lib import print_double
# And my usage of the imported def
print_double(2)
## -- snip, because this is just the tutorial code,
## i.e., some standard DAG defintion stuff --
print_double
is just a simple def which multiplies whatever input you give it by 2, and prints the result, but obviously that doesn't even matter because this is an import issue.
I am able to run airflow test tutorial print_date 2015-06-01
as per the tutorial docs successfully - the dag runs, and moreover the print_double succeeds. 4
is printed to the console, as expected. All appears well.
Then I go the web UI, and am greeted by Broken DAG: [/home/airflow/airflow/dags/tutorial.py] No module named 'lib'
. Unpausing the dag and attempting a manual run using the UI causes a "running" status, but it never succeeds or fails. It just sits on "running" forever. I can queue up as many as I'd like, but they'll all just sit on "running" status.
I've checked the airflow logs, and don't see any useful debug information there.
So what am I missing?
/home/airflow/airflow/dags/tutorial.py
– Kalinairflow
is the username andairflow/airflow
is the install dir, so at least that part is not the issue. I also can confirm just bycd
ing into the dir that the directory structure is as posted in the question. But I'll do my due diligence and replicate the whole thing in an isolated environment since you are saying it works for you. – Systemize/
in the end of the[core] dags_folder = ...
settings in theairflow.cfg
. Also, I've donechmod 777
to the__init__.py
file in thedags
folder. And reboot the system. After these three steps airflow starts working IDK why. Maybe the thing was only in rebooting. – Aerostatics