Hi everyone, we are running HAProxy server. Our haproxy configuration file has
global maxconn 16384
defaults max-keep-alive-queue 300
server varnish01 yyy.yyy.yyy.yy::80 check maxconn 1000
server varnish01 zzz:zzz:zzz:zz::80 check maxconn 1000
Note that, zzz:zzz:zzz:zz and yyy:yyy:yyy:yy ip address
backend bk_shop_cluster,
timeout queue 5s
mode http
balance leastconn
server nginx01 10.10.10.215:443 ssl verify none check maxconn 50
server nginx02 10.10.10.216:443 ssl verify none check maxconn 50
I want 50 connections create per server. But every time my maxconn is overloaded or exceeded. So it creates high CPU utilization and memory usage. How can i get rid of this problem?
4 posts - 3 participants