HAProxy connection issues #314
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Also see #271 (comment)
Investigate HAProxy connection issuesto HAProxy connection issues@slvrbckt had a look at our HAProxy config and noticed that there was no
maxconn
settings, which resulted in the default ofulimit
being used (only 1024).This could likely already have been the cause of additional connections failing. I added a new global setting of
maxconn 60000
, as suggested on chat.Let's see if that solves it already...
More suggestions:
We could also add some backend-specific connection limits to prevent overloading specific services, like so:
Just one correction it's just
http-reuse always
(nooption
prefix)The problem has not re-appeared, and all available information points to the maxconn limit having been reached before. Thanks again @slvrbckt for helping with this!