/home/airflow/.local/lib/python3.8/site-packages/airflow/configuration.py:545 DeprecationWarning: The sql_alchemy_conn option in [core] has been moved to the sql_alchemy_conn option in [database] - the old setting has been used, but please update your config.
에러 해결하는 방법
환경변수 변경
AIRFLOW__CORE__SQL_ALCHEMY_CONN: postgresql+psycopg2://airflow:airflow@postgres/airflow
를 다음처럼 바꾼다
AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://airflow:airflow@postgres/airflow
효과는 굉장했다.
'Data Engineering > Airflow' 카테고리의 다른 글
[Airflow] 데이터 파이프라인이란? (0) | 2023.01.09 |
---|---|
[Airflow] 에어플로우의 로그파일이 존재하지 않을 때 (0) | 2022.12.10 |
[Airflow] airflow db reset을 하면 scheduler가 죽는다.. (0) | 2022.12.06 |
[Airflow] airflow db init (0) | 2022.12.06 |
[Airflow] context, kwargs 에 들어있는 값 확인하기 (0) | 2022.12.06 |