-
Notifications
You must be signed in to change notification settings - Fork 403
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
Terminate function does not work when a stream is cancelled prematurely when in an anyio task group #1156
Comments
What happens is that |
@elprans Thanks for the insight! I'll experiment with Thanks for looking into this issue! |
@elprans Hi! I am hoping for a small update on this, as it's still an ongoing issue and forcing me not to update the version of sqlalchemy I'm using Thanks! |
I think I hit the same issue as this and put together a self contained reproducer in https://github.com/brittlesoft/repro-starlette-sa-conn-leak There's also a similar issue that seem to only happen with I'm not sure if it is the same issue or not so I wanted to post here before opening a possibly duplicate issue. |
the issue with a local PostgreSQL install?: Yes, I can reproduce it locally
uvloop?: No, the issue is not producible with asyncio only with anyio
Hi, I have a Fast API application that uses
SQLAlchemy
andasyncpg
. I opened up a discussion on the SQLAlchemy page here (full discussion) reporting a major problem that affected my application after an update they released.To summarize the problem and what we concluded in that discussion,
I asynchronously stream data from my API to a client using the
starlette
StreamingResponse
class which takes advantage ofanyio
under the hood. For some reason when theanyio
task group
gets cancelled before the stream is finished theasyncpg
terminate
function does not terminate the connection when theclose
function is used first, leaving it stuck in anidle in transaction
state. This causes connections to run up eventually stopping other applications from creating new connections.With some help from the SQLAlchemy folks, after some time working through the problem we were able to reproduce a small example of my problem using only the
asyncpg
andanyio
libraries here (Example of problem)Any help resolving this issue would be greatly appreciated! If you need any more info from me please do not hesitate to message back
Thanks in advance!
The text was updated successfully, but these errors were encountered: