Hello Community members, I have created an app in flask which is basically an openai model that takes voices and audio files for transcribing so i'm using gunicorn and when mulitple users try to upload and transcribe on the web app then it gives users resultls to another user or vice versa.
I tried to use the following configuration
- web: gunicorn main:app -k gevent --worker-connections 1000
- web: gunicorn main:app --workers 1 --threads 10 --timeout 100000
- web: gunicorn main:app --workers 10 --threads 10 --timeout 100000
- web: gunicorn main:app --workers 1 --threads 1 --timeout 100000
- web:gunicorn main:app --workers 4 --timeout 100000
and so on, well i'm using railway.app for deploying the app and have taken developer plan which includes 8vCore CPU and 8GB Ram.
Can someone please help :)