seninel部署
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Eric Zhao d85c385caa Add awesome-sentinel and README to doc před 5 roky
.circleci CI: make Circle CI to linter repo details (#344) před 5 roky
.github Update documentation and issue template před 6 roky
doc Add awesome-sentinel and README to doc před 5 roky
sentinel-adapter Bump version to 1.4.1-SNAPSHOT před 6 roky
sentinel-benchmark Bump version to 1.4.1-SNAPSHOT před 6 roky
sentinel-cluster Update constructor of Sentinel cluster server statistic component před 6 roky
sentinel-core Add sampleCount and windowInterval item to cluster config of flow rule and param rule před 6 roky
sentinel-dashboard Translate some javadoc to English in MetricFetcher (#338) před 5 roky
sentinel-demo Bump version to 1.4.1-SNAPSHOT před 6 roky
sentinel-extension Upgrade nacos-client version and construct NacosDataSource by Properties (#348) před 5 roky
sentinel-transport Add some unit test for sentinel-transport-netty-http module (#321) před 5 roky
.codecov.yml Update cluster related command APIs and some enhancement and fix for cluster module před 6 roky
.gitignore Welcome to the world, Sentinel před 6 roky
.travis.yml Update .travis.yml and dependencies to support build with JDK 11 před 6 roky
CODE_OF_CONDUCT.md Welcome to the world, Sentinel před 6 roky
CONTRIBUTING.md Welcome to the world, Sentinel před 6 roky
LICENSE Welcome to the world, Sentinel před 6 roky
README.md Update README.md před 6 roky
pom.xml Bump version to 1.4.1-SNAPSHOT před 6 roky

README.md

Sentinel Logo

Sentinel: Sentinel of Your Application

Travis Build Status Codecov Maven Central License Gitter

What Does It Do?

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, circuit breaking and system adaptive protection, to guarantee service reliability.

Sentinel has the following features:

  • 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.

  • 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.

  • 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.

  • 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.

Documentation

See the 中文文档 for Chinese readme.

See the Wiki for full documentation, examples, blog posts, operational details and other information.

If you are using Sentinel, please leave a comment here to tell us your scenario to make Sentinel better :-)

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 Java 6 or later.

If your application is build in maven, just add the following code in pom.xml.

<dependency>
    <groupId>com.alibaba.csp</groupId>
    <artifactId>sentinel-core</artifactId>
    <version>x.y.z</version>
</dependency>

If not, you can download JAR in Maven Center Repository.

2. Define Resource

Wrap code snippet via Sentinel API: SphU.entry("resourceName") and entry.exit(). In below example, it is System.out.println("hello world");:

Entry entry = null;

try {   
  entry = SphU.entry("HelloWorld");
  
  // BIZ logic being protected
  System.out.println("hello world");
} catch (BlockException e) {
  // handle block logic
} finally {
  // make sure that the exit() logic is called
  if (entry != null) {
    entry.exit();
  }
}

So far the code modification is done. We also provide annotation support module to define resource easier.

3. Define Rules

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.

List<FlowRule> rules = new ArrayList<>();
FlowRule rule = new FlowRule();
rule.setResource("HelloWorld");
// set limit qps to 20
rule.setCount(20);
rule.setGrade(RuleConstant.FLOW_GRADE_QPS);
rules.add(rule);
FlowRuleManager.loadRules(rules);

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.

|--timestamp-|------date time----|--resource-|p |block|s |e|rt
1529998904000|2018-06-26 15:41:44|hello world|20|0    |20|0|0
1529998905000|2018-06-26 15:41:45|hello world|20|5579 |20|0|728
1529998906000|2018-06-26 15:41:46|hello world|20|15698|20|0|0
1529998907000|2018-06-26 15:41:47|hello world|20|19262|20|0|0
1529998908000|2018-06-26 15:41:48|hello world|20|19502|20|0|0
1529998909000|2018-06-26 15:41:49|hello world|20|18386|20|0|0

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)

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. All the information can be found in logs.

Bugs and Feedback

For bug report, questions and discussions please submit GitHub Issues.

Contact us: sentinel@linux.alibaba.com

Contributing

Contributions are always welcomed! Please see CONTRIBUTING for detailed guidelines.

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 :)

Alibaba Group Taiping Renshou Shunfeng Technology Mandao 每日优鲜 二维火 文轩在线 客如云 亲宝宝 杭州光云科技 金汇金融 Vivo 闪电购 拼多多