建立項目cloud-sentineljavascript
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
複製代碼
server.port=18084
spring.application.name=service-sentinel
#Sentinel 控制檯地址
spring.cloud.sentinel.transport.dashboard=localhost:8080
#取消Sentinel控制檯懶加載
spring.cloud.sentinel.eager=true
複製代碼
Sentinel 默認爲全部的 HTTP 服務提供了限流埋點。引入依賴後自動完成全部埋點。只須要在控制配置限流規則便可java
@SentinelResource("resource")
@RequestMapping("/sentinel/hello")
public Map<String,Object> hello(){
Map<String,Object> map=new HashMap<>(2);
map.put("appName",appName);
map.put("method","hello");
return map;
}
複製代碼
Sentinel下載git
執行 Java 命令 java -jar sentinel-dashboard.jar
默認的監聽端口爲 8080
github
打開http://localhost:8080 便可看到控制檯界面 spring
說明cloud-sentinel已經成功和Sentinel完成率通信若是控制檯沒有找到本身的應用,能夠先調用一下進行了 Sentinel 埋點的 URL 或方法或着禁用Sentinel 的賴加載spring.cloud.sentinel.eager=true
數據庫
控制器隨便添加一個普通的http方法json
/** * 經過控制檯配置URL 限流 * @return */
@RequestMapping("/sentinel/test")
public Map<String,Object> test(){
Map<String,Object> map=new HashMap<>(2);
map.put("appName",appName);
map.put("method","test");
return map;
}
複製代碼
點擊新增流控規則。爲了方便測試閥值設爲 1 瀏覽器
瀏覽器重複請求 http://localhost:18084/sentinel/test 若是超過閥值就會出現以下界面整個URL限流就完成了。可是返回的提示不夠友好。bash
自定義限流規則就不是添加方法的訪問路徑。 配置的是@SentinelResource註解中value的值。好比@SentinelResource("resource")
就是配置路徑爲resource 併發
@SentinelResource
註解埋點配置的限流規則若是沒有自定義處理限流邏輯,當請求到達限流的閥值時就返回404頁面
@SentinelResource 註解包含如下屬性:
//經過註解限流並自定義限流邏輯
@SentinelResource(value = "resource2", blockHandler = "handleException", blockHandlerClass = {ExceptionUtil.class})
@RequestMapping("/sentinel/test2")
public Map<String,Object> test2() {
Map<String,Object> map=new HashMap<>();
map.put("method","test2");
map.put("msg","自定義限流邏輯處理");
return map;
}
public class ExceptionUtil {
public static Map<String,Object> handleException(BlockException ex) {
Map<String,Object> map=new HashMap<>();
System.out.println("Oops: " + ex.getClass().getCanonicalName());
map.put("Oops",ex.getClass().getCanonicalName());
map.put("msg","經過@SentinelResource註解配置限流埋點並自定義處理限流後的邏輯");
return map;
}
}
複製代碼
控制檯新增resource2的限流規則並設置閥值爲1。訪問http://localhost:18084/sentinel/test2 請求到達閥值時機會返回自定義的異常消息
基本的限流處理就完成了。 可是每次服務重啓後 以前配置的限流規則就會被清空由於是內存態的規則對象.因此下面就要用到Sentinel一個特性ReadableDataSource 獲取文件、數據庫或者配置中心是限流規則
一條限流規則主要由下面幾個因素組成:
#經過文件讀取限流規則
spring.cloud.sentinel.datasource.ds1.file.file=classpath: flowrule.json
spring.cloud.sentinel.datasource.ds1.file.data-type=json
spring.cloud.sentinel.datasource.ds1.file.rule-type=flow
複製代碼
在resources新建一個文件 好比flowrule.json 添加限流規則
[
{
"resource": "resource",
"controlBehavior": 0,
"count": 1,
"grade": 1,
"limitApp": "default",
"strategy": 0
},
{
"resource": "resource3",
"controlBehavior": 0,
"count": 1,
"grade": 1,
"limitApp": "default",
"strategy": 0
}
]
複製代碼
從新啓動項目。出現以下日誌說明文件讀取成功
[Sentinel Starter] DataSource ds1-sentinel-file-datasource start to loadConfig
[Sentinel Starter] DataSource ds1-sentinel-file-datasource load 2 FlowRule
複製代碼
刷新Sentinel 控制檯 限流規則就會自動添加進去
spring.cloud.sentinel.enabled #Sentinel自動化配置是否生效
spring.cloud.sentinel.eager #取消Sentinel控制檯懶加載
spring.cloud.sentinel.transport.dashboard #Sentinel 控制檯地址
spring.cloud.sentinel.transport.heartbeatIntervalMs #應用與Sentinel控制檯的心跳間隔時間
spring.cloud.sentinel.log.dir #Sentinel 日誌文件所在的目錄
複製代碼