-
Notifications
You must be signed in to change notification settings - Fork 6
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
Possible memory consumption issue #76
Comments
This is configurable but should default to 150kb. https://github.com/waku-org/nwaku/blob/master/waku/factory/external_config.nim#L108
Can you share more info about this? Is the memory increase significant? Whats the rate of messages that you send? I assume you are injecting the messages via the API? Can you confirm they are being rejected by the API? |
This is the base configuration I'm using:
I've played with the number of nodes and the message sizes:
And yes, they're being rejected by the API, as there're no valid messages shown in the graphs (when the message size |
Interesting, so eg 5MB sizes are being rejected by the API but increase the mem consumption of the container? In that case that would be a nwaku issue. Can we reproduce it with a single nwaku node? |
Memory consumption scales with message size being injected, regardless of whether the messages are being sent or not due to node message size limit.
E.g.: AFAIK node can only send messages of size
<15KB
, if I configure the simulator to send1000KB
messages, even if those messages are not sent, the node memory usage increases.The text was updated successfully, but these errors were encountered: