-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
Leverage using
/Symbol.dispose
to ensure resources are cleaned up before Node.js exits
#48687
Comments
You can see multiple pull request already working on it and most of them are merged. The first iteration of |
Very neat.
Makes sense. A workaround is to use TypeScript 5.2 which supports |
Would such a cleanup work even when v8 crashes like in heap out of memory cases, e.g. when no JS execution is possible any more. |
Probably not |
I guess it would if the cleanup is performed in C++. That would be a truly reliable way for cleanup as the process |
Hey, Great to see users are asking for this! As others have mentioned this is "on the roadmap" and we started adding We've done this in collaboration with the TypeScript team and coordination with Babel so users in transpilers would be able to benefit from it before V8 lands the syntactic support. When the process crashes, electricity goes down or another catastrophic failure happens you cannot rely on disposers running. It is effectively a safer/neater alternative for |
Is there a difference between v8 crashing and node crashing? Couldn't node still run cleanup before exiting in case of v8 crash? |
I'm wondering if we should ship a |
My point is that users cannot rely on app-level cleanup code running in all cases since we (and any other platform) cannot guarantee that it will run. There are some cases where cleanup will run (e.g. unhandled rejection since it would propagate through the stack and disposers would run) and some cases where they won't (e.g. segfault). |
What APIs would you expect support in other than streams/files @brillout ? |
Thanks for the ping. My only use case so far is clear up of temporary files, but I'm sure there are other use cases that I can't think of right now. (Unrelated but since you're Node.js member, I wonder whether the Node.js team can influence the outcome of npm/rfcs#665? It's a really bad situation. It's causing massive pain on a daily basis to Node.js users. If we can find a solution that would significantly address the reputation of "JavaScript is a mess".) |
using
/Symbol.dispose
to ensure resources are cleaned up before Node.js existsusing
/Symbol.dispose
to ensure resources are cleaned up before Node.js exits
There has been no activity on this feature request for 5 months and it is unlikely to be implemented. It will be closed 6 months after the last non-automated comment. For more information on how the project manages feature requests, please consult the feature request management document. |
There has been no activity on this feature request and it is being closed. If you feel closing this issue is not the right thing to do, please leave a comment. For more information on how the project manages feature requests, please consult the feature request management document. |
Are there any docs on this? Googling Does the latest Node.js version support (somehwat) guaranteed temporary file removal? |
These are the only references I could find, not much to go off, its basically so new that there are no docs about it: |
@luchillo17 note that for some cases we expose Symbol.asyncDispose where appropriate https://nodejs.org/api/stream.html#readablesymbolasyncdispose The main issue in terms of DX is that because we're a JS and not a TS runtime our docs are for JS and thus we don't have good examples until this lands in JS land. |
@benjamingr Worry not, I'm not gunning for this feature just yet, I know tc39 is in stage 3 draft, I just came here out of curiosity as someone was showing it in the context of a TS unit test for teardown logic. |
Is there anything available for deleting temporary files? This would quite nice for both Vite and Vike. (Temporary files not being cleaned up is a common issue.) |
@brillout I maintain a package (tmp-promise) with a disposer pattern that could use an update but I'm not aware of anything in core. I think we can probably ship a promises disposable version of mkdtemp if that's common enough (also TIL about vike, happy 10000 to me I guess :)) |
Neat. Yea, I guess it needs to be a core thing, so that Node.js knows it should apply the cleanup if, for example, the user terminates the process by hitting (Thank you, I'm glad Vike resonates with you :)) |
What is the problem this feature will solve?
Today, there isn't a way to guarantee resource cleanup. For example:
If the process exits between
fs.openSync()
and thefinally
code block, then the file isn't removed.What is the feature you are proposing to solve the problem?
While a 100% guarantee isn't possible, leveraging the new
using
keyword, there is an opportunity to dramatically increase the probability of successful resource cleanup.Is that on Node.js's radar?
What alternatives have you considered?
No response
The text was updated successfully, but these errors were encountered: