-
Notifications
You must be signed in to change notification settings - Fork 2k
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 scheduler version enforcement #1872
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -27,6 +27,10 @@ const ( | |||||||||||||||||||||||||||||||||||||
// the slower backoff | ||||||||||||||||||||||||||||||||||||||
backoffLimitSlow = 10 * time.Second | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
// backoffSchedulerVersionMismatch is the backoff between retries when the | ||||||||||||||||||||||||||||||||||||||
// scheduler version mismatches that of the leader. | ||||||||||||||||||||||||||||||||||||||
backoffSchedulerVersionMismatch = 30 * time.Second | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
// dequeueTimeout is used to timeout an evaluation dequeue so that | ||||||||||||||||||||||||||||||||||||||
// we can check if there is a shutdown event | ||||||||||||||||||||||||||||||||||||||
dequeueTimeout = 500 * time.Millisecond | ||||||||||||||||||||||||||||||||||||||
|
@@ -134,8 +138,9 @@ func (w *Worker) run() { | |||||||||||||||||||||||||||||||||||||
func (w *Worker) dequeueEvaluation(timeout time.Duration) (*structs.Evaluation, string, bool) { | ||||||||||||||||||||||||||||||||||||||
// Setup the request | ||||||||||||||||||||||||||||||||||||||
req := structs.EvalDequeueRequest{ | ||||||||||||||||||||||||||||||||||||||
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. The worker should probably not sit in a hot loop of calling dequeue on this error, e.g. the failure is basically semi-permanent. 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. So I was thinking we want it to spam the logs so the operator knows they are doing something bad. On the error we start backing off: Lines 146 to 163 in 962f4d4
|
||||||||||||||||||||||||||||||||||||||
Schedulers: w.srv.config.EnabledSchedulers, | ||||||||||||||||||||||||||||||||||||||
Timeout: timeout, | ||||||||||||||||||||||||||||||||||||||
Schedulers: w.srv.config.EnabledSchedulers, | ||||||||||||||||||||||||||||||||||||||
Timeout: timeout, | ||||||||||||||||||||||||||||||||||||||
SchedulerVersion: scheduler.SchedulerVersion, | ||||||||||||||||||||||||||||||||||||||
WriteRequest: structs.WriteRequest{ | ||||||||||||||||||||||||||||||||||||||
Region: w.srv.config.Region, | ||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||
|
@@ -154,7 +159,16 @@ REQ: | |||||||||||||||||||||||||||||||||||||
if time.Since(w.start) > dequeueErrGrace && !w.srv.IsShutdown() { | ||||||||||||||||||||||||||||||||||||||
w.logger.Printf("[ERR] worker: failed to dequeue evaluation: %v", err) | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
if w.backoffErr(backoffBaselineSlow, backoffLimitSlow) { | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
// Adjust the backoff based on the error. If it is a scheduler version | ||||||||||||||||||||||||||||||||||||||
// mismatch we increase the baseline. | ||||||||||||||||||||||||||||||||||||||
base, limit := backoffBaselineFast, backoffLimitSlow | ||||||||||||||||||||||||||||||||||||||
if strings.Contains(err.Error(), "calling scheduler version") { | ||||||||||||||||||||||||||||||||||||||
base = backoffSchedulerVersionMismatch | ||||||||||||||||||||||||||||||||||||||
limit = backoffSchedulerVersionMismatch | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
if w.backoffErr(base, limit) { | ||||||||||||||||||||||||||||||||||||||
return nil, "", true | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
goto REQ | ||||||||||||||||||||||||||||||||||||||
|
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.
Something about the
uint16
feels dirty...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.
It gives us a lot of versions while keeping it low overhead. We will never pass 65536 version bumps.