关闭钩子可以用于稍长的任务吗

发布于 2024-11-17 21:42:53 字数 250 浏览 3 评论 0原文

我遇到过关闭钩子功能,当java应用程序关闭时会调用该功能。

  • 我正在使用 SIGTERM 信号来关闭 linux Box 上的 java 进程。

  • 在关闭时,我想做一些磁盘 I/O(保留一些对象)并关闭打开的文件缓冲区(最多可能需要 1 分钟)

  • 您能否建议关闭挂钩是否是此用例的安全/可靠机制

  • 如果有更好的替代方案,请提出建议。

I have come across the shutdown hooks functionality which is invoked when java application is shutdown.

  • I am using SIGTERM signal to shutdown my java process on a linux Box.

  • And at the time of shutdown, I want to do some disk I/O (persisting some objects) and closing open file buffer( that can take upto 1min)

  • Can you advise if shutdown hooks are a safe/reliable mechanism for this use case

  • If there is some better alternative, please suggest.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坚持沉默 2024-11-24 21:42:53

这个设计文档并没有说关于允许关闭钩子线程运行多长时间的任何信息。但从字里行间看(事实上,有一个 Runtime.halt,我认为你是安全的。)

现在请记住,你依赖的其他一些框架可能已同时关闭,因此你的hook 不应依赖于您自己的代码以外的任何内容。

您可能还会发现其他感兴趣的问题:如何优雅地停止 java 进程?。

This design document does not say anything about how long a shutdown hook thread is allowed to run. But reading between the lines (the fact that there is a Runtime.halt, I think you are safe.)

Now keep in mind that some other frameworks you rely on may have been shutting down concurrently, so your hook should not rely on anything other than your own code.

You may also find this other SO question of interest: How to stop java process gracefully?.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文