This project is mirrored from https://gitee.com/mirrors/nomad.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 16 Jun, 2022 3 commits
  2. 15 Jun, 2022 1 commit
  3. 14 Jun, 2022 7 commits
  4. 13 Jun, 2022 1 commit
  5. 10 Jun, 2022 6 commits
  6. 09 Jun, 2022 4 commits
  7. 08 Jun, 2022 12 commits
  8. 07 Jun, 2022 4 commits
    • Tim Gross's avatar
      CSI: no early return when feasibility check fails on eligible nodes (#13274) · b7471232
      Tim Gross authored
      As a performance optimization in the scheduler, feasibility checks
      that apply to an entire class are only checked once for all nodes of
      that class. Other feasibility checks are "available" checks because
      they rely on more ephemeral characteristics and don't contribute to
      the hash for the node class. This currently includes only CSI.
      
      We have a separate fast path for "available" checks when the node has
      already been marked eligible on the basis of class. This fast path has
      a bug where it returns early rather than continuing the loop. This
      causes the entire task group to be rejected.
      
      Fix the bug by not returning early in the fast path and instead jump
      to the top of the loop like all the other code paths in this method.
      Includes a new test exercising topology at whole-scheduler level and a
      fix for an existing test that should've caught this previously.
      Unverified
      b7471232
    • Derek Strickland's avatar
      alloc_runner: stop sidecar tasks last (#13055) · ec3b7150
      Derek Strickland authored
      alloc_runner: stop sidecar tasks last
      Unverified
      ec3b7150
    • James Rasell's avatar
    • James Rasell's avatar
      state: only update index on change when deleting evals. (#13227) · c8c16d98
      James Rasell authored
      When deleting evaluations and allocations during a reap event, the
      index table entries for evals and allocs was updated irregardless
      of whether changes were made.
      
      This change modifies the state logic so that the index table is
      only modified when the corresponding table has actually been
      modified. Along with matching expected behaviour, this change has
      the potential to reduce the number of times blocking queries will
      return without any real state change.
      Unverified
      c8c16d98
  9. 06 Jun, 2022 2 commits