Load Balancing with Ribbon
While working on providing transaction support @ Fabhotels by using multiple transaction gateways, I needed to make sure that —
- No Single Payment Gateway is overloaded.
- We choose a gateway that is alive for each request.

How can we solve this problem?
- We can load balance by simple round-robin — Use the gateways in a cycle (A > B > C >A)…