100% connreset with httperf?

I am wondering what connreset with httperf matters. When testing a single webpage, I get no errors. When using a simple .log file with multiple pages, I get 100% connreset errors. Suggestions on how to overcome this?

+3
source share
1 answer

In the end, I had to track this when I came across it myself. The following is written on the manual page:

connreset: The number of times a TCP connection failed due to a RESET from the
server. Typically, a RESET is received when the client attempts to send data to
the server at a time the server has already closed its end of the connection.
NT servers also send RESETs when attempting to establish a new connection when
the listen queue is full.

In order for my own server implementation to stop doing this, I had to disconnect the connection on the server side. It turned out that the server is too aggressive towards closing the connection.

+3
source

Source: https://habr.com/ru/post/1757028/


All Articles