-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathExponentialBackoffRetry.java
46 lines (37 loc) · 1.14 KB
/
ExponentialBackoffRetry.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package tech.ydb.common.retry;
import java.util.concurrent.ThreadLocalRandom;
/**
*
* @author Aleksandr Gorshenin
*/
public class ExponentialBackoffRetry implements RetryPolicy {
private final long backoffMs;
private final int backoffCeiling;
public ExponentialBackoffRetry(long backoffMs, int backoffCeiling) {
this.backoffMs = backoffMs;
this.backoffCeiling = backoffCeiling;
}
protected long backoffTimeMillis(int retryNumber) {
int slots = 1 << Math.min(retryNumber, backoffCeiling);
long delay = backoffMs * slots;
return delay + ThreadLocalRandom.current().nextLong(delay);
}
@Override
public long nextRetryMs(int retryCount, long elapsedTimeMs) {
return backoffTimeMillis(retryCount);
}
/**
* Return current base of backoff delays
* @return backoff base duration in milliseconds
*/
public long getBackoffMillis() {
return backoffMs;
}
/**
* Return current maximal level of backoff exponent
* @return maximal level of backoff exponent
*/
public int getBackoffCeiling() {
return backoffCeiling;
}
}