Re: [The Java Posse] Re: Load balancing options?

2013-07-31 Thread Fabrizio Giudici
On Wed, 31 Jul 2013 19:59:18 +0200, Justin Ryan wrote: The approach Netflix takes is to use a discovery service (called Eureka, https://github.com/Netflix/eureka) and then tying that together with the code that makes API calls (https://github.com/Netflix/ribbon). If you're looking to add robust

[The Java Posse] Re: Load balancing options?

2013-07-31 Thread Justin Ryan
The approach Netflix takes is to use a discovery service (called Eureka, https://github.com/Netflix/eureka) and then tying that together with the code that makes API calls (https://github.com/Netflix/ribbon). If you're looking to add robustness to your calls, definitely look at those libraries.