项目作者: esastack

项目描述 :
ESA ServiceKeeper is a lightweight service governance framework.
高级语言: Java
项目地址: git://github.com/esastack/esa-servicekeeper.git
创建时间: 2021-05-08T08:50:42Z
项目社区:https://github.com/esastack/esa-servicekeeper

开源协议:Apache License 2.0

下载


ServiceKeeper

Build
codecov
Maven Central
GitHub license

ServiceKeeper is a lightweight service governance framework that provides many awesome features such as rate limit, concurrent limit, circuit breaker,
retry and fallback… You can get start and customize the configuration easily with annotation.

Features

  • Concurrent Limit
  • Rate Limit
  • Circuit Breaker
  • Fallback
  • Manual fallback
  • Parameter-level concurrent limit, circuit breaker and such on

Quick Start

Step one: Add maven dependency

  1. <dependency>
  2. <groupId>io.esastack</groupId>
  3. <artifactId>servicekeeper-springboot-adapter</artifactId>
  4. <version>${servicekeeper.version}</version>
  5. </dependency>

Step two: Add customize configuration by annotation

  1. @SpringBootApplication
  2. public class AppMain {
  3. @Bean
  4. public HelloService helloService() {
  5. return new HelloService();
  6. }
  7. public static void main(String[] args) {
  8. ConfigurableApplicationContext ctx = SpringApplication.run(AppMain.class);
  9. final HelloService service = ctx.getBean(HelloService.class);
  10. int errorCount = 0;
  11. for (int i = 0 ; i < 20; i++) {
  12. try {
  13. service.hello();
  14. } catch (RateLimitOverflowException ex) {
  15. errorCount++;
  16. }
  17. }
  18. System.out.println("RateLimitOverflowException count: " + errorCount);
  19. ctx.close();
  20. }
  21. public class HelloService {
  22. @RateLimiter(limitForPeriod = 10)
  23. public String hello() {
  24. return "Hello World!";
  25. }
  26. }
  27. }

See more details in Reference Doc