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
Hi, I m trying to use go-wrk to benchmark my Java program. I m getting below stats:
D:\>go-wrk -c=100 -t=100 -n=100000 http://localhost:8080/test/rest/j1/text
==========================BENCHMARK==========================
URL: http://localhost:8080/test/rest/j1/text
Used Connections: 100
Used Threads: 100
Total number of calls: 100000
===========================TIMINGS===========================
Total time passed: 59.95s
Avg time per request: 59.88ms
Requests per second: 1668.06
Median time per request: 59.04ms
99th percentile time: 121.08ms
Slowest time for request: 173.00ms
=============================DATA=============================
Total response body sizes: 71840
Avg response body per request: 0.72ms
Transfer rate per second: 1198.33 Byte/s (0.00 MByte/s)
==========================RESPONSES==========================
20X Responses: 14368 (14.37%)
30X Responses: 0 (0.00%)
40X Responses: 0 (0.00%)
50X Responses: 0 (0.00%)
50X Responses: 0 (0.00%)
Errors: 85632 (85.63%)
How can I know that does these 85632 errors represent? Connection timeout? Details about this would be very useful. Thanks.
The text was updated successfully, but these errors were encountered:
I experienced the same issue. It looks like when go-wrk starts new connections it doesn't close used ports properly. Therefore you'll quickly run out of available ports in the system. You can observe it by running go-wrk and checking number of opened ports using:
Hi, I m trying to use go-wrk to benchmark my Java program. I m getting below stats:
How can I know that does these 85632 errors represent? Connection timeout? Details about this would be very useful. Thanks.
The text was updated successfully, but these errors were encountered: