seninel部署
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 6 Jahren
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <img src="https://user-images.githubusercontent.com/9434884/43697219-3cb4ef3a-9975-11e8-9a9c-73f4f537442d.png" alt="Sentinel Logo" height="50%" width="50%">
  2. # Sentinel: Sentinel of Your Application
  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. ## What Does It Do?
  9. As distributed systems become increasingly popular, the stability between services is becoming more important than ever before. Sentinel takes "flow" as breakthrough point, and works on multiple fields including **flow control**, **concurrency**, **circuit breaking** and **load protection**, to protect service stability.
  10. Sentinel has the following features:
  11. * **Rich applicable scenarios**:
  12. Sentinel has been wildly used in Alibaba, and has covered almost all the core-scenarios in Double-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, degrading unreliable downstream applications, etc.
  13. * **Integrated monitor module**:
  14. Sentinel also provides real-time monitoring function. You can see the runtime information of a single machine in real-time, and the summary runtime info of a cluster with less than 500 nodes.
  15. * **Easy extension point**:
  16. Sentinel provides easy-to-use extension points that allow you to quickly customize your logic, for example, custom rule management, adapting data sources, and so on.
  17. ## Documentation
  18. See the [中文文档](https://github.com/alibaba/Sentinel/wiki/%E4%BB%8B%E7%BB%8D) for Chinese readme.
  19. See the [Wiki](https://github.com/alibaba/Sentinel/wiki) for full documentation, examples, operational details and other information.
  20. See the [Javadoc](https://github.com/alibaba/Sentinel/tree/master/doc) for the API.
  21. **If you are using Sentinel, please [leave a comment here](https://github.com/alibaba/Sentinel/issues/18) to tell us your use scenario to make Sentinel better :-)**
  22. ## Quick Start
  23. 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.
  24. ### 1.Download Library
  25. **Note:** Sentinel requires Java 6 or later.
  26. If your application is build in maven, just add the following code in pom.xml.
  27. ```xml
  28. <dependency>
  29. <groupId>com.alibaba.csp</groupId>
  30. <artifactId>sentinel-core</artifactId>
  31. <version>x.y.z</version>
  32. </dependency>
  33. ```
  34. If not, you can download JAR in [Maven Center Repository](https://mvnrepository.com/artifact/com.alibaba.csp/sentinel-core).
  35. ### 2.Define Resource
  36. Wrap code snippet via Sentinel API: `SphU.entry("RESOURCENAME")` and `entry.exit()`. In below example, it is `System.out.println("hello world");`:
  37. ```java
  38. Entry entry = null;
  39. try {
  40. entry = SphU.entry("HelloWorld");
  41. // BIZ logic being protected
  42. System.out.println("hello world");
  43. } catch (BlockException e) {
  44. // handle block logic
  45. } finally {
  46. // make sure that the exit() logic is called
  47. if (entry != null) {
  48. entry.exit();
  49. }
  50. }
  51. ```
  52. So far the code modification is done.
  53. ### 3.Define Rules
  54. If we want to limit the access times of the resource, we can define rules. The following code defines a rule that limits access to the reource to 20 times per second at the maximum.
  55. ```java
  56. List<FlowRule> rules = new ArrayList<FlowRule>();
  57. FlowRule rule = new FlowRule();
  58. rule.setResource("HelloWorld");
  59. // set limit qps to 20
  60. rule.setCount(20);
  61. rule.setGrade(RuleConstant.FLOW_GRADE_QPS);
  62. rules.add(rule);
  63. FlowRuleManager.loadRules(rules);
  64. ```
  65. ### 4. Check the Result
  66. After running the demo for a while, you can see the following records in `~/logs/csp/${appName}-metrics.log.xxx`.
  67. ```
  68. |--timestamp-|------date time----|--resource-|p |block|s |e|rt
  69. 1529998904000|2018-06-26 15:41:44|hello world|20|0 |20|0|0
  70. 1529998905000|2018-06-26 15:41:45|hello world|20|5579 |20|0|728
  71. 1529998906000|2018-06-26 15:41:46|hello world|20|15698|20|0|0
  72. 1529998907000|2018-06-26 15:41:47|hello world|20|19262|20|0|0
  73. 1529998908000|2018-06-26 15:41:48|hello world|20|19502|20|0|0
  74. 1529998909000|2018-06-26 15:41:49|hello world|20|18386|20|0|0
  75. p stands for incoming request, block for intercepted by rules, success for success handled, e for exception, rt for average response time (ms)
  76. ```
  77. This shows that the demo can print "hello world" 20 times per second.
  78. More examples and information can be found in the [How To Use](https://github.com/alibaba/Sentinel/wiki/How-to-Use) section.
  79. The working principles of Sentinel can be found in [How it works](https://github.com/alibaba/Sentinel/wiki/How-it-works) section.
  80. Samples can be found in the [sentinel-demo](https://github.com/alibaba/Sentinel/tree/master/sentinel-demo) module.
  81. ### 5.Start Dashboard
  82. Sentinel also provides a simple dashboard application, on which you can monitor the clients and configure the rules in real time.
  83. For details please refer to [Dashboard](https://github.com/alibaba/Sentinel/wiki/Dashboard).
  84. ## Trouble Shooting and Logs
  85. Sentinel will generate logs for troubleshooting. All the information can be found in [logs](https://github.com/alibaba/Sentinel/wiki/Logs).
  86. ## Bugs and Feedback
  87. For bug report, questions and discussions please submit [GitHub Issues](https://github.com/alibaba/sentinel/issues).
  88. Contact us: sentinel@linux.alibaba.com
  89. ## Contributing
  90. Contributions are always welcomed! Please see [CONTRIBUTING](./CONTRIBUTING.md) for detailed guidelines.