I made a toy project that provides a simple API for testing.
This project is served via fly.io.
Here is my fly.io configuration below. I configured services.concurrency.hard_limit
to 10000
and services.concurrency.type
to requests
following max concurrency can not be greater than 300 - #4 by fxsjy.
I wanted to do a load test for this project. Below is the code I used for the load test.
When I run the code that tests with req
, about 200 requests returns ok and other requests returns error %Mint.TransportError{reason: :closed}
.
How can I increase max concurrent request over 200?