Random haproxy 408 errors

Posted by Errol Fitzgerald on Server Fault See other posts from Server Fault or by Errol Fitzgerald
Published on 2014-06-07T02:56:13Z Indexed on 2014/06/07 3:30 UTC
Read the original article Hit count: 584

I keep getting random 408 timeout messages from haproxy, but can't figure out if its a bug in 1.5-dev25 or something in my config file

global
        log 127.0.0.1   local0
        log 127.0.0.1   local1  info
        #log loghost    local0 info
        maxconn 80000
        #debug
        #quiet
        user haproxy
        group haproxy
        stats socket /tmp/haproxy.sock

defaults
        log global
        mode http
        errorfile 503 /etc/haproxy/errors/503.http
        option httplog
        option dontlognull
        retries 3
        option redispatch
        maxconn 80000
        timeout client 12s         
        timeout server 120s
        timeout queue  120s
        timeout connect 10s
        timeout http-request 30s
        option http-server-close
        timeout http-keep-alive 3000
        option abortonclose
        option httpchk

        ...

Does anyone see anything wrong with these config settings?

© Server Fault or respective owner

Related posts about haproxy

Related posts about http-status-code-408