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 75.94% 76.07% +0.12%
==========================================
Files 94 94
Lines 22161 22417 +256
Branches 3936 4013 +77
==========================================
+ Hits 16831 17053 +222
- Misses 4444 4468 +24
- Partials 886 896 +10 🚀 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/ref/transport-crash-dump
branch
from
August 3, 2026 09:39
6fd9e4d to
e134668
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 3, 2026 09:39
d39154d to
9dee343
Compare
jpnurmi
force-pushed
the
jpnurmi/ref/transport-crash-dump
branch
from
August 3, 2026 12:50
e134668 to
6be63d4
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
2 times, most recently
from
August 3, 2026 12:53
265b68d to
8c2f921
Compare
jpnurmi
force-pushed
the
jpnurmi/ref/transport-crash-dump
branch
from
August 3, 2026 12:53
6be63d4 to
6883ac0
Compare
jpnurmi
force-pushed
the
jpnurmi/ref/sentry-telemetry
branch
from
August 4, 2026 12:36
8bfdf9d to
cdc41e7
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
from
August 4, 2026 12:37
817d719 to
262608e
Compare
jpnurmi
force-pushed
the
jpnurmi/perf/thread-pool
branch
2 times, most recently
from
August 5, 2026 09:46
e9a1eb3 to
b7e5602
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 b38d5fb. 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 5, 2026 11:46
1a4f2a6 to
e5f725b
Compare
This was referenced Aug 5, 2026
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)