-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Common airflow.cfg files across all containers in default docker-compose.yaml #49681
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Common airflow.cfg files across all containers in default docker-compose.yaml #49681
Conversation
CC @ashb you would be better equipped to review this PR. |
Ooh here's an idea then: How about we mount a new |
They are no longer needed as we are directly mounting AIRFLOW_HOME
@ashb, good idea, let me try that out |
As long as the docs for quick-start explain it - sure, that can be ok. The problem is still that we can have potentially several airflow containers trying to wrie this file - so maybe worth updating the docs with instructions on how to initialise it - I think there is a "cli" command that could be run for this. |
@potiuk , I have updated the docs with instructions on how to initialize the airflow.cfg. I've marked it as optional as I also cleaned up the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️ it! Thank you!
… docker-compose.yaml (apache#49681) * Mount airflow project dir to containers airflow home * Remove dags/logs/config/plugin mounts They are no longer needed as we are directly mounting AIRFLOW_HOME * Set AIRFLOW_CFG in common env * Update docs and airflow init step to align with common-env * Fix spell check and static checks --------- (cherry picked from commit ec49402) Co-authored-by: Dheeraj Turaga <[email protected]> Co-authored-by: Amogh Desai <[email protected]>
… docker-compose.yaml (#49681) (#49775) * Mount airflow project dir to containers airflow home * Remove dags/logs/config/plugin mounts They are no longer needed as we are directly mounting AIRFLOW_HOME * Set AIRFLOW_CFG in common env * Update docs and airflow init step to align with common-env * Fix spell check and static checks --------- (cherry picked from commit ec49402) Co-authored-by: Dheeraj Turaga <[email protected]> Co-authored-by: Amogh Desai <[email protected]>
The docker compose tests on linux have been broken by apache#49681 because of: a) perrmission problems with config folder - airflow.cfg created eventually was owned by root, not airflow user and it was not readable by the airflow user b) the airflow.cfg has not been initialized in init because airflow version command does not create config c) config directory has not been crated in the docker-compose test d) /opts/ directory was used to create dirs instead of /opt/ when changing permissions e) chown -R does not work across the volumes Also it turned out that diagnostic in case of health-check problms has been broken and did not show the actual errors - because while handling exception of health check api calls were made that also raised exception that was subsequently silently swallowed and did not allow the logs and heealth-check information from the test to be printed. This PR fixes those problems: a) creates config folder during tests b) runs "airflow config list" in init that actually creates a default config when no manual configuration is specified c) changes ownership for the internal folders after the config file is created which allows airflow user to read it, also spearately changes ownership for /opt/airflow (volume in image) and all the shared volumes mounted from the host. d) improves diagnostic by switching to rich print and handing the health exceptions during exception handling, allowing to print detailed logs of what happened e) the output of `breeze testing docker-compose-tests` is printed directly to stdout (with pytest `-s` flag) - so that we see the progress of test as it happens - both locally and in CI.
The docker compose tests on linux have been broken by #49681 because of: a) perrmission problems with config folder - airflow.cfg created eventually was owned by root, not airflow user and it was not readable by the airflow user b) the airflow.cfg has not been initialized in init because airflow version command does not create config c) config directory has not been crated in the docker-compose test d) /opts/ directory was used to create dirs instead of /opt/ when changing permissions e) chown -R does not work across the volumes Also it turned out that diagnostic in case of health-check problms has been broken and did not show the actual errors - because while handling exception of health check api calls were made that also raised exception that was subsequently silently swallowed and did not allow the logs and heealth-check information from the test to be printed. This PR fixes those problems: a) creates config folder during tests b) runs "airflow config list" in init that actually creates a default config when no manual configuration is specified c) changes ownership for the internal folders after the config file is created which allows airflow user to read it, also spearately changes ownership for /opt/airflow (volume in image) and all the shared volumes mounted from the host. d) improves diagnostic by switching to rich print and handing the health exceptions during exception handling, allowing to print detailed logs of what happened e) the output of `breeze testing docker-compose-tests` is printed directly to stdout (with pytest `-s` flag) - so that we see the progress of test as it happens - both locally and in CI.
The docker compose tests on linux have been broken by #49681 because of: a) perrmission problems with config folder - airflow.cfg created eventually was owned by root, not airflow user and it was not readable by the airflow user b) the airflow.cfg has not been initialized in init because airflow version command does not create config c) config directory has not been crated in the docker-compose test d) /opts/ directory was used to create dirs instead of /opt/ when changing permissions e) chown -R does not work across the volumes Also it turned out that diagnostic in case of health-check problms has been broken and did not show the actual errors - because while handling exception of health check api calls were made that also raised exception that was subsequently silently swallowed and did not allow the logs and heealth-check information from the test to be printed. This PR fixes those problems: a) creates config folder during tests b) runs "airflow config list" in init that actually creates a default config when no manual configuration is specified c) changes ownership for the internal folders after the config file is created which allows airflow user to read it, also spearately changes ownership for /opt/airflow (volume in image) and all the shared volumes mounted from the host. d) improves diagnostic by switching to rich print and handing the health exceptions during exception handling, allowing to print detailed logs of what happened e) the output of `breeze testing docker-compose-tests` is printed directly to stdout (with pytest `-s` flag) - so that we see the progress of test as it happens - both locally and in CI. (cherry picked from commit 67ce622) Co-authored-by: Jarek Potiuk <[email protected]>
The docker compose tests on linux have been broken by #49681 because of: a) perrmission problems with config folder - airflow.cfg created eventually was owned by root, not airflow user and it was not readable by the airflow user b) the airflow.cfg has not been initialized in init because airflow version command does not create config c) config directory has not been crated in the docker-compose test d) /opts/ directory was used to create dirs instead of /opt/ when changing permissions e) chown -R does not work across the volumes Also it turned out that diagnostic in case of health-check problms has been broken and did not show the actual errors - because while handling exception of health check api calls were made that also raised exception that was subsequently silently swallowed and did not allow the logs and heealth-check information from the test to be printed. This PR fixes those problems: a) creates config folder during tests b) runs "airflow config list" in init that actually creates a default config when no manual configuration is specified c) changes ownership for the internal folders after the config file is created which allows airflow user to read it, also spearately changes ownership for /opt/airflow (volume in image) and all the shared volumes mounted from the host. d) improves diagnostic by switching to rich print and handing the health exceptions during exception handling, allowing to print detailed logs of what happened e) the output of `breeze testing docker-compose-tests` is printed directly to stdout (with pytest `-s` flag) - so that we see the progress of test as it happens - both locally and in CI. (cherry picked from commit 67ce622) Co-authored-by: Jarek Potiuk <[email protected]>
…ose.yaml (apache#49681) * Mount airflow project dir to containers airflow home * Remove dags/logs/config/plugin mounts They are no longer needed as we are directly mounting AIRFLOW_HOME * Set AIRFLOW_CFG in common env * Update docs and airflow init step to align with common-env * Fix spell check and static checks --------- Co-authored-by: Amogh Desai <[email protected]>
The docker compose tests on linux have been broken by apache#49681 because of: a) perrmission problems with config folder - airflow.cfg created eventually was owned by root, not airflow user and it was not readable by the airflow user b) the airflow.cfg has not been initialized in init because airflow version command does not create config c) config directory has not been crated in the docker-compose test d) /opts/ directory was used to create dirs instead of /opt/ when changing permissions e) chown -R does not work across the volumes Also it turned out that diagnostic in case of health-check problms has been broken and did not show the actual errors - because while handling exception of health check api calls were made that also raised exception that was subsequently silently swallowed and did not allow the logs and heealth-check information from the test to be printed. This PR fixes those problems: a) creates config folder during tests b) runs "airflow config list" in init that actually creates a default config when no manual configuration is specified c) changes ownership for the internal folders after the config file is created which allows airflow user to read it, also spearately changes ownership for /opt/airflow (volume in image) and all the shared volumes mounted from the host. d) improves diagnostic by switching to rich print and handing the health exceptions during exception handling, allowing to print detailed logs of what happened e) the output of `breeze testing docker-compose-tests` is printed directly to stdout (with pytest `-s` flag) - so that we see the progress of test as it happens - both locally and in CI.
When running the default docker-compose.yaml each container auto generates a airflow.cfg in its respective home directory. This causes the
jwt_secret
to be different in all the containers causing tasks to fail withInvalid auth token: Signature verification failed
We can fix this multiple ways, but I feel the best way is to have a common AIRFLOW_HOME dir for all containers. Can be achived by directly mounting the
AIRFLOW_PROJECT_DIR
to/opt/airflow
Closes #49646