《Sentinel 服务限流、降级》

《Sentinel 服务限流、降级》

一、准备服务消费者(端口8080)

1、添加依赖。

<!-- 引入 Sentinel 依赖 -->

        <dependency>

            <groupId>com.alibaba.csp</groupId>

            <artifactId>sentinel-core</artifactId>

            <version>1.7.2</version>

        </dependency>

        

2、bootstrap.properties 配置 Nacos

server.port=8081

 

spring.application.name=service-consumer

 

# nacos 作为注册中心

spring.cloud.nacos.discovery.server-addr=192.168.1.x:8848

 

3、设置资源限流规则

@Component

@RestController

@RequestMapping("sentinelTest")

public class SentinelTestController {

 

    @PostConstruct

    private void postC() {

        initFlowRules(); // 临时初始化sentinel配置

    }

 

    /**

     * helloWorld() 方法就成了我们的一个资源。注意注解支持模块需要配合 Spring AOP 或者 AspectJ 一起使用。

     */

//    @SentinelResource("HelloWorld")

//    @RequestMapping("/helloWorld")

//    public String helloWorld() {

//        // 资源中的逻辑

//        System.out.println("hello world");

//        return "hello world";

//    }

 

    @SentinelResource("HelloWorld")

    @RequestMapping("/helloWorld")

    public String helloWorld() {

 

        // 1.5.0 版本开始可以直接利用 try-with-resources 特性,自动 exit entry

        try (Entry entry = SphU.entry("HelloWorld")) {

            // 被保护的逻辑

            System.out.println("hello world");

            return "hello world";

        } catch (BlockException ex) {

            // 处理被流控的逻辑

            System.out.println("blocked!");

        }

 

        return "blocked";

    }

 

    /**

     * 使用代码设置sentinel,也可以在sentinel-Dashboard控制台设置

     */

    // @RequestMapping("/initFlowRules")

    private void initFlowRules() {

        List<FlowRule> rules = new ArrayList<>();

        FlowRule rule = new FlowRule();

        rule.setResource("HelloWorld");

        rule.setGrade(RuleConstant.FLOW_GRADE_QPS);

        // Set limit QPS to 20.

//        rule.setCount(20);

        rule.setCount(1);

        rules.add(rule);

        FlowRuleManager.loadRules(rules);

    }

}

 

测试:

http://xx/sentinelTest/helloWorld

每秒正常服务1个请求,超出的请求被拒绝了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值