-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add exponential backoff to orbit enroll retries #17368
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Add exponential backoff to orbit enroll retries. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,26 @@ import ( | |
) | ||
|
||
type config struct { | ||
interval time.Duration | ||
maxAttempts int | ||
initialInterval time.Duration | ||
backoffMultiplier int | ||
maxAttempts int | ||
} | ||
|
||
// Option allows to configure the behavior of retry.Do | ||
type Option func(*config) | ||
|
||
// WithRetryInterval allows to specify a custom duration to wait | ||
// WithInterval allows to specify a custom duration to wait | ||
// between retries. | ||
func WithInterval(i time.Duration) Option { | ||
return func(c *config) { | ||
c.interval = i | ||
c.initialInterval = i | ||
} | ||
} | ||
|
||
// WithBackoffMultiplier allows to specify the backoff multiplier between retries. | ||
func WithBackoffMultiplier(m int) Option { | ||
return func(c *config) { | ||
c.backoffMultiplier = m | ||
} | ||
} | ||
|
||
|
@@ -37,16 +45,17 @@ func WithMaxAttempts(a int) Option { | |
// seconds | ||
func Do(fn func() error, opts ...Option) error { | ||
cfg := &config{ | ||
interval: 30 * time.Second, | ||
initialInterval: 30 * time.Second, | ||
} | ||
for _, opt := range opts { | ||
opt(cfg) | ||
} | ||
|
||
attempts := 0 | ||
ticker := time.NewTicker(cfg.interval) | ||
ticker := time.NewTicker(cfg.initialInterval) | ||
defer ticker.Stop() | ||
|
||
backoff := 1 | ||
for { | ||
attempts++ | ||
err := fn() | ||
|
@@ -58,6 +67,12 @@ func Do(fn func() error, opts ...Option) error { | |
return err | ||
} | ||
|
||
if cfg.backoffMultiplier != 0 { | ||
interval := time.Duration(backoff) * cfg.initialInterval | ||
backoff *= cfg.backoffMultiplier | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: Looks strange that you're setting There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How's so? I'm updating it's value for the next iteration. |
||
ticker.Reset(interval) | ||
} | ||
|
||
<-ticker.C | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed anymore because we've recently replaced https://github.com/getlantern/systray with a fork https://github.com/fyne-io/systray (which doesn't have any GTK dependencies on Linux).