OCCI createEnvironment 阻止我的线程

发布于 2024-08-31 06:54:15 字数 206 浏览 5 评论 0原文

我正在编写一个多线程应用程序,其中有一个主线程将任务分配给工作线程。根据任务,工作线程使用全局 occi 环境创建连接。当工作线程完成其任务时,它会关闭连接(我确信,终止时不会抛出异常)。

我的问题是,一段时间后(有时 5 分钟,有时 5 小时),线程无法从环境中获得连接,并且它们被阻塞在那里。

可能是什么问题?

I'm writing a multi-threaded application, where there is a main thread which distributes tasks to the worker threads. According to the task, a worker thread creates a connection, by using a global occi environment. When a worker thread completes its task, it closes the connection (I'm sure, there is no exception thrown while termination).

My problem is that after a while(sometimes 5 mins, sometimes 5 hours) the threads cannot get connection from the environment, and they get blocked there.

What can be the problem?

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

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

发布评论

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

评论(2

萌辣 2024-09-07 06:54:15

我想我没有正确识别问题。我以为线程被阻塞了,但实际上它们没有,它们只是意外地退出了:)。问题解决了。

I guess I didn't identify the problem correctly. I thought the threads get blocked, but actually they didn't, they simply exited there unexpectedly :). Problem solved.

弥枳 2024-09-07 06:54:15

您是否考虑过使用线程池?这样您就不需要在每次工作完成时关闭连接。
我认为设置/关闭数据库连接也相当昂贵。

Have you considered using a thread pool? Then you don't need to close the connection every time the work is done.
Setting up/closing the database connection is also quite expensive, i think.

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