Spring Cloud Sentinel

是什么

随着微服务的流行,服务和服务之间的稳定性变得越来越重要。Sentinel 以流量为切入点,从流量控制、熔断降级、系统负载保护等多个维度保护服务的稳定性

Sentinel 具有以下特征:

  • 丰富的应用场景Sentinel 承接了阿里巴巴近 10 年的双十一大促流量的核心场景,例如秒杀(即突发流量控制在系统容量可以承受的范围)、消息削峰填谷、集群流量控制、实时熔断下游不可用应用等。
  • 完备的实时监控Sentinel 同时提供实时的监控功能。您可以在控制台中看到接入应用的单台机器秒级数据,甚至 500 台以下规模的集群的汇总运行情况。
  • 广泛的开源生态Sentinel 提供开箱即用的与其它开源框架/库的整合模块,例如与 Spring CloudDubbogRPC 的整合。您只需要引入相应的依赖并进行简单的配置即可快速地接入 Sentinel
  • 完善的 SPI 扩展点Sentinel 提供简单易用、完善的 SPI 扩展接口。您可以通过实现扩展接口来快速地定制逻辑。例如定制规则管理、适配动态数据源等。

Sentinel 的主要特性:

sentinel-01

Sentinel 的开源生态:

sentinel-02

安装

Sentinel 分为两个部分:

  • 核心库(Java 客户端)不依赖任何框架/库,能够运行于所有 Java 运行时环境,同时对 Dubbo / Spring Cloud 等框架也有较好的支持。
  • 控制台(Dashboard)基于 Spring Boot 开发,打包后可以直接运行,不需要额外的 Tomcat 等应用容器。

官方介绍文档 下载地址

环境配置:Java环境必须是JDK1.8及以上,并且8080端口不能被占用!

下载当前时间对应的最新版本sentinel-dashboard-1.7.2.jar,并通过命令java -jar sentinel-dashboard-1.7.2.jar启动。

通过访问sentinel管理界面http://localhost:8080,如下:

sentinel-03

能够看到以上界面则代表sentinel启动成功,默认的账号密码是sentinel,登录进去后能够看到如下界面:

sentinel-04

编码

新建项目cloudalibba-sentinel-service

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--pom.xml 引入相关依赖-->

<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>

<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>

<!-- sentinel-datasource-nacos 用于持久化-->
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-datasource-nacos</artifactId>
</dependency>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#application.yml
server:
port: 8401

spring:
application:
name: cloudalibaba-sentinel-service
cloud:
nacos:
discovery:
#nacos服务注册中心地址
server-addr: localhost:8848
sentinel:
transport:
#配置sentinel dashboard地址
dashboard: localhost:8080
#默认8719端口。假如端口被占用会自动从8719依次+1扫描,直到找到未被占用的端口
port: 8719

management:
endpoints:
web:
exposure:
include: '*'
1
2
3
4
5
6
7
8
9
10
11
12
13
@RestController
public class FlowLimitController {

@GetMapping("/testA")
public String testA() {
return "------testA";
}

@GetMapping("/testB")
public String testB() {
return "------testB";
}
}

通过启动项目注册到nacossentinel中,并登陆sentinel页面查看是否注册成功,结果如下:

sentinel-04

界面空空如也的原因是因为sentlnel默认采用的是懒加载机制,需要先触发一次接口:http://localhost:8401/testAhttp://localhost:8401/testB

再次查看sentinel控制台,结果如下:

sentinel-05

最后更新: 2020年11月12日 12:24

原始链接: https://midkuro.gitee.io/2020/06/28/springcloud-sentinel/

× 请我吃糖~
打赏二维码