Hello, I am trying to simulate a scenario where I want my application under test to process a specific number. requests in a min without failure.
For e.g. 6k requests in a min
I tried the below configuration
scenarios: {
contacts: {
executor: ‘per-vu-iterations’,
vus: 600,
iterations: 10,
maxDuration: ‘60s’,
},
},
However, the total number of iterations that the tests finish within 1min is around 4730. I am also trying to increase the number of VUs to ensure that the total iteration is reached but it just doesn’t. Can you help me here, am I getting something wrong here?
I have also tried
scenarios:
{
contacts:
{
executor: ‘shared-iterations’,
vus: 600,
iterations: 6000,
maxDuration: ‘60s’,
}
},
I still dont get 6k and this is just the tip of the iteration count that I want to aim, I also have a test to reach 55560 in a min! Can someone help pls??
5 posts - 2 participants