jburgueno commented on issue #18041: URL: https://github.com/apache/airflow/issues/18041#issuecomment-945760503
We were facing this same issue in our airflow deployed in azure k8s and using azure posgresql as backend. We solved it by enabling pgbouncer in the values.yml, the only catch was that to enable pgbouncer with azure postgresql as backend yo need to change this line in https://github.com/apache/airflow/blob/main/chart/templates/_helpers.yaml ` auth_type = md5 to auth_type = scram-sha-256 ` This since at least our postgresql instance in azure was configured to not accept md5 encrypted passwords. Hope this help someone. Reference: https://github.com/pgbouncer/pgbouncer/issues/325 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
