Replies: 2 comments 4 replies
-
|
Yes. You have a database created (migrated to) with later version of airflow than the one you run. See https://airflow.apache.org/docs/apache-airflow/stable/migrations-ref.html - you should use the newer version to downgrade your database or drop your DB completely and recreate it from scratch. For more details read about |
Beta Was this translation helpful? Give feedback.
-
|
I have observed this error with what is apparently a completely clean environment, running |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello
I am trying to deploy a docker-compose with an airflow worker, it points to the airflow host docker-compose, but I am retrieving the error from the title... here is the traceback:
docker-compose.yml:
version: '3'
services:
airflow-worker:
image: apache/airflow:latest
environment:
- AIRFLOW__CORE__EXECUTOR=CeleryExecutor
- AIRFLOW__CORE__SQL_ALCHEMY_CONN=postgresql+psycopg2://airflow:yourpassword@<postgres_server_ip>:5432/airflow
- AIRFLOW__CELERY__RESULT_BACKEND=db+postgresql://airflow:yourpassword@<postgres_server_ip>:5432/airflow
- AIRFLOW__CELERY__BROKER_URL=redis://<redis_server_ip>:6379/0
command: airflow celery worker
Beta Was this translation helpful? Give feedback.
All reactions