I wonder which ones of the following load balancers is able to detect an unavailable backend machine, and redirect the connection to another server without dropping the request:
- nginx
- AWS Elastic Load Balancer
- HAProxy
I wonder which ones of the following load balancers is able to detect an unavailable backend machine, and redirect the connection to another server without dropping the request:
I would expect that all of them will do this ...
nginx will attempt to contact each of the upstream servers in turn before sending an error tot the client.
HaAProxy can be configured to check the backend servers using the server option check and other related options.