mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-18 15:13:32 -05:00
Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.6.0 to 1.8.0. - [Release notes](https://github.com/open-policy-agent/opa/releases) - [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md) - [Commits](https://github.com/open-policy-agent/opa/compare/v1.6.0...v1.8.0) --- updated-dependencies: - dependency-name: github.com/open-policy-agent/opa dependency-version: 1.8.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
// Copyright 2018 The OPA Authors. All rights reserved.
|
|
// Use of this source code is governed by an Apache2
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package util
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
// DefaultBackoff returns a delay with an exponential backoff based on the
|
|
// number of retries.
|
|
func DefaultBackoff(base, maxNS float64, retries int) time.Duration {
|
|
return Backoff(base, maxNS, .2, 1.6, retries)
|
|
}
|
|
|
|
// Backoff returns a delay with an exponential backoff based on the number of
|
|
// retries. Same algorithm used in gRPC.
|
|
// Note that if maxNS is smaller than base, the backoff will still be capped at
|
|
// maxNS.
|
|
func Backoff(base, maxNS, jitter, factor float64, retries int) time.Duration {
|
|
if retries == 0 {
|
|
return 0
|
|
}
|
|
|
|
backoff, maxNS := base, maxNS
|
|
for backoff < maxNS && retries > 0 {
|
|
backoff *= factor
|
|
retries--
|
|
}
|
|
if backoff > maxNS {
|
|
backoff = maxNS
|
|
}
|
|
|
|
// Randomize backoff delays so that if a cluster of requests start at
|
|
// the same time, they won't operate in lockstep.
|
|
backoff *= 1 + jitter*(rand.Float64()*2-1)
|
|
if backoff < 0 {
|
|
return 0
|
|
}
|
|
|
|
return time.Duration(backoff)
|
|
}
|