Hello,

> > Let's say we have the following setup.
> >
> > ```
> > maxconn 20000
> > nbthread 4
> > ```
> >
> > My understanding is that HAProxy will accept 20000 concurrent connection,
> > right? Even when I increase the nbthread will HAProxy *NOT* accept more then
> > 20000 concurrent connection, right?

Yes.


> > What confuses me is "maximum per-process" in the maxconn docu part, will 
> > every
> > thread handle the maxconn or is this for the whole HAProxy instance.

Per process limits apply to processes, they do not apply to threads.

Maxconn is per process. It is NOT per thread.

Multithreading solves those issues.


Lukas

Reply via email to