I have a simulation that can run only one at a time and takes 50-100 ms (CPU intensive). It is available behind an HTTP API. The requirement is to execute around 1000 HTTP requests per second (or around 100 instances in parallel).
I tried Azure Functions hoping they will increase the number instances as the number of requests grows, but I only got 2 running (using both Consumption and App Service plan).
Is there some solution for this scenario?