You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to test my server with the command thor --masked --amount 10000 -C 10000 ws://localhost:8080/hello/. The report is the following:
Online 30299 milliseconds
Time taken 30299 milliseconds
Connected 9864
Disconnected 0
Failed 136
Total transferred 13.87MB
Total received 13.86MB
Durations (ms):
min mean stddev median max
Handshaking 5 6387 4898 4768 16523
Latency 0 3 6 2 112
Percentile (ms):
50% 66% 75% 80% 90% 95% 98% 98% 100%
Handshaking 4768 8278 10867 11795 14049 15224 16041 16287 16523
Latency 2 3 4 5 7 9 12 15 112
Received errors:
129x connect ECONNRESET 127.0.0.1:8080
7x read ECONNRESET
It says it did (almost) 10k connections. But the server indicates that they were not made all in parallel; instead, at most 105 connections were opened at the same time.
Is there a way to force thor to make a specific number of parallel connections? Because the main reason I need it is to test how many connections my server can keep at the same time.
(Also, FYI — I'm using Jetty for the Websocket server implementation).
The text was updated successfully, but these errors were encountered:
I'm trying to test my server with the command
thor --masked --amount 10000 -C 10000 ws://localhost:8080/hello/
. The report is the following:It says it did (almost) 10k connections. But the server indicates that they were not made all in parallel; instead, at most 105 connections were opened at the same time.
Is there a way to force
thor
to make a specific number of parallel connections? Because the main reason I need it is to test how many connections my server can keep at the same time.(Also, FYI — I'm using Jetty for the Websocket server implementation).
The text was updated successfully, but these errors were encountered: