feat: support Spring RestClient (#3602)
- feat: support Spring RestClient
Change-Id: I49c8b1cf7a0a6f357b68b58bd352efc5981b76b2 Co-developed-by: OpenCode noreply@opencode.ai
- add customized resourceExtractor and fallback test
Change-Id: Ieacaf949222f5871f934d2f0aa3bd6d73d1a087b
- fix: resolve markdown lint errors in README
Change-Id: I2df54be42732b1c1786b4b9189639913b4598fd9 Co-developed-by: OpenCode noreply@opencode.ai
- fix: skip tests on Java < 17 for Spring 6.x compatibility
Change-Id: Ia9dceb36c2ef3a9a86a61110446c6aec4de331a9 Co-developed-by: OpenCode noreply@opencode.ai
- fix: remove extra trailing blank line in README
Change-Id: I10f1752fa921aa8980e640c4fe7726d3c1764f37 Co-developed-by: OpenCode noreply@opencode.ai
- fix: address PR review comments for restclient adapter
- DefaultRestClientFallback now throws SentinelRpcException for consistency with other client adapters (okhttp, apache-httpclient)
- SentinelClientHttpResponse uses text/plain instead of application/json since the body is plain text
- Update tests to reflect new exception-throwing behavior
Change-Id: I778bb9bba1bd24435e667f996ebbff19d734b14a Co-developed-by: Claude noreply@anthropic.com Co-Authored-By: Claude Sonnet 4.6 noreply@anthropic.com
- refactor: remove SentinelClientHttpResponse class
No longer needed since DefaultRestClientFallback now throws SentinelRpcException. Update README, ManualTest, and integration tests accordingly.
Change-Id: Ic38af10b9a82f99205aeb1bccde8411ec97d618b Co-developed-by: Claude noreply@anthropic.com Co-Authored-By: Claude Opus 4.6 (1M context) noreply@anthropic.com
Co-authored-by: Claude Sonnet 4.6 noreply@anthropic.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
Sentinel: The Sentinel of Your Microservices
Introduction
As distributed systems become increasingly popular, the reliability between services is becoming more important than ever before. Sentinel takes “flow” as breakthrough point, and works on multiple fields including flow control, traffic shaping, concurrency limiting, circuit breaking and system adaptive overload protection, to guarantee reliability and resilience for microservices.
Sentinel has the following features:
Features overview:
The community is also working on the specification of traffic governance and fault-tolerance. Please refer to OpenSergo for details.
Documentation
See the Sentinel Website for the official website of Sentinel.
See the 中文文档 for document in Chinese.
See the Wiki for full documentation, examples, blog posts, operational details and other information.
Sentinel provides integration modules for various open-source frameworks (e.g. Spring Cloud, Apache Dubbo, gRPC, Quarkus, Spring WebFlux, Reactor) and service mesh. You can refer to the document for more information.
If you are using Sentinel, please leave a comment here to tell us your scenario to make Sentinel better. It’s also encouraged to add the link of your blog post, tutorial, demo or customized components to Awesome Sentinel.
Ecosystem Landscape
Quick Start
Below is a simple demo that guides new users to use Sentinel in just 3 steps. It also shows how to monitor this demo using the dashboard.
1. Add Dependency
Note: Sentinel requires JDK 1.8 or later.
If you’re using Maven, just add the following dependency in
pom.xml.If not, you can download JAR in Maven Center Repository.
2. Define Resource
Wrap your code snippet via Sentinel API:
SphU.entry(resourceName). In below example, it isSystem.out.println("hello world");:So far the code modification is done. We’ve also provided annotation support module to define resource easier.
3. Define Rules
If we want to limit the access times of the resource, we can set rules to the resource. The following code defines a rule that limits access to the resource to 20 times per second at the maximum.
For more information, please refer to How To Use.
4. Check the Result
After running the demo for a while, you can see the following records in
~/logs/csp/${appName}-metrics.log.{date}(When using the defaultDateFileLogHandler).This shows that the demo can print “hello world” 20 times per second.
More examples and information can be found in the How To Use section.
The working principles of Sentinel can be found in How it works section.
Samples can be found in the sentinel-demo module.
5. Start Dashboard
Sentinel also provides a simple dashboard application, on which you can monitor the clients and configure the rules in real time.
For details please refer to Dashboard.
Trouble Shooting and Logs
Sentinel will generate logs for troubleshooting and real-time monitoring. All the information can be found in logs.
Bugs and Feedback
For bug report, questions and discussions please submit GitHub Issues.
Contact us via Gitter or Email.
Contributing
Contributions are always welcomed! Please refer to CONTRIBUTING for detailed guidelines.
You can start with the issues labeled with
good first issue.Enterprise Service
If you need Sentinel enterprise service support (Sentinel 企业版), or purchase cloud product services, you can join the discussion by the DingTalk group (34754806). It can also be directly activated and used through the microservice engine (MSE 微服务引擎) provided by Alibaba Cloud.
Credits
Thanks Guava, which provides some inspiration on rate limiting.
And thanks for all contributors of Sentinel!
Who is using
These are only part of the companies using Sentinel, for reference only. If you are using Sentinel, please add your company here to tell us your scenario to make Sentinel better :)