backoff/backoff.go

55 lines
1.3 KiB
Go
Raw Normal View History

2015-02-28 09:21:18 +03:00
package backoff
import (
"math"
"math/rand"
2015-02-28 09:21:18 +03:00
"time"
)
2015-03-03 01:01:21 +03:00
//Backoff is a time.Duration counter. It starts at Min.
//After every call to Duration() it is multiplied by Factor.
//It is capped at Max. It returns to Min on every call to Reset().
//Used in conjunction with the time package.
2015-02-28 09:21:18 +03:00
type Backoff struct {
2015-03-03 01:01:21 +03:00
//Factor is the multiplying factor for each increment step
2015-03-03 18:44:54 +03:00
attempts, Factor float64
//Jitter eases contention by randomizing backoff steps
Jitter bool
2015-03-03 01:01:21 +03:00
//Min and Max are the minimum and maximum values of the counter
2015-03-03 18:44:54 +03:00
Min, Max time.Duration
2015-02-28 09:21:18 +03:00
}
2015-03-03 01:01:21 +03:00
//Returns the current value of the counter and then
//multiplies it Factor
2015-02-28 09:21:18 +03:00
func (b *Backoff) Duration() time.Duration {
2015-03-03 01:01:21 +03:00
//Zero-values are nonsensical, so we use
//them to apply defaults
2015-02-28 09:21:18 +03:00
if b.Min == 0 {
b.Min = 100 * time.Millisecond
}
if b.Max == 0 {
b.Max = 10 * time.Second
}
if b.Factor == 0 {
b.Factor = 2
}
2015-03-03 18:44:54 +03:00
//calculate this duration
dur := float64(b.Min) * math.Pow(b.Factor, b.attempts)
if b.Jitter == true {
dur = rand.Float64()*(dur-float64(b.Min)) + float64(b.Min)
}
2015-03-03 18:44:54 +03:00
//cap!
if dur > float64(b.Max) {
return b.Max
2015-02-28 09:21:18 +03:00
}
//bump attempts count
b.attempts++
//return as a time.Duration
2015-03-03 18:44:54 +03:00
return time.Duration(dur)
2015-02-28 09:21:18 +03:00
}
2015-03-03 01:01:21 +03:00
//Resets the current value of the counter back to Min
2015-02-28 09:21:18 +03:00
func (b *Backoff) Reset() {
b.attempts = 0
}