Implement TCP-Vegas Style Adaptive Concurrency Limits (#32)#37
Merged
Conversation
- Introduce AdaptiveLimiter with AIMD logic based on RTT. - Implement adaptive concurrency middleware and policy integration. - Add WithAdaptiveLimiter and WithAdaptiveLimiterInstance options. - Ensure zero-allocation on the happy path. - Add baseline RTT decay for environment recalibration. - Comprehensive unit tests with >90% coverage. - Add standalone example and technical article. - Update existing articles to reference adaptive concurrency.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #37 +/- ##
==========================================
+ Coverage 80.82% 81.25% +0.43%
==========================================
Files 11 12 +1
Lines 652 715 +63
==========================================
+ Hits 527 581 +54
- Misses 103 110 +7
- Partials 22 24 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
This pull request implements dynamic concurrency limits using the TCP-Vegas algorithm (AIMD based on RTT), as specified in issue #32.
Key Changes:
Fixes #32