feat(internal): thread pool - #1883
Open
jpnurmi wants to merge 8 commits into
Open
Conversation
|
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #1883 +/- ##
==========================================
+ Coverage 75.95% 76.11% +0.15%
==========================================
Files 94 94
Lines 22161 22393 +232
Branches 3936 3998 +62
==========================================
+ Hits 16833 17045 +212
- Misses 4443 4459 +16
- Partials 885 889 +4 🚀 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 3, 2026
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
2 times, most recently
from
August 3, 2026 16:28
8e78e16 to
e92e866
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 3, 2026 18:27
e92e866 to
9793aaf
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 4, 2026 08:09
e34e604 to
d1682df
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 4, 2026 12:37
817d719 to
262608e
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 262608e. Configure here.
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 4, 2026 13:51
fe95673 to
e9a1eb3
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)