feat: preserve partial scheduling progress on context timeout instead of rolling back all work #4559
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.
What type of PR is this?
Enhancement
What this PR does / why we need it
Previously, when the scheduler hit its timeout during the scheduling cycle, it would return an error and discard all work, even jobs that were successfully scheduled before the timeout.
This change implements the following approach: when a timeout occurs, stop considering new jobs but continue scheduling any evicted jobs that still need to be rescheduled.
The key change is in
QueueScheduler.Schedule: instead of returning an error on context timeout, we callOnlyYieldEvicted()to switch the iterator to only yield evicted jobs, finish scheduling those, then return the partial results. The subsequent stages (oversubscription handling, optimiser, unbind) continue to run normally.Expected output
When a timeout happens, we should see log lines like the ones below:
How to test
Check the section at the end called Additional Files for the test script and test Armada job.
_local/scheduler/config.yaml:_local/fakeexecutor/config.yaml:goreman -f _local/procfiles/fake-executor.Procfile startAdditional Files