I am playing around LocustIO. I have a single self.client.get()
task with my min_wait
and max_wait
were set to be 1 millisecond each.
class App_User(HttpLocust):
...
min_wait = 1
max_wait = 1
I was using logging
to see the response. I am expecting in console that timestamps of the task logs will be within the same second given a max_wait
of 1 millisecond but it seems that the task runs every 1 second still.
Is it wrong to expect a 1000 GET
responses within a 1 second load test period given 1 millisecond task wait; 1 simulated user as well?