mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-15 08:29:25 +01:00
.. | ||
backoff.go | ||
go.mod | ||
LICENSE | ||
README.md |
Backoff
A simple exponential backoff counter in Go (Golang)
Install
$ go get -v github.com/jpillora/backoff
Usage
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()
.
Jitter
adds randomness (see
below). Used in conjunction with the time
package.
Simple example
:= &backoff.Backoff{
b //These are the defaults
: 100 * time.Millisecond,
Min: 10 * time.Second,
Max: 2,
Factor: false,
Jitter}
.Printf("%s\n", b.Duration())
fmt.Printf("%s\n", b.Duration())
fmt.Printf("%s\n", b.Duration())
fmt
.Printf("Reset!\n")
fmt.Reset()
b
.Printf("%s\n", b.Duration()) fmt
100ms
200ms
400ms
Reset!
100ms
Example using net
package
:= &backoff.Backoff{
b : 5 * time.Minute,
Max}
for {
, err := net.Dial("tcp", "example.com:5309")
connif err != nil {
:= b.Duration()
d .Printf("%s, reconnecting in %s", err, d)
fmt.Sleep(d)
timecontinue
}
//connected
.Reset()
b.Write([]byte("hello world!"))
conn// ... Read ... Write ... etc
.Close()
conn//disconnected
}
Example using Jitter
Enabling Jitter
adds some randomization to the backoff
durations. See
Amazon’s writeup of performance gains using jitter. Seeding is not
necessary but doing so gives repeatable results.
import "math/rand"
:= &backoff.Backoff{
b : true,
Jitter}
.Seed(42)
rand
.Printf("%s\n", b.Duration())
fmt.Printf("%s\n", b.Duration())
fmt.Printf("%s\n", b.Duration())
fmt
.Printf("Reset!\n")
fmt.Reset()
b
.Printf("%s\n", b.Duration())
fmt.Printf("%s\n", b.Duration())
fmt.Printf("%s\n", b.Duration()) fmt
100ms
106.600049ms
281.228155ms
Reset!
100ms
104.381845ms
214.957989ms
Documentation
https://godoc.org/github.com/jpillora/backoff
Credits
Forked from some JavaScript written by @tj