-
Notifications
You must be signed in to change notification settings - Fork 2
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
HA-Proxy killing connection to server #9
Comments
Isolated a fix for the issue. It seems that haproxy drops the connection to client as a side-effect to option http-server-close
+ option http-pretend-keepalive
#option forwardfor except 127.0.0.0/8 |
Had to add the following option to
Also modified - timeout client 1m
+ timeout client 3m
- timeout server 1m
+ timeout server 3m |
Adding a mitigation to handle slow response generation: |
The error message seems to be triggered due to a Seems to me that there is some delay in writing records to response stream. This will be an issue irrelevant of the update size. |
haproxy seems to be closing its connection before the response is completed
The text was updated successfully, but these errors were encountered: