seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 9.0KB

6 jaren geleden
6 jaren geleden
6 jaren geleden
6 jaren geleden
6 jaren geleden
6 jaren geleden
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <img src="https://user-images.githubusercontent.com/9434884/43697219-3cb4ef3a-9975-11e8-9a9c-73f4f537442d.png" alt="Sentinel Logo" width="50%">
  2. # Sentinel: The Sentinel of Your Microservices
  3. [![Travis Build Status](https://travis-ci.org/alibaba/Sentinel.svg?branch=master)](https://travis-ci.org/alibaba/Sentinel)
  4. [![Codecov](https://codecov.io/gh/alibaba/Sentinel/branch/master/graph/badge.svg)](https://codecov.io/gh/alibaba/Sentinel)
  5. [![Maven Central](https://img.shields.io/maven-central/v/com.alibaba.csp/sentinel-core.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:com.alibaba.csp%20AND%20a:sentinel-core)
  6. [![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
  7. [![Gitter](https://badges.gitter.im/alibaba/Sentinel.svg)](https://gitter.im/alibaba/Sentinel)
  8. ## Introduction
  9. As distributed systems become increasingly popular, the reliability between services is becoming more important than ever before.
  10. Sentinel takes "flow" as breakthrough point, and works on multiple fields including **flow control**, **circuit breaking** and **system adaptive protection**, to guarantee reliability of microservices.
  11. Sentinel has the following features:
  12. - **Rich applicable scenarios**: Sentinel has been wildly used in Alibaba, and has covered almost all the core-scenarios in Double-11 (11.11) Shopping Festivals in the past 10 years, such as “Second Kill” which needs to limit burst flow traffic to meet the system capacity, message peak clipping and valley fills, circuit breaking for unreliable downstream services, cluster flow control, etc.
  13. - **Real-time monitoring**: Sentinel also provides real-time monitoring ability. You can see the runtime information of a single machine in real-time, and the aggregated runtime info of a cluster with less than 500 nodes.
  14. - **Widespread open-source ecosystem**: Sentinel provides out-of-box integrations with commonly-used frameworks and libraries such as Spring Cloud, Dubbo and gRPC. You can easily use Sentinel by simply add the adapter dependency to your services.
  15. - **Various SPI extensions**: Sentinel provides easy-to-use SPI extension interfaces that allow you to quickly customize your logic, for example, custom rule management, adapting data sources, and so on.
  16. Features overview:
  17. ![features-of-sentinel](./doc/image/sentinel-features-overview-en.png)
  18. ## Documentation
  19. See the [中文文档](https://github.com/alibaba/Sentinel/wiki/%E4%BB%8B%E7%BB%8D) for document in Chinese.
  20. See the [Wiki](https://github.com/alibaba/Sentinel/wiki) for full documentation, examples, blog posts, operational details and other information.
  21. Sentinel provides integration modules for various open-source frameworks
  22. (e.g. Spring Cloud, Apache Dubbo, gRPC, Spring WebFlux, Reactor) and service mesh.
  23. You can refer to [the document](https://github.com/alibaba/Sentinel/wiki/Adapters-to-Popular-Framework) for more information.
  24. If you are using Sentinel, please [**leave a comment here**](https://github.com/alibaba/Sentinel/issues/18) to tell us your scenario to make Sentinel better.
  25. It's also encouraged to add the link of your blog post, tutorial, demo or customized components to [**Awesome Sentinel**](./doc/awesome-sentinel.md).
  26. ## Ecosystem Landscape
  27. ![ecosystem-landscape](./doc/image/sentinel-opensource-eco-landscape-en.png)
  28. ## Quick Start
  29. 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.
  30. ### 1. Add Dependency
  31. **Note:** Sentinel requires Java 7 or later. Java 8 is required if building the whole project or the dashboard.
  32. If your application is build in Maven, just add the following dependency in `pom.xml`.
  33. ```xml
  34. <!-- replace here with the latest version -->
  35. <dependency>
  36. <groupId>com.alibaba.csp</groupId>
  37. <artifactId>sentinel-core</artifactId>
  38. <version>1.7.1</version>
  39. </dependency>
  40. ```
  41. If not, you can download JAR in [Maven Center Repository](https://mvnrepository.com/artifact/com.alibaba.csp/sentinel-core).
  42. ### 2. Define Resource
  43. Wrap your code snippet via Sentinel API: `SphU.entry(resourceName)`.
  44. In below example, it is `System.out.println("hello world");`:
  45. ```java
  46. try (Entry entry = SphU.entry("HelloWorld")) {
  47. // Your business logic here.
  48. System.out.println("hello world");
  49. } catch (BlockException e) {
  50. // Handle rejected request.
  51. e.printStackTrace();
  52. }
  53. // try-with-resources auto exit
  54. ```
  55. So far the code modification is done. We also provide [annotation support module](https://github.com/alibaba/Sentinel/blob/master/sentinel-extension/sentinel-annotation-aspectj/README.md) to define resource easier.
  56. ### 3. Define Rules
  57. If we want to limit the access times of the resource, we can **set rules to the resource**.
  58. The following code defines a rule that limits access to the resource to 20 times per second at the maximum.
  59. ```java
  60. List<FlowRule> rules = new ArrayList<>();
  61. FlowRule rule = new FlowRule();
  62. rule.setResource("HelloWorld");
  63. // set limit qps to 20
  64. rule.setCount(20);
  65. rule.setGrade(RuleConstant.FLOW_GRADE_QPS);
  66. rules.add(rule);
  67. FlowRuleManager.loadRules(rules);
  68. ```
  69. For more information, please refer to [How To Use](https://github.com/alibaba/Sentinel/wiki/How-to-Use).
  70. ### 4. Check the Result
  71. After running the demo for a while, you can see the following records in `~/logs/csp/${appName}-metrics.log.{date}` (When using the default `DateFileLogHandler`).
  72. ```
  73. |--timestamp-|------date time----|-resource-|p |block|s |e|rt |occupied
  74. 1529998904000|2018-06-26 15:41:44|HelloWorld|20|0 |20|0|0 |0
  75. 1529998905000|2018-06-26 15:41:45|HelloWorld|20|5579 |20|0|728 |0
  76. 1529998906000|2018-06-26 15:41:46|HelloWorld|20|15698|20|0|0 |0
  77. 1529998907000|2018-06-26 15:41:47|HelloWorld|20|19262|20|0|0 |0
  78. 1529998908000|2018-06-26 15:41:48|HelloWorld|20|19502|20|0|0 |0
  79. 1529998909000|2018-06-26 15:41:49|HelloWorld|20|18386|20|0|0 |0
  80. p stands for incoming request, block for blocked by rules, success for success handled by Sentinel, e for exception count, rt for average response time (ms), occupied stands for occupiedPassQps since 1.5.0 which enable us booking more than 1 shot when entering.
  81. ```
  82. This shows that the demo can print "hello world" 20 times per second.
  83. More examples and information can be found in the [How To Use](https://github.com/alibaba/Sentinel/wiki/How-to-Use) section.
  84. The working principles of Sentinel can be found in [How it works](https://github.com/alibaba/Sentinel/wiki/How-it-works) section.
  85. Samples can be found in the [sentinel-demo](https://github.com/alibaba/Sentinel/tree/master/sentinel-demo) module.
  86. ### 5. Start Dashboard
  87. Sentinel also provides a simple dashboard application, on which you can monitor the clients and configure the rules in real time.
  88. ![dashboard](https://user-images.githubusercontent.com/9434884/55449295-84866d80-55fd-11e9-94e5-d3441f4a2b63.png)
  89. For details please refer to [Dashboard](https://github.com/alibaba/Sentinel/wiki/Dashboard).
  90. ## Trouble Shooting and Logs
  91. Sentinel will generate logs for troubleshooting and real-time monitoring.
  92. All the information can be found in [logs](https://github.com/alibaba/Sentinel/wiki/Logs).
  93. ## Bugs and Feedback
  94. For bug report, questions and discussions please submit [GitHub Issues](https://github.com/alibaba/sentinel/issues).
  95. Contact us: sentinel@linux.alibaba.com
  96. ## Contributing
  97. Contributions are always welcomed! Please see [CONTRIBUTING](./CONTRIBUTING.md) for detailed guidelines.
  98. You can start with the issues labeled with [`good first issue`](https://github.com/alibaba/Sentinel/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
  99. ## Credits
  100. Thanks [Guava](https://github.com/google/guava), which provides some inspiration on rate limiting.
  101. And thanks for all [contributors](https://github.com/alibaba/Sentinel/graphs/contributors) of Sentinel!
  102. ## Who is using
  103. These are only part of the companies using Sentinel, for reference only. If you are using Sentinel, please [add your company here](https://github.com/alibaba/Sentinel/issues/18) to tell us your scenario to make Sentinel better :)
  104. ![Alibaba Group](https://docs.alibabagroup.com/assets2/images/en/global/logo_header.png)
  105. ![Taiping Renshou](http://www.cntaiping.com/tplresource/cms/www/taiping/img/home_new/tp_logo_img.png)
  106. ![Shunfeng Technology](https://user-images.githubusercontent.com/9434884/48463502-2f48eb80-e817-11e8-984f-2f9b1b789e2d.png)
  107. ![Mandao](https://user-images.githubusercontent.com/9434884/48463559-6cad7900-e817-11e8-87e4-42952b074837.png)
  108. ![每日优鲜](https://home.missfresh.cn/statics/img/logo.png)
  109. ![二维火](https://user-images.githubusercontent.com/9434884/49358468-bc43de00-f70d-11e8-97fe-0bf05865f29f.png)
  110. ![文轩在线](http://static.winxuancdn.com/css/v2/images/logo.png)
  111. ![客如云](https://www.keruyun.com/static/krynew/images/logo.png)
  112. ![亲宝宝](https://stlib.qbb6.com/wclt/img/home_hd/version1/title_logo.png)
  113. ![杭州光云科技](https://www.raycloud.com/images/logo.png)
  114. ![金汇金融](https://res.jinhui365.com/r/images/logo2.png?v=1.527)
  115. ![闪电购](http://cdn.52shangou.com/shandianbang/official-source/3.1.1/build/images/logo.png)
  116. ![拼多多](http://cdn.pinduoduo.com/assets/img/pdd_logo_v3.png)