Skip to content
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

scheduler: system scheduler should reconcile overlapping live allocs #16097

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Mar 15, 2023

  1. scheduler: system scheduler should reconcile overlapping live allocs

    The system scheduler uses a separate code path for reconciliation. During the
    investigation into the "plan for node rejected" bug which was fixed in #16401,
    it was discovered this code path doesn't maintain the invariant that no more
    than 1 allocation per system job task group (or `count` allocations for sysbatch
    jobs) should be left running on a given client. While this condition should be
    impossible to encounter, the scheduler should be reconciling these cases.
    
    Add a new `ensureSingleSystemAlloc` function that enforces the invariant that
    there can be only a single desired-running allocation for a given system job on
    a given node.
    tgross committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    1172f1a View commit details
    Browse the repository at this point in the history