Conversation
psteinroe
added this pull request to stack #25
September 15, 2026 03:35
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 03:43
d142468 to
bd4e810
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 03:43
4d8a13b to
4e02cad
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 03:54
bd4e810 to
7bc6692
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 03:54
3d3238f to
217c5ff
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 04:07
7bc6692 to
fdc6251
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 04:07
217c5ff to
fb32228
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 04:11
fdc6251 to
e6a33c0
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 04:11
fb32228 to
2a5ee3f
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 04:16
e6a33c0 to
88459d9
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 04:16
2a5ee3f to
31fcecf
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 04:24
88459d9 to
cb8136a
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 04:24
31fcecf to
38dad1e
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 04:36
cb8136a to
2d5249f
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 04:36
38dad1e to
a7f36ba
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 04:45
2d5249f to
ffb721e
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 04:45
a7f36ba to
e491abc
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 04:52
ffb721e to
534b688
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 04:52
e491abc to
65cddce
Compare
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 05:02
534b688 to
7e3838b
Compare
psteinroe
force-pushed
the
feat/fifo
branch
from
September 15, 2026 05:02
65cddce to
ddd4800
Compare
psteinroe
removed this pull request from stack #25
September 15, 2026 11:41
psteinroe
force-pushed
the
feat/soft-concurrency
branch
from
September 15, 2026 11:49
7e3838b to
fe8c04a
Compare
Owner
Author
|
Closing because the strict FIFO design has been intentionally replaced with PostgreSQL-style best-effort ordering by priority, run time, creation time, and ID. |
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.
Add opt-in strict FIFO processing with one persistent owner per
(queue, task). FIFO tasks ignore priority and retain ownership across retries, sleeps, child waits, and recovery until a guarded terminal transition releases the lane.Future executions that have never started do not block runnable work. FIFO is mutually exclusive with soft task/group concurrency at both the type and database levels.
This also fixes live-queue refill behavior in the concurrent mapper so newly available work cannot deadlock behind an active task.
Stacked on #17.
Closes #12