Skip to content

Conversation

@acogoluegnes
Copy link
Contributor

@acogoluegnes acogoluegnes commented Jul 4, 2025

A couple of optimizations for readers:

  • Change the signature of the sendfile callback. The callback is used in RabbitMQ to send the frame header. The callback expects now a binary result to send it along the chunk header. This saves a system call and improves performance with small chunks.
  • Read ahead small chunks. Instead of just reading the header and using sendfile to dispatch the chunk data, the whole chunk (and potentially the next ones) is read with the header if it can fit in a read ahead limit (approximately 4096 bytes). This saves system calls for streams with lots of small chunks and can increase dramatically the reading rate (up to 6 times for some cases). The chunk iterator also uses this read-ahead approach.

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
@acogoluegnes acogoluegnes force-pushed the send-file-improvements branch 5 times, most recently from c5572f0 to bda8f17 Compare July 24, 2025 10:07
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
@acogoluegnes acogoluegnes changed the title Update send_file callback to save a system call Optimizations for readers Jul 24, 2025
@kjnilsson kjnilsson force-pushed the send-file-improvements branch from c16bed9 to b50de25 Compare July 29, 2025 15:15
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
@acogoluegnes acogoluegnes force-pushed the send-file-improvements branch from 3827fac to b561e82 Compare August 22, 2025 08:16
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
@kjnilsson kjnilsson force-pushed the send-file-improvements branch 2 times, most recently from 8cce6ed to ec17a39 Compare August 26, 2025 09:29
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
@kjnilsson kjnilsson force-pushed the send-file-improvements branch from ec17a39 to 182cb04 Compare September 1, 2025 14:07
@acogoluegnes acogoluegnes force-pushed the send-file-improvements branch from 208e5d7 to 48bc4ee Compare September 3, 2025 06:29
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.
@acogoluegnes acogoluegnes force-pushed the send-file-improvements branch from 5084a4f to 647e470 Compare September 4, 2025 08:49
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
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
acogoluegnes and others added 11 commits September 22, 2025 09:55
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.
@acogoluegnes acogoluegnes marked this pull request as ready for review September 22, 2025 08:51
@acogoluegnes acogoluegnes merged commit 808f1f2 into main Sep 22, 2025
4 checks passed
@acogoluegnes acogoluegnes deleted the send-file-improvements branch September 22, 2025 09:01
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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants