k6
k6 copied to clipboard
Scenario iterations not behaving as expected
trafficstars
I am trying to run a k6 test with 10 VUs and 10000 iterations, but i see in k6 cloud that it only ran 46 times. Here is my options config:
{
"scenarios": {
"shared_iter_scenario": {
"executor": "shared-iterations",
"vus": 10,
"iterations": 10000,
"startTime": "0s",
"maxDuration": "10m",
"options": {
"browser": {
"type": "chromium"
}
}
}
}
}
Can someone explain to me why could i be seeing this behaviour? My goal with k6 was to see how my backend will perform with a heavy load of requests, but I have been unable to do that.