Question on "Multiple Connections for Logstash High Availability" diagram published in logstash documentation

@RajkumarV

There are a few ways that you can design this, but generally you want to have an intermediary device such as a load balancer to distribute traffic across your logstash instances. You could use any commercial hardware load balancer, or something like HAProxy. Send your UDP traffic to the Virtual IP on the Load balancer, which then distributes traffic evenly between logstash instances. Logstash does not have any awareness of the load balancing, it just simply listens for UDP messages.

The true HA comes from the fact that most load balancers will periodically check the status of pool members, and take them out of service if they fail.

Does this help?