In this article, I am going to share my knowledge on Spring Cloud Ribbon and how can we use Ribbon with RestTemplate as well as with Feign Client. We will also see how Enabling discovery Sever will improve the scalability of Microservice.
Before jumping into Spring Cloud, I am assuming you must be having knowledge of Eureka Server, Feign Client, and Client-Side load balancer. If not then read my below blog before jumping to Spring Cloud ribbon. Also, I am going to use my existing code to implement Ribbon.
URLs:
We have seen that three microservices application are up and running i.e.
Imagine there is a high load on the price-service application and to handle it, we have started two more instances of price-service.
let's implement it and see how it can solve our problem.
Add below dependency to product-server pom.xml file as it is the one which is going to consume price-service API.
Case 1: Ribbon + Eureka Server + RestTemplate
As our application is already acting as Eureka Client and using RestTemplate to fetch price record. Let's just add @LoadBalanced annotation to RestTemplate to enables Ribbon functionality.
It will allow the product-service application to use price-service as the address of price-service application and will discover the host/port of all instances of price-service from discovery-server.
Note:
@EnableCircuitBreaker <-> Used to enable Netflix Hystrix
@EnableHystrixDashboard <-> Used to check circuit state on Dashboard.
@EnableFeignClients <-> To enable feign client (Needed for case 2 scenario)
Start discovery-server, product-service and start two instances of price-service. You can do it easily by just overriding port number under Eclipse Run As Configuration.
Let's confirm it, whether all the instances are up and running or not by hitting discovery-server URL (http://localhost:8761/)
Now hit product-service URL multiple times from the browser and then go and check both the price-service logs. you will observe that few requests are coming to one instance and others on second one.
Great! Netflix Cloud Ribbon is successfully implemented and working absolutely fine.
If you start another price-service instance and hit the product-service URL again then you will find the request logs in the third instance too without doing any modification/configuration to any files.
Case 2: Ribbon + Eureka Server + Feign Client
If you are not aware of the feign client then you can read my blog here.
I'll just talk about Ribbon Integration with existing FeignClient application assuming you are already aware of Feign Client and implemented it.
In product-service application, I have already exposed another Endpoint (http://localhost:7001/products/feign/1) which consume price-service API using Feign Client.
To enable Netflix Ribbon, Add @RibbonClient annotation to the feighClient interface and pass your consuming service name (price-service).
Now restart your application and hit new endpoint. you will observe that the requests are distributed to all the instances of price-service.
Case 3: Ribbon + (RestTemaple/FeignClient) + NO Eureka Server
Can we use Netflix ribbon without integrating Eureka Server, The answer is YES but it would not be a good design. So, I would not recommend it.
When your application is not integrated with Eureka Server, in that case you have to list down all the address manually to properties file.
Before jumping into Spring Cloud, I am assuming you must be having knowledge of Eureka Server, Feign Client, and Client-Side load balancer. If not then read my below blog before jumping to Spring Cloud ribbon. Also, I am going to use my existing code to implement Ribbon.
URLs:
- Declarative REST Client: Feign
- Microservices: Service Registry and Discovery
- Netflix Hystrix Circuit Breaker
We have seen that three microservices application are up and running i.e.
- Discovery Server
- Product Service
- Price Service
Imagine there is a high load on the price-service application and to handle it, we have started two more instances of price-service.
- How will you make sure your product-service should talk to all three instances of price-service and divides the load equally to each server?
- How will you manage the heartbeat of the application so that product-service should not hit INACTIVE instance of price-service which just got shut down because of some internal reason?
- How will you get to know how many instances are up and running of price-service?
let's implement it and see how it can solve our problem.
Add below dependency to product-server pom.xml file as it is the one which is going to consume price-service API.
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-ribbon</artifactId>
</dependency>
Case 1: Ribbon + Eureka Server + RestTemplate
As our application is already acting as Eureka Client and using RestTemplate to fetch price record. Let's just add @LoadBalanced annotation to RestTemplate to enables Ribbon functionality.
It will allow the product-service application to use price-service as the address of price-service application and will discover the host/port of all instances of price-service from discovery-server.
Note:
@EnableCircuitBreaker <-> Used to enable Netflix Hystrix
@EnableHystrixDashboard <-> Used to check circuit state on Dashboard.
@EnableFeignClients <-> To enable feign client (Needed for case 2 scenario)
Start discovery-server, product-service and start two instances of price-service. You can do it easily by just overriding port number under Eclipse Run As Configuration.
Let's confirm it, whether all the instances are up and running or not by hitting discovery-server URL (http://localhost:8761/)
Now hit product-service URL multiple times from the browser and then go and check both the price-service logs. you will observe that few requests are coming to one instance and others on second one.
Great! Netflix Cloud Ribbon is successfully implemented and working absolutely fine.
If you start another price-service instance and hit the product-service URL again then you will find the request logs in the third instance too without doing any modification/configuration to any files.
Case 2: Ribbon + Eureka Server + Feign Client
If you are not aware of the feign client then you can read my blog here.
I'll just talk about Ribbon Integration with existing FeignClient application assuming you are already aware of Feign Client and implemented it.
In product-service application, I have already exposed another Endpoint (http://localhost:7001/products/feign/1) which consume price-service API using Feign Client.
To enable Netflix Ribbon, Add @RibbonClient annotation to the feighClient interface and pass your consuming service name (price-service).
Now restart your application and hit new endpoint. you will observe that the requests are distributed to all the instances of price-service.
Case 3: Ribbon + (RestTemaple/FeignClient) + NO Eureka Server
Can we use Netflix ribbon without integrating Eureka Server, The answer is YES but it would not be a good design. So, I would not recommend it.
When your application is not integrated with Eureka Server, in that case you have to list down all the address manually to properties file.
Remove @RibbonClients annotation.
Add below entry to your application.properties file under product-service.
#Enable this property if you are not using Eureka Server
price-service.ribbon.listOfServers=http://localhost:8002,http://localhost:7002
Imagine there are 1000 instances of price-services are up and running so we have to add all the instances manually. It could be a nightmare if we have to do it. :)
That's all for Netflix Ribbon now and do let me know if you have any confusion/query or you think I am not right somewhere. Please feel free to comment. Thank you!
As usual, you can download the spring-boot-microservices from GITHUB.
Add below entry to your application.properties file under product-service.
#Enable this property if you are not using Eureka Server
price-service.ribbon.listOfServers=http://localhost:8002,http://localhost:7002
Imagine there are 1000 instances of price-services are up and running so we have to add all the instances manually. It could be a nightmare if we have to do it. :)
That's all for Netflix Ribbon now and do let me know if you have any confusion/query or you think I am not right somewhere. Please feel free to comment. Thank you!
As usual, you can download the spring-boot-microservices from GITHUB.
Thanks for sharing this blog.This article gives lot of information.
ReplyDeleteMicroservices Online Training
Thanks for posting this blog.This article gives lot of information.
ReplyDeleteFull Stack Training in Chennai | Certification | Online Training Course| Full Stack Training in Bangalore | Certification | Online Training Course | Full Stack Training in Hyderabad | Certification | Online Training Course | Full Stack Developer Training in Chennai | Mean Stack Developer Training in Chennai | Full Stack Training | Certification | Full Stack Online Training Course
As a matter of fact, the budgets of businesses and other organizations continue growing in a bid to keep safe from cyber criminals. best cloud security companies
ReplyDelete