pierrejeambrun commented on issue #56635: URL: https://github.com/apache/airflow/issues/56635#issuecomment-3451573585
It is possible to deploy the `execution_api` and `public/ui` api separately. This will completely remove the issue you have with UI potentially blocking the api server. `It does not seem right to set number of workers to 1 for api-server` This was due to uvicorn not sharing memory between worker, so basically scaling by increasing the number of workers was causing poor resource efficiency. The recommended way now I believe is to scale horizontally by increasing the number of api server pods. -- 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]
