I am trying to run a “ping-test” against a static resource to test “the infrastructure”.
my load model is as follows:
setUp(scn.inject(constantUsersPerSec(1500) during (10 seconds))).protocols(httpConf)
after som time running I get:
`
15:06:38.138 [WARN ] i.g.h.a.AsyncHandlerActor - Request ‘shitload’ failed: java.net.ConnectException: Address already in use: no further information
Ok, I have increased the ephemeral ports to 65.000 but when I run a test with 1500 users per second in 10 seconds the first time it is ok.
But when running it the second time I get:
java.net.ConnectException: Address already in use: no further information |
|
When I run just one user I get the exception as well.
Do I need to terminate connections more than I have done in the example below? or tweak gatling.conf in someway? obviously the increase in ephemeral ports did not work.