Use poll_recv_many for processing commands to be written to the nats server#1189
Merged
Jarema merged 1 commit intonats-io:mainfrom Feb 2, 2024
Merged
Use poll_recv_many for processing commands to be written to the nats server#1189Jarema merged 1 commit intonats-io:mainfrom
Jarema merged 1 commit intonats-io:mainfrom
Conversation
88bda9c to
46ffeda
Compare
Member
|
That is really nice improvement @paolobarbolini ! |
Contributor
Author
|
From what I can gather from the latest releases it shouldn't take more than a few weeks. |
46ffeda to
8b11a0b
Compare
Contributor
Author
|
Tokio v1.36 is out |
Contributor
Author
Ok it's not. Just a PR 😞 |
8b11a0b to
0489470
Compare
0489470 to
45df788
Compare
Contributor
Author
|
Now it's out for real |
Jarema
reviewed
Feb 2, 2024
Member
Jarema
left a comment
There was a problem hiding this comment.
This is awesome to leverage this new API and gain 30% performance!
Thanks @paolobarbolini
Just some minor questions.
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.
Tokio 1.36 exposed
Receiver::poll_recv_many, which allows polling multiple items at once from an mpsc channel. Considering that our write buffer already has a lenient capacity limit, and the benchmarks show that the reduced overhead is worth it, this PR makes the connection handler poll 16 commands at once instead of just 1.Benchmark results (Ryzen 5900X)