SevenSecondMemoryFish / First-SpringCloud

项目只是学习使用

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

First-SpringCloud

项目只是学习使用

Sentinel 使用

sentinel 是阿里出的关于服务熔断、服务降级、服务治理等的一个防护组件。Sentinel Github

1.本项目中,创建的服务cloudalibaba-sentinel-service8401,使用了Sentinel进项了防护

# yml配置
spring:
    sentinel:
      transport:
        # sentinel 地址
        dashboard: localhost:8858
        port: 8719
<!--  sentinel 和 canos 配合使用   -->
<dependencies>
    <dependency>
        <groupId>com.alibaba.cloud</groupId>
        <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
    </dependency>
    <dependency>
        <groupId>com.alibaba.cloud</groupId>
         <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
    </dependency>
    <dependency>
        <groupId>com.alibaba.csp</groupId>
        <artifactId>sentinel-datasource-nacos</artifactId>
    </dependency>
</dependencies>

下载安装,目前我是用的是docker安装

# 下载 sentinel
docker pull bladex/sentinel-dashboard

运行sentinel

# 使用docker 运行sentinel,端口号为8858
docker run --name sentinel -d -p 8858:8858 -d bladex/sentinel-dashboard

安装完成,以及运行完成后,可以访问http:localhost:8858,即可看到Sentinel的界面,密码和账户都为:sentinel

注意:

  • 当设置流控规则的时候
    • 设置的是/testA 关联/testB的时候,如果资源/testB资源访问达到阀值的时候。/testA则会挂掉。而不是/testB

About

项目只是学习使用


Languages

Language:Java 100.0%