You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been evaluating the RSocket and did some profiling. It looks like creating Frame message many ByteBuf buffers are used (i.e. header, payload, frame size). Those buffers are composed using CompositeByteBuf. The ByteBuf can be reused, but the CompositeByteBuf are always created as new ones. Such CompositeByteBuf allocation doesn't take much memory, but sending many Frame messages it sums up. Here is an example memory allocation using async-profiler:
Also when Netty sends the Frame messages it needs to duplicate internal DirectByteBuffer objects because of CompositeByteBuf usage:
This wouldn't be the case if only one ByteBuf were used instead.
As far as I understand, it is done in order to avoid copying buffers. Nevertheless maybe there is a way of improving it?
Considered alternatives
Alternatives would be:
avoid using CompositeByteBuf and just use one ByteBuf per Frame message.
provide a way of customize the creation of Frame messages. Current implementation is using static SendUtils.sendReleasingPayload() method and there is no way of replacing it.
Additional context
I'm using rsocket-java version 1.1.2 with TCP transport.
The text was updated successfully, but these errors were encountered:
Motivation
I have been evaluating the RSocket and did some profiling. It looks like creating Frame message many
ByteBuf
buffers are used (i.e. header, payload, frame size). Those buffers are composed usingCompositeByteBuf
. TheByteBuf
can be reused, but theCompositeByteBuf
are always created as new ones. SuchCompositeByteBuf
allocation doesn't take much memory, but sending many Frame messages it sums up. Here is an example memory allocation using async-profiler:Also when Netty sends the Frame messages it needs to duplicate internal
DirectByteBuffer
objects because ofCompositeByteBuf
usage:This wouldn't be the case if only one
ByteBuf
were used instead.As far as I understand, it is done in order to avoid copying buffers. Nevertheless maybe there is a way of improving it?
Considered alternatives
Alternatives would be:
CompositeByteBuf
and just use oneByteBuf
per Frame message.SendUtils.sendReleasingPayload()
method and there is no way of replacing it.Additional context
I'm using
rsocket-java
version1.1.2
withTCP
transport.The text was updated successfully, but these errors were encountered: