Hi, First, I want to Thank you for HAProxy, it is great!
I have been using it for http load balance, works very well. I have some newbie questions on load balancing non-http RPC servers. The problem I am running into is the HAProxy will keep ping the server, server open new connection, but does not close them. I must be missing something obvious. Appreciate your help. *defaults* * log 127.0.0.1 local0* * maxconn 4000* * timeout connect 1s* * timeout client 10s* * timeout server 5s* * maxconn 60000* * option redispatch* * retries 3* * grace 300* * option dontlognull* * * *frontend wave_server * * bind :9876* * default_backend 9876_wave_server* * * *backend 9876_wave_server* * balance leastconn* * mode tcp* * balance roundrobin* * server wave1 localhost:9871 check inter 3000 rise 2 fall 2 weight 1 * * server wave2 localhost:9872 check inter 3000 rise 2 fall 2 weight 1 *

