内部错误:当前事务被中止,命令被忽略直到事务块结束

发布于 2024-08-20 23:10:04 字数 375 浏览 11 评论 0原文

使用多处理库在子进程中执行数据库调用时出现此错误。

访问:Pastie

内部错误:当前事务被中止,命令被忽略直到 交易块结束

这是到 Postgre 数据库的,使用 web.py 中的 psycopg2 驱动程序。

但是,如果我使用 threading.Thread 而不是 multiprocessing.Process 我不会收到此错误。
知道如何解决这个问题吗?

I'm getting this error when doing database calls in a sub process using multiprocessing library.

Visit : Pastie

InternalError: current transaction is aborted, commands ignored until
end of transaction block

this is to a Postgre Database, using psycopg2 driver in web.py.

However if I use threading.Thread instead of multiprocessing.Process I don't get this error.
Any idea how to fix this?

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

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

发布评论

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

评论(1

雨后彩虹 2024-08-27 23:10:04

多重处理(在 UNIX 系统上)通过分叉当前进程来工作。如果您有现有的数据库连接,这将使两个进程(当前进程和新进程)具有相同的数据库连接。尝试从两者中使用它是不好的。相反,在子进程中创建一个新的数据库连接。

multiprocessing works (on UNIX systems) by forking the current process. If you have an existing database connection, this will leave the two processes (the current one and the new one) with the same database connection. Trying to use it from both is bad. Create a new database connection in the child process instead.

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