-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
proposal: net/http: Allow configurable max connection age #43905
Comments
Similar to #23427 which offers a work around (hack). However re-resolving DNS and reusing connection issues have been apparent for many years. |
Maybe the TTL based DNS resolution could be a solution #23427 (comment). I am pretty sure that in practice you never max out the number of connections, so you always have idle conns that will be closed in a "hack" as I showed in #23427. We run this in a high traffic scenario since some years without an issue that we could observe (does not mean that it does not exist in practice). |
I have a different issue that would be resolved by the same configuration. For reasons outside my control, I have a firewall that kills TCP connections after 15 minutes regardless of their activity. As mentioned above Having a similar configuration would be an easy client-side fix for me in HTTP, but I'll readily admit this problem is not likely common enough to warrant a change to |
Also, sorry for the potentially dupe proposal. I believe the maintainers were not interested in reviewing my PR without a proposal of my own for my specific implementation. |
Any updates? |
Currently, the
http.Transport
implementation will reuse an HTTP connection if keepalives are enabled and the connection has not been in an idle state for too long.This means that for high throughput connections that are always active and rarely/never exceed the
IdleConnTimeout
limit, the connection will keep getting reused (as long as it is not broken).This poses a problem in terms of service discovery and client-side load balancing - since address resolution only happens in the dialer's
DialContext
, this leaves no chance for the client to re-resolve the target address since the same connection is constantly reused without ever "re-dialing".I propose to add a
MaxConnectionAge
flag tohttp.Transport
that would limit the lifetime of a persistent connection, and would not reuse it beyond this lifetime.This would be in line with the behavior of
go-grpc
which also enforces aMaxConnectionAge
limit.The text was updated successfully, but these errors were encountered: