我希望我的RetryTemplate延迟300000毫秒 - 每次尝试5分钟乘以1.1。但是,它只会将下一次尝试延迟30秒。这是一个简化的例子:
@Service
public class Foo {
private static final Logger log = Logger.getLogger(Foo.class);
@Retryable(value = Exception.class,
backoff = @Backoff(delay = 300000, multiplier = 1.1))
public void run() throws Exception {
new Bar().run();
}
@Recover
void recover(Exception e) {
log.error("e", e);
}
}
public class Bar {
private static final Logger log = Logger.getLogger(Bar.class);
public void run() throws Exception{
log.info("hier");
throw new Exception();
}
}
@Bean
CommandLineRunner runner() {
return (String[] a) -> {
scheduler.schedule(() -> {
try {
retryTemplate.execute(arg -> {
foo.run();
return null;
});
} catch (Exception e) {
}
}, 1 , TimeUnit.SECONDS);
};
}
日志是在以下时间制作的:
2017-03-17 13:25:08.439 INFO 6500 --- [
2017-03-17 13:25:38.439 INFO 6500 --- [
2017-03-17 13:26:08.440 INFO 6500 --- [
2017-03-17 13:26:08.444 ERROR 6500 --- [
如果我在使用或不使用调度程序的情况下使用它(因为原始代码需要初始延迟,因此无效)。
现在,如果我向@Backoff
@Backoff(delay = 300000, multiplier = 1.1, maxDelay = 1000000000)
它完全符合预期 - 5分钟后射击,然后5 * 1.1分钟后依此类推。然而,读取@Backoff的javadoc - maxDelay,它表示默认为0,如果小于延迟则被忽略
/**
* The maximimum wait (in milliseconds) between retries. If less than the
* {@link #delay()} then ignored.
*
* @return the maximum delay between retries (default 0 = ignored)
*/
long maxDelay() default 0;
有什么我不明白的吗?似乎maxDelay默认为30秒,这与javadoc解释的完全不同。
使用过的弹簧重试版本是1.1.3
答案 0 :(得分:1)
这是javadocs中的一个错误 - 请参阅代码here。
policy.setMaxInterval(max > min ? max : ExponentialBackOffPolicy.DEFAULT_MAX_INTERVAL);
和
public static final long DEFAULT_MAX_INTERVAL = 30000L;