Gatling scenario taking longer than anticipated -


i have gatling scenario looks below taking far longer run how thought would.

scenario("user")   .feed(userfeeder)   .exec(loginuser("${currentuser}", user.userpassword))     .exec(teams.listteams)     .exec(teams.getteam     .during(10.minutes) {     exec(teams.pollteam).pause(2.seconds)   }   .exec(logoutuser("${currentuser}")) 

and setup

 setup(     scn.inject(rampusers(usercount).over(rampuptime.seconds))   ).protocols(httpconf) 

here pollteam requests 2 different endpoints.

i running scenario 2000 users, , expect after logging in , listing/getting teams , constant polling. each user should take around 10 minutes + little other requests.

i therefore though whole scenario should have taken rampup time (5 mins) plus around 15 mins. test has been taking around 2 hours.

are users not happening concurrently?

thanks,

ben


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -