HI All,
I am running Graylog cluster behind HAProxy.
HAProxy version : HA-Proxy version 1.5.18
I am load balancing TCP logs on port 12221/tcp. But I am always seeing the logs are going to one node. Equal load balancing is not happening. I think this is due to TCP sticky connection issue. Is there any way to achieve roundrobin balancing from the same source.
My current configuration:
listen syslog-TCP-12221 0.0.0.0:12221
mode tcp
option tcplog
balance roundrobin
server glog01 10.12.86.74:12222 check
server glog02 10.12.86.75:12222 check
Please help me with the suitable configuration that will help me load balancing incoming same source logs equally on all nodes. Thanks in advance