bugfix(ci): derive.yml concurrency cancels sibling dispatches (closes #364) - #365
Merged
Merged
Conversation
…loses #364) The legacy group ``derive-{repo}-budget`` covered ALL derive dispatches against a repo. Combined with GHA's "at most one pending per group" rule under ``cancel-in-progress: false``, firing three resize dispatches in quick succession (1k→512, 1k→256, 1k→128) cancels the middle one: the third displaces the second's pending slot before it can start. Hit during the v2026.04.99-tst-full chain — the 256 resize cancelled 4s after dispatch with no jobs ever starting (run 25530375206). Same hazard would bite ktx2-1k vs ktx2-512 dispatched together. Fix: include kind/source-tier/target-tier in the concurrency group key. Distinct-purpose dispatches now run in parallel; same-purpose double-dispatch still serializes because that case shares the key.
gerchowl
enabled auto-merge (squash)
May 8, 2026 06:32
gerchowl
added a commit
that referenced
this pull request
May 15, 2026
…loses #364) (#365) The legacy group ``derive-{repo}-budget`` covered ALL derive dispatches against a repo. Combined with GHA's "at most one pending per group" rule under ``cancel-in-progress: false``, firing three resize dispatches in quick succession (1k→512, 1k→256, 1k→128) cancels the middle one: the third displaces the second's pending slot before it can start. Hit during the v2026.04.99-tst-full chain — the 256 resize cancelled 4s after dispatch with no jobs ever starting (run 25530375206). Same hazard would bite ktx2-1k vs ktx2-512 dispatched together. Fix: include kind/source-tier/target-tier in the concurrency group key. Distinct-purpose dispatches now run in parallel; same-purpose double-dispatch still serializes because that case shares the key.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Test plan