Spring Cloud負載均衡神器——Ribbon簡介與基本使用
Ribbon簡介與基本使用
一、Ribbon 簡介
負載均衡在系統架構中是一個非常重要,並且是不得不去實施的內容。因為負載均衡是對系統的高可用、網路壓力的緩解和處理能力擴容的重要手段之一。我們通常所說的負載均衡都指的是服務端負載均衡,其中分為硬體負載均衡和軟體負載均衡。
- 硬體負載均衡主要通過在伺服器節點之間按照專門用於負載均衡的裝置,比如F5等;
- 軟體負載均衡則是通過在伺服器上安裝一些用於負載均衡功能或模組等軟體來完成請求分發工作,比如Nginx等。
Spring Cloud Ribbon是一個基於HTTP和TCP的客戶端負載均衡工具,它基於Netflix Ribbon實現。
Ribbon 通過Spring Cloud的封裝,可以讓我們輕鬆地將面向服務的REST模版請求自動轉換成客戶端負載均衡的服務呼叫。Spring Cloud Ribbon雖然只是一個工具類框架,它不像服務註冊中心、配置中心、API閘道器那樣需要獨立部署,但是它幾乎存在於每一個Spring Cloud構建的微服務和基礎設施中。因為微服務間的呼叫,API閘道器的請求轉發等內容,實際上都是通過Ribbon來實現的,包括後續我們將要介紹的Feign,它也是基於Ribbon實現的工具。所以,對Spring Cloud Ribbon的理解和使用,對於我們使用Spring Cloud來構建微服務非常重要。
二、Ribbon 可以做什麼
Ribbon 的核心功能就是——LB,即負載均衡(Load Balance),在微服務或分散式叢集中經常用的一種應用
常見的負載均衡軟體:Nginx、Lvs等等
dubbo、SpringCloud中都給我們提供了負載均衡,其中,SpringCloud的負載均衡演算法可以自定義。
負載均衡簡單分類:
-
集中式LB:在服務的消費方和提供方之間使用獨立的LB設施,如Nginx,由該設施負責把訪問請求通過某種策略轉發至服務的提供方。
- 例如:Nginx
-
程式式LB:將LB邏輯整合到消費方,消費方從服務註冊中心獲知有哪些地址可用,然後從這些地址中找到一個合適的伺服器。
- 例如:Ribbon
Ribbon內部已有的一些負載均衡演算法:隨機、輪詢(預設)、權重等等
三、Ribbon 簡單使用
1、搭建環境:多個服務提供者、與之對應的多個資料庫、Eureka Server叢集。(之前的部落格有)
接下來是在客戶端,即服務消費方操作:
2、匯入pom依賴:
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-ribbon -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-ribbon</artifactId>
<version>1.4.7.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-eureka -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
<version>1.4.7.RELEASE</version>
</dependency>
3、在application.yaml中進行相關配置:
eureka:
client:
service-url:
defaultZone: http://eureka7001.com/eureka/,http://eureka7002.com/eureka/,http://eureka7003.com/eureka/
register-with-eureka: false
4、在 RestTemplate 配置檔案中新增註解@LoadBalanced
package com.xingyu.springcloud.config;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class ConfigBean {
@Bean
@LoadBalanced //Ribbon負載均衡
public RestTemplate getRestTemplate(){
return new RestTemplate();
}
}
5、修改 Controller
之前的Controller如下:
package com.xingyu.springcloud.controller;
import com.xingyu.springcloud.pojo.Dept;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.client.RestTemplate;
import java.util.List;
@RestController
public class DeptConsumerController {
@Autowired
private RestTemplate restTemplate; //提供多種便捷訪問遠端http服務的方法,簡單的restful服務模板
private static final String REST_URL_PREFIX = "http://localhost:8001";
@RequestMapping(value = "/consumer/dept/add", method = RequestMethod.POST)
public Boolean add(Dept dept) {
return restTemplate.postForObject(REST_URL_PREFIX + "/dept/add",dept, Boolean.class);
}
@RequestMapping(value = "/consumer/dept/get/{id}", method = RequestMethod.GET)
public Dept getOne(@PathVariable Long id) {
return restTemplate.getForObject(REST_URL_PREFIX + "/dept/get/" + id, Dept.class);
}
@RequestMapping(value = "/consumer/dept/list", method = RequestMethod.GET)
public List<Dept> getAll() {
return restTemplate.getForObject(REST_URL_PREFIX + "/dept/list", List.class);
}
}
其中:private static final String REST_URL_PREFIX = "http://localhost:8001";
這個語句設定了一個常量REST_URL_PREFIX用於指定服務的RESTurl地址,這樣會固定只能訪問8001,所以需要更改。將其中的localhost:8001
修改為Eureka Server頁面(http://localhost:7001/)中服務例項的Application名:
所以將其修改成:private static final String REST_URL_PREFIX = "http://SPRINGCLOUD-PROVIDER-DEPT";
修改後的Controller:
package com.xingyu.springcloud.controller;
import com.xingyu.springcloud.pojo.Dept;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.client.RestTemplate;
import java.util.List;
@RestController
public class DeptConsumerController {
@Autowired
private RestTemplate restTemplate; //=提供多種便捷訪問遠端http服務的方法,簡單的restful服務模板
private static final String REST_URL_PREFIX = "http://SPRINGCLOUD-PROVIDER-DEPT";
@RequestMapping(value = "/consumer/dept/add", method = RequestMethod.POST)
public Boolean add(Dept dept) {
return restTemplate.postForObject(REST_URL_PREFIX + "/dept/add",dept, Boolean.class);
}
@RequestMapping(value = "/consumer/dept/get/{id}", method = RequestMethod.GET)
public Dept getOne(@PathVariable Long id) {
return restTemplate.getForObject(REST_URL_PREFIX + "/dept/get/" + id, Dept.class);
}
@RequestMapping(value = "/consumer/dept/list", method = RequestMethod.GET)
public List<Dept> getAll() {
return restTemplate.getForObject(REST_URL_PREFIX + "/dept/list", List.class);
}
}
結論:Ribbon和Eureka整合後,客戶端可以直接呼叫服務,不需要關心IP地址和埠號。
相關文章
- Spring Cloud Ribbon負載均衡SpringCloud負載
- 客服端負載均衡:Spring Cloud Ribbon負載SpringCloud
- Spring Cloud Ribbon 客戶端負載均衡SpringCloud客戶端負載
- Spring Cloud:自定義 Ribbon 負載均衡策略SpringCloud負載
- Spring cloud(3)-負載均衡(Feign,Ribbon)SpringCloud負載
- Spring Cloud:使用Ribbon實現負載均衡詳解(上)SpringCloud負載
- Spring Cloud:使用Ribbon實現負載均衡詳解(下)SpringCloud負載
- Spring Cloud之負載均衡元件Ribbon原理分析SpringCloud負載元件
- Spring cloud客戶端負載均衡與ribbon的設計思路SpringCloud客戶端負載
- 微服務Spring Cloud17_負載均衡Ribbon6微服務SpringCloud負載
- 負載均衡簡介與搭建負載
- 負載均衡---ribbon負載
- 負載均衡簡介負載
- Spring Cloud入門教程-Ribbon實現客戶端負載均衡SpringCloud客戶端負載
- spring cloud 上雲的情況下,Ribbon 客戶端負載均衡 與 ALB 服務端負載均衡的選擇SpringCloud客戶端負載服務端
- Spring Cloud Gateway之負載均衡SpringCloudGateway負載
- Ribbon負載均衡策略與自定義配置負載
- Ribbon實現負載均衡負載
- 【SpringCloud】之Ribbon負載均衡SpringGCCloud負載
- Ribbon負載均衡 (原始碼分析)負載原始碼
- Spring Cloud:使用 Feign 實現負載均衡詳解SpringCloud負載
- 微服務負載均衡器 Ribbon微服務負載
- (4)什麼是Ribbon負載均衡負載
- ③SpringCloud 實戰:使用 Ribbon 客戶端負載均衡SpringGCCloud客戶端負載
- java Spring Cloud企業快速開發架構之Ribbon結合RestTemplate實現負載均衡JavaSpringCloud架構REST負載
- SpringCloud客戶端負載均衡——RibbonSpringGCCloud客戶端負載
- Ribbon 支援的9大負載均衡策略負載
- SpringCloud 客戶端負載均衡:RibbonSpringGCCloud客戶端負載
- Ribbon - 幾種自定義負載均衡策略負載
- SpringCloud入門(四)Ribbon負載均衡SpringGCCloud負載
- Kubernetes中負載均衡功能簡介負載
- 負載均衡技術(一)———負載均衡技術介紹負載
- (20)java Spring Cloud企業快速開發架構之SpringCloud-Ribbon自定義負載均衡策略JavaSpringCloud架構GC負載
- Spring Cloud Netflix—客戶端負載平衡器:RibbonSpringCloud客戶端負載
- 介紹下Nginx 反向代理與負載均衡Nginx負載
- 負載均衡技術(二)———常用負載均衡服務介紹負載
- Spring Cloud Gateway使用簡介SpringCloudGateway
- SpringCloud Fegin結合Ribbon實現負載均衡SpringGCCloud負載