我插入了很多行,似乎postgress无法跟上。我已经google了一下,建议你可以关闭自动提交。我不需要立即提交值。如果出现问题,我可以再次获取数据。
现在,当我寻找关闭自动提交时,我找不到我正在寻找的东西。我已经尝试在dbpool构造函数中提供autocommit = False:
dbpool = adbapi.ConnectionPool('psycopg2', user="xxx", password="xxx", database="postgres", host="localhost", autocommit=False)
2013-01-27 18:24:42,254 - collector.EventLogItemController - 警告 - [失败实例:回溯::无效连接选项“autocommit”
答案 0 :(得分:1)
psycopg2声称不支持autocommit
的{{1}}关键字参数:
connect
当前的postgresql文档也没有讨论任何“autocommit”参数:
connect(dsn=None, database=None, user=None, password=None, host=None, port=None, connection_factory=None, async=False, **kwargs)
Create a new database connection.
The connection parameters can be specified either as a string:
conn = psycopg2.connect("dbname=test user=postgres password=secret")
or using a set of keyword arguments:
conn = psycopg2.connect(database="test", user="postgres", password="secret")
The basic connection parameters are:
- *dbname*: the database name (only in dsn string)
- *database*: the database name (only as keyword argument)
- *user*: user name used to authenticate
- *password*: password used to authenticate
- *host*: database host address (defaults to UNIX socket if not provided)
- *port*: connection port number (defaults to 5432 if not provided)
Using the *connection_factory* parameter a different class or connections
factory can be specified. It should be a callable object taking a dsn
argument.
Using *async*=True an asynchronous connection will be created.
Any other keyword parameter will be passed to the underlying client
library: the list of supported parameter depends on the library version.
所以问题可能是这不是禁用psycopg2连接的自动提交的正确方法。除此之外,你不会发现关闭autocommit实际上对你有帮助。 http://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING
将开始并为您提交显式事务,并可以为您提供任何行为adbapi.ConnectionPool
模式。
答案 1 :(得分:0)
adbapi的问题在于: 1)它缺少特定于某些数据库后端的功能 2)它假的异步api。在引擎盖下它使用线程池并调用阻塞方法。
对于postgres,我建议使用txpostgres库(源代码在这里:https://github.com/wulczer/txpostgres)。它使用psycopg2的异步api,它允许您指定连接字符串。 您可以在此处找到示例:http://txpostgres.readthedocs.org/en/latest/usage.html#customising-the-connection-and-cursor-factories
答案 2 :(得分:0)
使用twisted.enterprise.adbapi.ConnectionPool constructor
的cp_openfun
选项
以连接为参数调用此函数。
对于psycopg2,您可以按照here所述将该连接的autocommit属性设置为True
或False