I have a Python application written on Flask microframework. I use this application as the black box via REST API. Right now I faced the issue that after concurrent API calls to this application - it stops responds and my HTTP client fails with the connection timeout.
I'm not a Python developer and right now I'm unable to change anything inside of this application. Is it possible to create something like an isolated pool of these applications to be able to work with them in the concurrent environment? If so, could you please tell me how it can be achieved.