-
-
Notifications
You must be signed in to change notification settings - Fork 34.2k
Closed
Labels
domainIssues and PRs related to the domain subsystem.Issues and PRs related to the domain subsystem.
Description
- Version: >= v9.3.0 & <12.0.0
- Platform: all
- Subsystem: domain
By coupling domains with async_hooks from version 9.3.0, where it assigns the active domain to the async resource, and not unsassigning it, these domains are retained in memory by, for instance, the pool of HTTPParsers.
While the retained domains are very small objects,
- some CLS systems may use the active domain as keys for
WeakMaps, expecting all references to the active domain to disappear after it definitely exits - some web servers may use this CLS system to store requests contexts
- these requests context may retain huge payloads.
Considering any average size of payload, multiplied by 1000 (the size of the parsers pool), this can create a huge memory leak.
While I think it's the job of the application implementor to not create such a reference from an application WeakMap to the active domain, we may prevent this from causing huge leaks by unassigning the domain on any async resource after it has been used.
Otherwise, I may have missed the true reason why this reference is kept.
Thanks
Metadata
Metadata
Assignees
Labels
domainIssues and PRs related to the domain subsystem.Issues and PRs related to the domain subsystem.