Hi, everyone.
I have a question about parallel vus. I have really huge script with a lot of requests. I use these options:
export const options = {
vus: 500,
iterations: 500,
httpDebug: "full"
};
One virtual user is taking between 20-25 seconds. But if I start 500 vus parallel they works for 5 minutes at least, so why 500 vus is working for so long, is it a problem with long responses from our webapp or I’m missing some options.
We also used groups in the script and I saw that before all 500 users finished the first group, the second group would not start (the same situation with all groups in the script).
Thanks in advance for your help.