Dfiferent Number of requests for the same code

Hi all,

Just one question, I’ve performed the fowling test:

scn.inject(constantConcurrentUsers(10) during(1 minute))

In two different versions of my system, to check the performance of each one.

In the first, I got 351 request, and the second one 1143 requests.

What is the mechanism behind Gatling?

The request always wait for succeed and this way we had less requests by minute?

Thanks!

The closed workload model (start new users only when existing ones terminates) you’re using is by definition non-deterministic.
Your first system is slower than your second.

Thanks for the answer!

Is there any documentation that explains this and explore others methods?

https://gatling.io/docs/current/general/simulation_setup#injection

Thanks Stépahne!