Running huge injection project returns an issue of timing out

Hi, I’m having a User injection profile as below

.inject(
                  rampConcurrentUsers(1).to(5000).during(2500.seconds),
                  constantConcurrentUsers(5000).during(2000),
                  rampConcurrentUsers(5000).to(1).during(1000)
)

I bring up the test to run for around 1000 seconds, it would return me this error

io.netty.channel.abstractchannel$annotatedconnectexception connection timed out no further info

I’m not sure if this come from not enough resource client (my computer) or it is a server fault, is there any suggestion for this type of error ?

Unless your client is maxing CPU, this is a server error. It fails to open that many sockets.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.