-
Notifications
You must be signed in to change notification settings - Fork 625
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
During a resend-request the request for messages from storage allows for unbounded memory usage #639
Comments
As you noted on #621 (comment) probably it would be a good thing to have a config option to restrict the maximum number of messages that could be resent. The beginning of the range could be skipped over by setting the |
Yeah, a maximum resend request is probably also a good idea. I'd suggest that there's several things you could do:
At some point I also need to look a throttling send - when we fixed our batching (and we really did want to send them all... we effectively DDoSed our counter-party until they caught up - ideally we could have throttled it so they stayed connected). |
#778 |
@wajncn actually there was already a PR created by @philipwhiuk which should solve this: #643 |
When a resend request to Infinity (or even just a large capped number) is made, this can cause a huge number of messages to be fetched from storage into memory which can cause the application to crash due to lack of memory. It's not practical to mitigate this in the storage layer
In addition even if they fit in memory without a fix to #271 this can lead to some fairly ugly behaviour where we continue to attempt to send messages to a session that's already disconnected us.
To Reproduce
Expected behavior
We should fetch the messages in batches and then send them a batch at a time
System information:
N/A
Additional context
I've got a hot fix for some of this - will try to tidy it up and submit for review.
This is probably additionally key if we implement #621
The text was updated successfully, but these errors were encountered: