Skip to content

grpc-js: Stop leaking freed message buffer placeholder objects#2372

Merged
murgatroid99 merged 1 commit intogrpc:@grpc/grpc-js@1.8.xfrom
murgatroid99:grpc-js_retry_buffer_free
Feb 24, 2023
Merged

grpc-js: Stop leaking freed message buffer placeholder objects#2372
murgatroid99 merged 1 commit intogrpc:@grpc/grpc-js@1.8.xfrom
murgatroid99:grpc-js_retry_buffer_free

Conversation

@murgatroid99
Copy link
Copy Markdown
Member

This fixes #2371. Currently, in a retrying call, when a message that has been sent is no longer needed, its entry in the message buffer is replaced with a placeholder entry with entryType="FREED". This frees up the memory of the actual message contents, but in a long-running stream, the placeholder entries themselves can pile up and start to use a significant amount of memory.

With this change, the message buffer only contains the range of messages that still need to be sent, and the new writeBufferOffset field indicates the offset the buffer has from the beginning of the message stream. The code still tracks message indices relative to the start of the message stream, because that can always just be incremented without any concern for the current state of the buffer.

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.

2 participants