Replies: 3 comments 2 replies
-
Could it be that namespaces aren't designed to be manually cleaned up? |
Beta Was this translation helpful? Give feedback.
-
Hi! You can use the const io = socketio(3000, {
pingTimeout: 60000,
allowEIO3: true,
cleanupEmptyChildNamespaces: true,
}); This way, when all sockets leave the dynamic namespace, then it gets closed and cleaned up properly. Reference: https://socket.io/docs/v4/server-options/#cleanupemptychildnamespaces |
Beta Was this translation helpful? Give feedback.
-
Hello, Is there anything else that I need to do to make sure that the memory is freed ? |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I am encountering an issue where dynamically created namespaces in Socket.IO are not being fully garbage collected, even after all connections have been closed and manual garbage collection has been triggered.
Once all clients disconnect from a namespace, I expect it to be completely removed from memory, with no lingering references preventing garbage collection.
Is there something I'm missing?
Even after all connections are closed and garbage collection runs, namespaces still appear in heap snapshots.
I include the code where I managed to replicate that.
Node version: v22.12.0
socket.io: ^4.8.1
socket.io-client: ^4.8.1
Thanks for any help.
server.js
client.js
Procedure:
In the logs I see:
Beta Was this translation helpful? Give feedback.
All reactions