-
Notifications
You must be signed in to change notification settings - Fork 0
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
Increase gunicorn timeout and workers #176
Conversation
Did not solve hanging of app. Solution brought by fix in mapengine 111f422 |
Increasing worker amount still could be a good solution - but if it works properly now, maybe we should keep it as is?! |
Yes, you're right. The docs say And it might make sense to increase threads too. Moreover, the docs recommend async workers for certain use cases, e.g. "Applications making long blocking calls (Ie, external web services)" to avoid processes being blocked. Except for WMS layers we won't have ext. resources and they are not supposed to be "long blocking calls". ESys optimization processes run in a separate container and checked by the app frequently, so they do not block the web processes, is this correct? |
Yep - maybe we start with this
Yes, I think you are right - except for ES simulation, we don't need async stuff and ES is already using celery, so we are fine there IMHO. |
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.
ok, thx!
No description provided.