-
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
Why is asyncpg doing type introspection on json types? #1206
Comments
Hey team, would appreciate any thoughts on how this could be accomplished as we're seeing this problem scale with the number of connections. I took a little bit of a stab in the codebase here to see if I could get something working but believe I'm firmly out of my depth. |
Some more looking: it seems that JSON and JSONB should already be in the type map. So the question remains: why is there type introspection happening? Is it because my Python type for the column is |
This seems to me like an RDS/Aurora bug where access to the system catalog is sometimes this slow. I mean this:
is a trivial query looking thing up by an indexed key. It should run in well under a millisecond. That said, it should be possible to avoid running it when setting codecs on builtin types. |
@elprans Thank you! Looking forward to the next release! |
My understanding is that Aurora is a server less architecture, and so can be victim to cold starts. This is likely what we're seeing, but exactly as you say:
I can't say I fully understand the change but I'm excited to see these queries disappear from my dashboard. Thank you! For the future, if I did have a custom type in the database, is there a way I could I preregister it with asyncpg on connection creation and get the same functionality I get from SQLAlchemy's pools? |
Yes, this is what the |
0.30.0
15.3
the issue with a local PostgreSQL install?: RDS, and yes
3.12.6
poetry
Spinning out of #1138 (comment) because it feels like a different discussion.
I'm running a FastAPI service that connects to AWS RDS, and needs to refresh credentials every 15 minutes. Normally, the type introspection queries don't take up much time because they run once per connection, but I have a lot of churn in my connection pool so run them a decent number of times. Recently I'm seen more traffic and thus more connections being created, and with more connections, the more often we're likely to see slow queries on things that are normally fast.
At a very high level, my service is set to connect to the database with:
Even abnormally slow type introspection queries aren't horrible but they are noticeable, as in the example below these 2 queries took more than 50% of the service's total response time.
Debugging locally a little with
command: ["postgres", "-c", "log_statement=all"]
in mydocker-compose.yml
, I can see what typeasyncpg
needs to examine:These correspond to the
JSON
andJSONB
types, respectively, not even custom types.The actual question: how can I pre-register the
JSON
andJSONB
types in each connection so I don't have to keep running the introspection query? I've tried thejson_{de,}serializer
argument to the SQLAlchemy engine, as well as trying to hook into SQLAlchemy events to intercept connection creation and set the codecs.The text was updated successfully, but these errors were encountered: