Resilience4j 版本:1.4.0 Java 版本:11
我想实现这里提到的确切内容:https ://resilience4j.readme.io/docs/retry#use-a-custom-intervalfunction
如果您不想在重试尝试之间使用固定的等待时间,您可以配置一个 IntervalFunction 用于计算每次尝试的等待时间。
我们需要在 yml 文件中配置它吗?还是我们需要覆盖 IntervalFunction ?我需要以指数方式重试 3 次,每次重试都有不同的等待时间,例如:第一次重试应该在 30 秒后,第二次重试应该在 45 分钟后,第三次重试应该在 2 小时后。在哪里配置这些时间戳?我是新手,请多多指教。
服务等级:
@Retry(name = "retryService1", fallbackMethod = "retryfallback")
@Override
public String customerRegistration(DTO dto) throws ExecutionException, InterruptedException {
String response = restTemplate("/register/customer", dto, String.class); // this throws 500 error code
return response ;
}
public String retryfallback(DTO dto, Throwable t) {
logger.error("Inside retryfallback, cause - {} {}", t.toString(), new Date());
return "Inside retryfallback method. Some error occurred while calling service for customer registration";
}
应用程序.yml
resilience4j.retry.instances:
retryService1:
maxRetryAttempts: 3
waitDuration: 10s
enableExponentialBackoff: true
exponentialBackoffMultiplier: 2
谢谢。