-
Notifications
You must be signed in to change notification settings - Fork 803
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
Harden AsyncHooksScopeManager regarding faulty use of AsyncResources #591
Comments
/cc @vmarchaud |
Indeed thats problematic, i believe we could use weakmaps to never old reference but i'm not sure. I don't know if it's that much important for alpha/beta but we need to have something in place for GA for sure |
Assuming this is still wanted/looking to be handled, I'm willing to take a stab at it likely along with @lykkin. |
You're welcome to take a shot :) |
After getting reacquainted with the state of things... In Node 14, and back ported to v12.17, It appears, looking at our Would we want to look into having a version of the context manager with this solved just for Node ^12.17 and >= 14? Would we prefer to defer this work until Node 10 is dropped and it is more likely to benefit more users? If defer, do we still want to do some prototyping or should I move into other work that may be more high priority for GA? |
@dyladan just pinging you on the above in case you didn't get a notification (not pressuring, know you are probably busy - just for visibility). |
For me, we should let the current AsyncHooksScopeManager as-is and focus on making a new one based on AsyncLocalStorage since its way more performant than the implementation i have wrote. See #1210 |
I think that makes sense. Some of the benefit comes from what I was mentioning above but beyond that... using what is hoped as the future of such context tracking for Node would potentially have mutual benefit for this project and Node. |
I agree with @vmarchaud that the much safer way to handle this is to introduce it as a new context manager. After we have some use and have worked out the bugs, we can see about making it the default later. |
OK, sounds good. I'm guessing that's where y'all will steer #1210? If so, I'm happy to concede this issue if that makes sense and grab another item (feel free to suggest). |
/cc @johanneswuerbach since you opened the PR, do you plan into working on a AsyncLocalStorage-based ContextManager ? |
Yes, I actually wanted to work on that today 😂 |
I think we can close this issue, maybe re-open a new one for @michaelgoin I would suggest to try to tackle #1040 |
I really want #1040 to be done. I started work on it once before but got busy doing other things. If you want it @michaelgoin comment on the issue and i'll assign you. |
Well i guess. One question remains open i believe: do we want to enable the AsyncStorageContextManager by default with newer version of node 14 ? |
Is your feature request related to a problem? Please describe.
Some libraries may implement misbehaving AsyncResources for which the
destroy
callback won't be ever called. This would result in a memory leak inAsyncHooksScopeManager
as the corresponding entry is never deleted from_scopes
.Even the problem/bug is actually in the faulty use of
AsyncResources
the leak may only appear if OTel is used in such an application.inspired by nodejs/node#26540 (comment)
Describe the solution you'd like
Add some counter measures to detect such leaks and do a cleanup of old/outdated entries.
Describe alternatives you've considered
Only document that memory leaks like this could happen but root cause is somewhere else and needs to be handled somewhere else.
Additional context
I think this is more a discussion then a feature request but there exists on discussion type for issues and my feeling is that feature request fits better then bug.
The text was updated successfully, but these errors were encountered: