Ramp up the load
We are trying to load-test application using 'Topology' approach with 4000 virtual users, and are experiencing problems during the initial portion of the application. What happens is that all 4000 users are trying to log into the application and that always results in either application or ANTS Load crashing somewhere in the topology.
Is there a way to slowly introduce vUsers to application in increments of, say, 100 vUsers, so that after X minutes we can start the real performance test script?
Hope this is clear.
Regards, Bill.
Is there a way to slowly introduce vUsers to application in increments of, say, 100 vUsers, so that after X minutes we can start the real performance test script?
Hope this is clear.
Regards, Bill.
Comments
For instance, if you used Sleep or randomsleep in conjunction with the virtual client ID, you could stagger each running virtual client by x*the virtual client id, for instance
Sleep(1000*Me.Id)
Every Virtual client would wait 1 second after the last virtual client had started.