-
Notifications
You must be signed in to change notification settings - Fork 417
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
asyncpg.exceptions._base.InterfaceError: cannot perform operation: another operation is in progress when executing gino processes in parallel #576
Comments
Can you show the full traceback of the exception, please? |
Yes, sorry :)
|
Well, the general rule is that you are not supposed to share a connection between tasks, because PostgreSQL does not support interleaving queries on a single connection. You are trying to get around the critical section check, but that would only work if all code below the check is synchronous, i.e. you are not returning control to the event loop. That's not true in your case, there's plenty of opportunity between your check and the actual database operation for some other task to enter the critical section. Is there a particular reason why a pool does not work for you? |
Im actually using a pool:
|
Okay, so i started a separate engine specifically for this part of the application and the error seems to go away only when there are records in my table. Seems like in an empty table the first row gets locked until it gets populated, but parallel tasks try to access it too. So i tried checking if theres records in the table and sleep for a second, but the error occurs again. |
@shsimeonova do you mind sharing a little more details on how you did it? I'm facing the very same issue with two SELECT queries More specifically, I'm using the following code, which is raising the exception you have shown
Though, I guess that the problem is the fact that I'm sharing the acquired connection .... |
@shsimeonova I also faced the same issue using gino(with asyncpg driver). The issue for me was acquiring db connection with To elaborate, the tasks which I ran using asyncio.gather had code Acquiring connections with Also the the crud methods provided by gino, use GinoEngine which under the hood, always acquires connections with For reference python-gino/gino#313 |
@dony585 Which version of asyncpg are you using? In the latest version (0.23.0) |
the issue with a local PostgreSQL install?:no
uvloop?: dont know, havent used uvloop
Hello! Thank you for your attention in advance.
Im trying to run parallel tasks in batches with asyncio, gino and asyncpg.
I have the magic starting from this entry point:
endpoint_connection=endpoint_request.db_connection
is the endpoint connection started from the point of receiving the request in my application (I'm using an internal util library over asyncpg, quart and gino)Below in JobService.run_job I have:
I'm trying to optimize using db connections by first checking if the general endpoint connection is free and using it if so and if not acquiring a new one in a context manager. In order to be sure which connection is used, I'm passing a bind (connection) parameter to all of my methods related to db operations (gino usage) and they seem to fail on the second created connection in the context, i don't really understand also how a connection created explicitly can be used in another operation already (from what i understand from the error)
The text was updated successfully, but these errors were encountered: