Airflow - Python file NOT in the same DAG folder

后端 未结 4 723
抹茶落季
抹茶落季 2021-02-05 06:14

I am trying to use Airflow to execute a simple task python.

from __future__ import print_function
from airflow.operators.python_operator import PythonOperator
f         


        
相关标签:
4条回答
  • 2021-02-05 06:45

    For your second question : How Airflow+Celery is going to distribute all necessary python sources files across the worker nodes?

    From documentation : The worker needs to have access to its DAGS_FOLDER, and you need to synchronize the filesystems by your own mean. A common setup would be to store your DAGS_FOLDER in a Git repository and sync it across machines using Chef, Puppet, Ansible, or whatever you use to configure machines in your environment. If all your boxes have a common mount point, having your pipelines files shared there should work as well

    http://pythonhosted.org/airflow/installation.html?highlight=chef

    0 讨论(0)
  • 2021-02-05 06:45

    For your first question, it is possible.

    And I guess you should create an empty file named __init__.py under the same directory with SimplePython.py (It is worker directory in your case). By doing that worker directory will be regarded as a python module.

    Then in your DAG definition, try from worker.SimplePython import print_context.

    In you case, I guess it would be better if you write a plugin for airflow, because you might want to upgrade airflow core project without removing your customized functions.

    0 讨论(0)
  • 2021-02-05 06:55

    You can package dependencies of your DAG as per:

    https://airflow.apache.org/concepts.html#packaged-dags

    To allow this you can create a zip file that contains the dag(s) in the root of the zip file and have the extra modules unpacked in directories. For instance you can create a zip file that looks like this:

    my_dag1.py
    my_dag2.py
    package1/__init__.py
    package1/functions.py
    

    Airflow will scan the zip file and try to load my_dag1.py and my_dag2.py. It will not go into subdirectories as these are considered to be potential packages.

    When using CeleryExecutor, you need to manually sync DAG directories, Airflow doesn't take care of that for you:

    https://airflow.apache.org/configuration.html?highlight=scaling%20out%20celery#scaling-out-with-celery

    The worker needs to have access to its DAGS_FOLDER, and you need to synchronize the filesystems by your own means

    0 讨论(0)
  • 2021-02-05 07:07

    While packaging your dags into a zip as covered in the docs is the only supported solution I have seen, you can also do imports of modules that are inside the dags folder. This is useful if you sync the dags folder automatically using other tools like puppet & git.

    I am not clear on your directory structure from the question, so here is an example dags folder based on a typical python project structure:

    └── airflow/dags  # root airflow dags folder where all dags live
        └── my_dags  # git repo project root
            ├── my_dags  # python src root (usually named same as project)
            │   ├── my_test_globals.py  # file I want to import
            │   ├── dag_in_package.py 
            │   └── dags 
            │        └── dag_in_subpackage.py
            ├── README.md  # also setup.py, LICENSE, etc here
            └── dag_in_project_root.py
    

    I have left out the (required [1]) __init__.py files. Note the location of the three example dags. You would almost certainly use only one of these places for all your dags. I include them all here for sake of example because it shouldn't matter for the import. To import my_test_globals from any of them:

    from my_dags.my_dags import my_test_globals
    

    I believe this means that airflow runs with the python path set to the dags directory so each subdirectory of the dags folder can be treated as a python package. In my case it was the additional intermediate project root directory getting in the way of doing a typical intra-package absolute import. Thus, we could restructure this airflow project like this:

    └── airflow/dags  # root airflow dags folder where all dags live
        └── my_dags  # git repo project root & python src root
            ├── my_test_globals.py  # file I want to import
            ├── dag_in_package.py 
            ├── dags 
            │    └── dag_in_subpackage.py
            ├── README.md  # also setup.py, LICENSE, etc here
            └── dag_in_project_root.py
    

    So that imports look as we expect them to:

    from my_dags import my_test_globals
    
    0 讨论(0)
提交回复
热议问题