-
Notifications
You must be signed in to change notification settings - Fork 12
Optimizations for readers #192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Jul 4, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Jul 23, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
c5572f0 to
bda8f17
Compare
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Jul 24, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
c16bed9 to
b50de25
Compare
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Aug 1, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Aug 4, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Aug 4, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Aug 18, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Aug 21, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
3827fac to
b561e82
Compare
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Aug 22, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
8cce6ed to
ec17a39
Compare
kjnilsson
pushed a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Aug 26, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 1, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
ec17a39 to
182cb04
Compare
208e5d7 to
48bc4ee
Compare
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 4, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
The callback is used in RabbitMQ to send the frame header. This commit changes the callback to expect a binary result and to send it along the chunk header. This saves a system call and improves performance with small chunks.
5084a4f to
647e470
Compare
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 9, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 11, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 12, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 15, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 17, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 18, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
kjnilsson
requested changes
Sep 19, 2025
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 19, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 22, 2025
Osiris can read ahead data in case of small chunks. This saves system calls and increases consumption rate dramatically for some streams. This is transparent for the stream protocol, but requires a small tweak for the stream queue type implementation (passing in the previous iterator when creating a new one). The read ahead is on by default but can be deactivated with to the new stream.read_ahead configuration entry (true / false). References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 22, 2025
Osiris can read ahead data in case of small chunks. This saves system calls and increases consumption rate dramatically for some streams. This is transparent for the stream protocol, but requires a small tweak for the stream queue type implementation (passing in the previous iterator when creating a new one). The read ahead is on by default but can be deactivated with to the new stream.read_ahead configuration entry (true / false). Co-authored-by: Karl Nilsson <kjnilsson@gmail.com> References rabbitmq/osiris#192
Reading a chunk header then using the sendfile syscall to send the chunk data is not optimal for small chunks, as it amounts to 2 system calls for a small amount of bytes. This commit uses the size of the last chunk to try to read the whole chunk when the library reads the chunk header. If the last chunk data size was under 4096 bytes, the library does not only read the chunk header, but reads ahead to try to read the whole and thus to save the sendfile call later. This optimization should improve the read throughput for streams with small chunks, e.g. streams with 1-message chunks.
Start with default filter size and use actual size after non-zero value has been read. Attempt to read ahead from parse_header instead of returning the header and no data. The decision is based on the availability of previous read ahead data. Use read ahead data in chunk iterator if available
And some small fixes.
To avoid losing potential read ahead data that is filled during iteration. Comment updates.
And test read ahead switch on iterator.
by the next read-ahead.
bf7d7ea to
01427d8
Compare
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 22, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
acogoluegnes
added a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 22, 2025
Osiris can read ahead data in case of small chunks. This saves system calls and increases consumption rate dramatically for some streams. This is transparent for the stream protocol, but requires a small tweak for the stream queue type implementation (passing in the previous iterator when creating a new one). The read ahead is on by default but can be deactivated with to the new stream.read_ahead configuration entry (true / false). Co-authored-by: Karl Nilsson <kjnilsson@gmail.com> References rabbitmq/osiris#192
mergify bot
pushed a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 22, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192 (cherry picked from commit 885e89e)
mergify bot
pushed a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 22, 2025
Osiris can read ahead data in case of small chunks. This saves system calls and increases consumption rate dramatically for some streams. This is transparent for the stream protocol, but requires a small tweak for the stream queue type implementation (passing in the previous iterator when creating a new one). The read ahead is on by default but can be deactivated with to the new stream.read_ahead configuration entry (true / false). Co-authored-by: Karl Nilsson <kjnilsson@gmail.com> References rabbitmq/osiris#192 (cherry picked from commit 9f162df)
michaelklishin
pushed a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 24, 2025
This saves a system call by sending the frame header and the chunk header at the same time. References rabbitmq/osiris#192
michaelklishin
pushed a commit
to rabbitmq/rabbitmq-server
that referenced
this pull request
Sep 24, 2025
Osiris can read ahead data in case of small chunks. This saves system calls and increases consumption rate dramatically for some streams. This is transparent for the stream protocol, but requires a small tweak for the stream queue type implementation (passing in the previous iterator when creating a new one). The read ahead is on by default but can be deactivated with to the new stream.read_ahead configuration entry (true / false). Co-authored-by: Karl Nilsson <kjnilsson@gmail.com> References rabbitmq/osiris#192
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.
A couple of optimizations for readers: