Assem Ch
Assem Ch
Is not there a solution for this where you can make a root tenant that can control all other tenants?
I am maintaining a fork here for python 3: https://github.com/assem-ch/django-jet-reboot
A version for supporting django 3 and 4: https://github.com/assem-ch/django-jet-reboot
@euri10 I am stuck testing to get a timeout , can you please give me your test example, or point me if I have something missing in my configuration.
I got that the timeout_notify is for non responsive worker only, if a worker is responding, it will not be killed. Is there a way to kill workers with a...
I went through that thread and I got to this conclusion: For sync workers , worker timeout and request timeout are the same since the worker will blocked doing one...
I will try that. Using Gunicorn based on fastapi recommendation for prod configuration, we have high traffic apis , do you think we can use uvicorn alone for that?
is `limit_max_requests` global for all workers or per worker?
@euri10 I was playing around the uvicorn worker to implement a woker that do only one request and timeout it if takes long. ```python class ShortLifeWorker(UvicornWorker): # --max-requests = 1...
@seekingpeace consider that a worker can serve many requests so if one request killed the worker , other requests will get lost. I think your solution will work only if...