Skip to content

Domains async_hook based implementation leaks active domain on resources maintained by internal pools #27550

@atondelier

Description

@atondelier
  • 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

No one assigned

    Labels

    domainIssues and PRs related to the domain subsystem.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions