Replies: 2 comments 5 replies
-
Sounds like a real bug - can you please open an issue for it? |
Beta Was this translation helpful? Give feedback.
2 replies
-
I have run into this same issue today with version What was the resolution to this if there was one? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Environment:
Apache Airflow version: 2.4.2, installed from PyPI
PostgreSQL version: 13.5.1 (docker-compose)
Airflow config:
Postgres container env:
Commands to init airflow:
Problems faced:
Unable to run any DAG:
After running the commands above I was able to access Airflow UI, sign in using a newly-created user & see the list of imported DAGs. But if I try to run any task, I get the following error from the celery worker:
In the web server logs I saw the following lines:
For me, it looks like
airflow/airflow/utils/db.py
Line 848 in 5e6cec8
airflow/airflow/utils/cli.py
Line 60 in 5e6cec8
Some tables were created in the wrong schema
These tables were created in
public
rather than then indata_sources_airflow
session
tablealembic_version
tableOther tables were created in the required schema
Webserver tries to re-create some
Security DB
after each restart despite users & roles work normallyAm I doing something wrong?
P.S. If I try to use Airflow 2.3, I get an error similar to #18836
Beta Was this translation helpful? Give feedback.
All reactions