skip to Main Content

Moving local python modules to airflow – Docker

I'm trying to set Airflow as a scheduler for my already existing project. After opening the airflow I get error message: Broken DAG: [/opt/airflow/dags/test_dag.py] Traceback (most recent call last): File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed File "/opt/airflow/dags/test_dag.py", line 4,…

VIEW QUESTION

Starting airflow with Docker – trigger ERROR

I am new to Docker so I have followed the official guide here for running Airflow with it-https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html When I start Airflow all services with 'docker-compose up' in Ubuntu, I get "ERROR - Triggerer's async thread was blocked for ...…

VIEW QUESTION

connect docker postgres from outside (DBeaver)

I am using Airflow through Docker-compose. The same docker-compose.yml has an image of Postgres as well. The config looks like below - postgres: image: postgres:13 ports: - 5432:5432 environment: POSTGRES_USER: airflow POSTGRES_PASSWORD: airflow POSTGRES_DB: airflow volumes: - postgres-db-volume:/var/lib/postgresql/data healthcheck: test:…

VIEW QUESTION
Back To Top
Search