-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
resolve issues 535 and 364 #548
Conversation
Codecov Report
@@ Coverage Diff @@
## master #548 +/- ##
==========================================
- Coverage 94.35% 94.29% -0.06%
==========================================
Files 27 27
Lines 3740 3736 -4
Branches 171 172 +1
==========================================
- Hits 3529 3523 -6
- Misses 179 181 +2
Partials 32 32
Continue to review full report at Codecov.
|
I also added a dialect test. This will be described in the documentation here #534. async def test_dialect_returning(make_engine, connect):
dialect = get_dialect()
dialect.implicit_returning = False
engine = await make_engine(dialect=dialect)
async with engine.acquire() as conn:
res = await conn.execute(tbl.insert().values(id='1', name='test'))
assert res.closed
res = await conn.execute(
tbl.insert().values(id='2', name='test').returning(tbl.c.id)
)
assert not res.closed
assert await res.scalar() == '2'
assert res.closed |
I will be grateful if you have @runtel will time to check. |
IIRC the prime issue was that you can't use two cursors with active SQL commands on same asynchronous connection as you'll get a complaint from the underlying psycopg library |
Per http://initd.org/psycopg/docs/advanced.html: Two cursors can’t execute concurrent queries on the same asynchronous connection. Ergo one cursor per connection |
This statement is true only for parallel cursors in one connection. async in python this competitiveness, which means opening a new cursor in one connection is correct. the main thing is not to overeat it in parallel processes. I will try to add a test in order to show it clearly. |
This comment has been minimized.
This comment has been minimized.
Resolved by #801 |
Dear all.
I think we hurried using one cursor to connect.
I learned how the connection works.
Cursors are not thread safe: a multithread application can create many cursors from the same connection and should use each cursor from a single thread. See Thread and process safety for details.
http://initd.org/psycopg/docs/usage.html#thread-safetyThis quote may be misleading:
Connections shouldn’t be shared either by different green threads: see Support for coroutine libraries for further details.
this only applies togreenlet
more info here (https://github.com/psycopg/psycopg2/blob/8b7506f80d62366ab6bb9e055ff4ea492d16db2c/psycopg/pqpath.c#L830)aiopg use async inteface (https://github.com/psycopg/psycopg2/blob/8b7506f80d62366ab6bb9e055ff4ea492d16db2c/psycopg/pqpath.c#L874)
issues #364 in that we do not close the cursor, at the time of release for the connection here (https://github.com/aio-libs/aiopg/blob/master/aiopg/sa/engine.py#L244) and here (https://github.com/aio-libs/aiopg/blob/master/aiopg/utils.py#L132)
Solving the problem, was the closure of cursors at the time of release of the connection.
I also track weak references in the
SAConnection
class to release the cursor that closes before it is released connection.this is necessary in order to clear cursors for users who do not reconfigure the dialect (https://github.com/aio-libs/aiopg/blob/master/aiopg/sa/engine.py#L39)
The default settings are such that
insert
andupdate
requests will return to the result. what does not allow to close the cursor.surprisingly all the tests were successful. and also this example works successfully #364 (comment)