本文主要研究一下如何使用alibaba开源的限流组件Sentineljava
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-sentinel</artifactId> <version>0.2.0.BUILD-SNAPSHOT</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
server.port=8080 spring.application.name=sentinel-demo spring.cloud.sentinel.port=7080 spring.cloud.sentinel.dashboard=localhost:9999 management.endpoints.web.exposure.include=*
java -Dserver.port=9999 \ -Dcsp.sentinel.dashboard.server=localhost:9999 \ -Dproject.name=sentinel-dashboard \ -jar sentinel-dashboard.jar
访问应用的sentinel端点:http://localhost:8080/actuator/sentinel,返回以下:git
{ "DegradeRules": [], "SystemRules": [], "FlowRules": [ { "resource": "/actuator", "limitApp": "default", "grade": 1, "count": 10, "strategy": 0, "refResource": null, "controlBehavior": 0, "warmUpPeriodSec": 10, "maxQueueingTimeMs": 500 } ], "properties": { "enabled": true, "port": "7080", "dashboard": "localhost:9999", "filter": { "order": -2147483648, "urlPatterns": [ "/*" ] } } }
wrk -t12 -c1000 -d10s -T30s --latency http://localhost:8080/actuator
能够看到每分钟的拒绝次数,另外也能够经过实时监控来看图形化曲线
蓝色的曲线为b_qps,即被blocked的请求的qps
被流控以后,接口返回github
curl -i http://localhost:8080/actuator HTTP/1.1 200 Transfer-Encoding: chunked Date: Sun, 12 Aug 2018 13:41:15 GMT Blocked by Sentinel (flow limiting)
这里使用的是spring-cloud-alibaba的组件,跟spring-cloud-netlfix相似,是alibaba的开源组件融入spring cloud的部分,如今提供了对sentinel的集成,很是方便。web