Setup Client Side Load Balancing With Ribbon
in prvious video we have imvoked the currencyExchangeService From our CurrencyCalculationService to calculate the Currency by the quentry and there currnecy exchange in last step we added Feign to make calling the currencyExchangeService from currencyExchangeService very easily So in given Above you can see in Currncy Conversion service we have only 1 Prod instance while Currency Exchange Service we have 4 instances so now hile Conversion service trying to call the Exchange service than we have to load balance means we would need to distribute the load between all these instance Thats where Ribbon Comes into the Picture We were using Feing to call Currency Exchange Service Ribbon can make use of the Feign Configuration, that we have already done in previous tutotial and Help us Distirubution the calls between diffrent instances (prod1, prod2 , prod3, prod4) of currency exchange prod service When we enable Ribbon we will see the load will...