Hello,

I am using *listen* configuration with Haproxy Vs. 1.4.24 on status page I
noticed there is huge difference in scur values at front end Vs back end
Values ( almost 50%)

I understand that there might be few connections because of  browser's
"pre-connect" ; but can that lead to go upto 50%

Current stats : Frontend rate - 1155  Backend rate - 1110
                       Frontend scur - 636    Backend  scur - 349


I have around 50+ back end servers , here is my sample configurations


global
        log 127.0.0.1   local0
        log 127.0.0.1   local1 notice
        #log loghost    local0 info
        maxconn 25000
        #debug
        #quiet
        user prod
        group prod
        stats socket /var/run/haproxy.sock level admin

defaults
        log     global
        mode    http
        option  tcplog
        option  dontlognull
        option httpclose
        retries 3
        option redispatch
        maxconn 25000
        contimeout      50000
        clitimeout      500000
        srvtimeout      500000
        stats enable
        stats auth admin:changeme ##Auth user pass

#begin block end
#Configuration for www.example.com

 listen VIP:www.example.com:10.10.10.14:80
    bind 10.10.10.14:80
    log    global
    maxconn 25000
    mode http
    option forwardfor
    balance leastconn
     server REAL:web1:10.10.10.168:80 10.10.10.168:80 check

Reply via email to