Hi,
I have some backend-servers (eg A and B) in multiple backends (B has some
special sites running that's why). Algorithm is least connection. But the
information about the number of active connections is not shared between the
backend configurations, even though servers have the same name. So if A has 10
connections in backend TWO, backend ONE will still see A as unused with 0
connections. Using the least connection algorithm I would wish that connection
numbers are counted overall.
Sample configuration
frontend myfrontend *:80
acl acl_site1 url_sub
use_backend TWO if acl_site1
default_backend ONE
backend ONE
server A ...
server B ...
backend TWO
server A ...
What can I do to use the least conn algorithm in this setup?
Thank you! Martin