-
Notifications
You must be signed in to change notification settings - Fork 8k
How to Use
To use Sentinel, you only need to complete 2 steps:
- Define resources
- Configure rules
These two steps don’t have to be synchronized. As long as the resources are defined, you can add rules as needed. Multiple rules can be applied to the same resource simultaneously.
Sentinel provides integrations with popular open-source frameworks and libraries as well (e.g. Spring Cloud, gRPC, Dubbo, Spring WebFlux, Reactor). After introducing these integrations, services and methods provided by these frameworks are defined as resources by default.
You can use one of the following approaches to define resources.
Since 1.5.0 we can leverage try-with-resources feature of JDK 1.7:
try (Entry entry = SphU.entry("resourceName")) {
// do something here (your business logic)...
} catch (BlockException ex) {
// Here to handle the rejection
}
Before 1.5.0:
Entry entry = null;
try {
entry = SphU.entry(resourceName);
// Your business logic here.
} catch (BlockException ex) {
// The invocation is rejected.
// Here to handle the block exception
} finally {
// DO NOT forget to exit the entry!
if (entry != null) {
entry.exit(); // Mark as completed.
}
}
if (SphO.entry(resourceName)) {
try {
// Your code logic here.
} finally {
SphO.exit();
}
} else {
// Resource is rejected.
// Your logic to handle blocking here.
}
}
Sentinel supports defining resources with @SentinelResource
annotation. See annotation support for guidelines.
You can check whether an exception is caused by Sentinel's flow control (BlockException
) via:
BlockException.isBlockException(Throwable t);
For details, please refer to Adapters to popular frameworks.
Here is a simple example:
try {
AsyncEntry entry = SphU.asyncEntry(resourceName);
// Asynchronous invocation.
doAsync(userId, result -> {
try {
// Handle your asynchronous result here.
} finally {
// Exit after callback completed.
entry.exit();
}
});
} catch (BlockException ex) {
// Request blocked.
// Handle the exception (e.g. retry or fallback).
}
For more advanced usage, you can refer to AsyncEntryDemo.
Sentinel provides APIs for you to modify your rules, which can be integrated with various kinds of rule repository, such as configuration server and NoSQL.
There are 4 types of rules:flow control rules, degrade rules, system protection rules and authority rules.
key fields:
Field | Description | Default value |
---|---|---|
resource | resource name | |
count | threshold | |
grade | flow control metric (QPS or concurrent thread count) | QPS |
limitApp | refer to specified caller | default |
strategy | by resource itself or other resource (refResource ),or entry (refResource) |
resource itself |
controlBehavior | traffic shaping control behavior (reject directly,queue,slow start up) | reject directly |
Multiple rules can be applied to the same resource.
FlowRuleManager.loadRules()
can be used to configure flow control rules.
private static void initFlowQpsRule() {
List<FlowRule> rules = new ArrayList<FlowRule>();
FlowRule rule1 = new FlowRule();
rule1.setResource(KEY);
// set limit qps to 20
rule1.setCount(20);
rule1.setGrade(RuleConstant.FLOW_GRADE_QPS);
rule1.setLimitApp("default");
rules.add(rule1);
FlowRuleManager.loadRules(rules);
}
For more details please refer to Flow Control.
Key fields:
Field | Description | Default value |
---|---|---|
resource | resource name | |
count | threshold | |
grade | circuit breaking strategy (slow request ratio/error ratio/error count) | slow request ratio |
timeWindow | circuit breaker recovery timeout (in second) | |
minRequestAmount | the minimum number of calls that are required (per sliding window period) before the circuit breaker can calculate the ratio or total amount (since 1.7.0) | 5 |
statIntervalMs | sliding window period (since 1.8.0) | 1000 |
slowRatioThreshold | threshold of the slow ratio, only available for slow ratio strategy (since 1.8.0) |
Multiple rules can be applied to the same resource.
DegradeRuleManager.loadRules()
can be used to configure degrade rules.
private static void initDegradeRule() {
List<DegradeRule> rules = new ArrayList<DegradeRule>();
DegradeRule rule = new DegradeRule();
rule.setResource(KEY);
// set threshold rt, 10 ms
rule.setCount(10);
rule.setGrade(RuleConstant.DEGRADE_GRADE_RT);
rule.setTimeWindow(10);
rules.add(rule);
DegradeRuleManager.loadRules(rules);
}
For more details, please refer to Circuit Breaking.
Key factors
Field | Description | Default value |
---|---|---|
highestSystemLoad | threshold of Load1 | -1(not valid) |
avgRt | average response time | -1(not valid) |
maxThread | concurrent thread count | -1(not valid) |
SystemRuleManager.loadRules()
can be used to configure system protection rules.
private void initSystemProtectionRule() {
List<SystemRule> rules = new ArrayList<>();
SystemRule rule = new SystemRule();
rule.setHighestSystemLoad(10);
rules.add(rule);
SystemRuleManager.loadRules(rules);
}
For more details, please refer to Adaptive System Protection.
You can also use HTTP API to configure, query and update Sentinel rules.
To use these API, make sure that the following library has been introduced:
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-transport-simple-http</artifactId>
<version>x.y.z</version>
</dependency>
API:
curl https://localhost:8719/getRules?type=<XXXX>
-
type=flow
for flow rules; -
type=degrade
for circuit breaking rules; -
type=system
for system protection rules.
Rules will be returned in JSON format.
Note: Only for test, do not use in production.
curl https://localhost:8719/setRules?type=<XXXX>&data=<DATA>
DataSource is designed to integrate rules to customized repositories and make rules persistent.
For more details, you can refer to Dynamic Rule Configuration.
-
文档
-
Documents
- Read Me
- Introduction
- How to Use
- How it Works
- Flow Control
- Parameter Flow Control
- Cluster Flow Control
- API Gateway Flow Control
- Circuit Breaking
- Adaptive System Protection
- Metrics
- General Configuration
- Dynamic Rule Configuration
- Dashboard
- Integrations with open-source frameworks
- Contribution Guideline