feat(internal): thread pool - #1883
Open
jpnurmi wants to merge 15 commits into
Open
Conversation
|
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #1883 +/- ##
==========================================
+ Coverage 76.01% 76.08% +0.07%
==========================================
Files 94 94
Lines 22183 22441 +258
Branches 3937 4017 +80
==========================================
+ Hits 16863 17075 +212
- Misses 4436 4468 +32
- Partials 884 898 +14 🚀 New features to boost your workflow:
|
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
July 22, 2026 14:55
2996a56 to
ec39dc8
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
July 22, 2026 15:14
ec39dc8 to
829189b
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
July 22, 2026 15:47
829189b to
406b054
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
July 22, 2026 16:02
406b054 to
03159d6
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
July 24, 2026 10:19
e417bed to
12f4872
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
4 times, most recently
from
August 3, 2026 08:43
33f0d1a to
d39154d
Compare
jpnurmi
changed the base branch from
master
to
jpnurmi/ref/transport-crash-dump
August 3, 2026 08:55
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 3, 2026 09:39
d39154d to
9dee343
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
2 times, most recently
from
August 3, 2026 12:53
265b68d to
8c2f921
Compare
This was referenced Aug 5, 2026
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 6, 2026 08:16
e5f725b to
b555546
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 6, 2026 08:59
b555546 to
b4c5eb3
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit b4c5eb3. Configure here.
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 6, 2026 09:45
8b1166d to
3c6b937
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 6, 2026 10:54
21b6f50 to
143a50b
Compare
Add a bounded thread pool that runs tasks in parallel and invokes completion callbacks in submission order. Add unit coverage for ordered parallel execution.
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 6, 2026 14:46
143a50b to
6ca0dce
Compare
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.

Introduce a generic thread pool that runs tasks in parallel in a predetermined number of pooled threads and invokes completion callbacks in submission order. The primary use case is the telemetry serialization pool coming in #1946, but it could be used for offloading other heavy tasks, too.
#skip-changelog (internal)