内部错误:当前事务被中止,命令被忽略直到事务块结束
使用多处理库在子进程中执行数据库调用时出现此错误。
访问: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
多重处理(在 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.