Commit Graph

629 Commits

Author SHA1 Message Date
Eric Zhao e58267012d Bump version to 1.8.1-SNAPSHOT
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-21 14:36:49 +08:00
Eric Zhao 5e26ccc2c9 Update README.md
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-20 19:50:54 +08:00
Eric Zhao d17bf8c7cc Bump version to 1.8.0
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-20 19:47:20 +08:00
Jason Joo 656e3de2f9
Improve compatibility for dispatched servlet request in Spring Web adapter (#1681) 2020-08-20 11:25:03 +08:00
Eric Zhao 5905874dd8 Fix NPE bug and improve default fallback in Dubbo 2.7.x adapter
- Fix NPE bug in consumer filter (when non-biz error occurred)
- Improve default fallback in Dubbo 2.7.x adapter: convert the BlockException to a simple RuntimeException (with necessary message)
- Polish code and comments

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-20 10:22:07 +08:00
Eric Zhao 125996d4d1 Add RuntimeException converting method in BlockException and polish logic for validation
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-20 10:22:07 +08:00
liqiangz 113afab380
adapter: Add test cases for Spring WebFlux HandlerFunction (#1678) 2020-08-20 10:09:43 +08:00
cdfive a1ce97677c
webmvc-adapter: improve to avoid ErrorEntryFreeException (#1533)
If entry already exists in request just skip creation.
2020-08-19 23:55:11 +08:00
Eric Zhao bcbc19c772 Polish code and README.md of sentinel-datasource-eureka
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-19 10:46:43 +08:00
M4Y 197b7db440
Support customized origin parser in Apache Dubbo 2.7.x adapter and unify config (#1617)
* Support customized origin parser in Apache Dubbo 2.7.x adapter
* Unify Dubbo callback registry (for fallback and origin parser) into DubboAdapterGlobalConfig
* Polish default fallback implementation (wrap exception with RpcResult rather than directly throw it out)
2020-08-19 10:31:40 +08:00
Eric Zhao a88288715a Refactor extended MetricExtension interface (matching events in Sentinel)
- Unify the extended interface as a few event handlers: onPass, onBlocked, onComplete and onError
- Polish related code

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-19 10:23:20 +08:00
Eric Zhao 58ff01e39b
Polish Dubbo 2.6.x adapter and unify callback registry into DubboAdapterGlobalConfig (#1572)
* Unify Dubbo callback registry (for fallback and origin parser) into DubboAdapterGlobalConfig
* Polish default fallback implementation (wrap exception with RpcResult rather than directly throw it out)

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-19 10:09:24 +08:00
Eric Zhao 5334f51d21 dashboard: Refactor degrade service/controller and adapt to new features
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-18 20:34:03 +08:00
Bill Yip 8643dac943
Add extended interface for metric extension hook to support distinguishing traffic type (#1665)
- Add EntryType args to all hook methods
2020-08-18 16:55:30 +08:00
Eric Zhao dae4621e6e Refactor exit handler mechanism of Entry
- Rename: whenComplete -> whenTerminate
- Execute the exit handler directly after the onExit hook of all slots

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-18 16:42:58 +08:00
Eric Zhao 55e038cc33 Polish CircuitBreaker interface and update comments
- Only carry context in tryPass/onComplete method (this might be generic in upcoming versions)

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-18 15:31:35 +08:00
Jason Joo ee2772b513
Fix the bug of circuit breaker half-open state transformation when request is blocked by upcoming rules (#1645)
* Refactor the workflow to fix the bug that circuit breaker may remain half-open state forever when the request is blocked by upcoming rules: revert the state change in exit handler (as a temporary workaround)
* Add exit handler in Entry as a per-invocation hook.
2020-08-18 11:04:48 +08:00
M4Y 10c92e69a2
Optimize the order of slots in ProcessorSlot SPI config (#1649) 2020-08-17 10:38:24 +08:00
cj dbbed35cc4
Remove unused code in TokenServerHandler#channelActive (#1667)
Signed-off-by: cj <power4j@outlook.com>
2020-08-13 14:47:57 +08:00
Peine c5da3faad9
Polish boolean checking in test cases and dashboard (#1664) 2020-08-12 20:34:22 +08:00
ZhiQiang Gu b9b1e8a481
Polish cluster flow control demo: add port in Nacos address (#1655)
Signed-off-by: yunfeiyanggzq <yunfeiyang@buaa.edu.cn>
2020-08-12 15:28:06 +08:00
Eric Zhao a18ef7cbfa Remove deprecated passCheck() in Rule and polish interface
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-05 10:42:15 +08:00
Eric Zhao a5fe23ad63 test: Update test cases with new degrade mechanism in sentinel-demo-quarkus
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-08-03 13:48:43 +08:00
Eric Zhao 19db20f00d Update demo for circuit breaking (DegradeRule)
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-07-30 19:00:13 +08:00
Eric Zhao 07b811196b Update test cases for circuit breaking
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-07-30 19:00:13 +08:00
Eric Zhao c0c27c86b7 Refactor degrade hierarchy with new circuit breaker mechanism and improve strategy
* Add `CircuitBreaker` abstraction (with half-open state) and add circuit breaker state change event observer support.
* Improve circuit breaking strategy (avg RT → slow request ratio) and make statistics of each rule dependent (to support arbitrary statistic interval).
* Add simple "trial" mechanism (aka. half-open).
* Refactor mechanism of metric recording and state change handling for circuit breakers: record RT and error when requests have completed (i.e. `onExit`, based on #1420).

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-07-30 19:00:13 +08:00
ZhiQiang Gu 17c3ff7a44
test: Add unit test for sentinel-cluster-server and polish code (#1529)
Signed-off-by: yunfeiyanggzq <yunfeiyang@buaa.edu.cn>
2020-07-23 10:15:01 +08:00
Eric Zhao 86f8bb7b38 Refactor config mechanism for OkHttp adapter and polish related code
- One config per interceptor instead of the global config
- Polish document and demo

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-07-22 11:04:48 +08:00
ZhiQiang Gu c7949f5f4e
Fix incorrect protocol description in FlowRequestData writer/decoder (#1607)
Signed-off-by: yunfeiyanggzq <yunfeiyang@buaa.edu.cn>
2020-07-16 15:48:18 +08:00
HupJ ccd029ed0a
doc: Fix mistakes in README.md of sentinel-zuul-adapter (#1593) 2020-07-11 10:58:32 +08:00
于玉桔 38911c5ec1
Adapter: Support Apache HttpClient (#1455)
Introduce support through a customized client builder `SentinelApacheHttpClientBuilder`.
2020-07-09 14:51:39 +08:00
HupJ 4f31b2c61b
Add explicit null checking for charset in SimpleHttpClient#encodeRequestParams (#1589) 2020-07-07 09:43:46 +08:00
ZhiQiang Gu 5e1a443663
demo: Update slot chain SPI demo (#1581)
Signed-off-by: yunfeiyanggzq <yunfeiyang@buaa.edu.cn>
2020-07-06 13:46:04 +08:00
Bo 57f9bc7a6a
Upgrade nacos-client version to 1.3.0 in sentinel-datasource-nacos (#1576) 2020-07-01 09:53:49 +08:00
pleasecheckhere2016 7e354016c7
Add Eureka data-source extension (#1502) 2020-06-29 15:44:26 +08:00
iron_city d8714caceb
Support customized origin parser in legacy Dubbo 2.6.x adapter (#1555) 2020-06-28 11:48:35 +08:00
Eric Zhao 07df2818fe Polish document and rearrange package for Quarkus and JAX-RS adapter
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-06-17 11:10:40 +08:00
seasidesky d59d2d3071
Add annotation CDI demo and Quarkus adapter demo (#1543) 2020-06-16 12:01:52 +08:00
xiby 9b46e62665
Add file.encoding JVM args in maven-surefire-plugin to avoid charset problem (#1550) 2020-06-15 23:14:48 +08:00
yangy ff0e53f7c6
Upgrade fastjson to 1.2.71 (#1545) 2020-06-15 21:09:51 +08:00
Eric Zhao ba3469b0ac Polish document and code of Sentinel annotation CDI extension
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-06-15 20:12:37 +08:00
seasidesky fda21de748
Add Sentinel annotation and JAX-RS plugins for Quarkus (#1542)
* Add sentinel-quarkus-adapter module, which provides sentinel-annotation-quarkus-adapter and sentinel-jax-rs-quarkus-adapter to adapt sentinel-annotation-cdi-interceptor and sentinel-jax-rs-adapter for Quarkus. It also provides sentinel-native-image-quarkus-adapter to support running Sentinel with Quarkus in native image mode.
2020-06-15 10:21:21 +08:00
seasidesky 7b53b61373
Add annotation extension for Java EE CDI (#1541) 2020-06-13 14:06:14 +08:00
Eric Zhao 728e2b1a2e Polish sentinel-opensource-eco-landscape-en.png
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
2020-06-12 10:14:37 +08:00
wavesZh f1b63315c1
Improve consumer filter of Dubbo 2.6.x and 2.7.x adapter (#1532)
* entry and exit with params in consumer filter
2020-06-11 15:51:33 +08:00
ZhiQiang Gu a1e3715db1
Add unit test for cluster/FlowResponseDataDecoder (#1514)
Signed-off-by: yunfeiyanggzq <yunfeiyang@buaa.edu.cn>
2020-06-11 15:38:32 +08:00
yangy 1a97226851
Polish RocketMQ PullConsumerDemo to make code clear (#1528) 2020-06-08 11:06:42 +08:00
Lin.Liang 5d439adf60
Fix sentinel-apache-dubbo-adapter full GC bug (#1431) 2020-06-04 20:30:56 +08:00
ZhiQiang Gu bd29e046e1
Add unit test for logging/TokenBucket (#1504)
Signed-off-by: yunfeiyanggzq <yunfeiyang@buaa.edu.cn>
2020-05-29 15:57:38 +08:00
于玉桔 6b86721b36
Support setting class-level defaultFallback for annotation extension (#1493) 2020-05-29 13:49:00 +08:00