Replies: 1 comment 1 reply
-
@ezorita is this a supabase connection URL? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am sharing a prisma postgresql connection among many threads and eventually hitting the connection pool limit.
Prisma docs suggest to either append
?connection_limit=
to the database URL or pass an argument to theprisma.connect()
method, but neither of them seem to be supported in prisma-python.I see that the Prisma class constructor allows to set the
http.limits
but the defaults are 1000 connection and does not seem to match what prisma is reporting.Any help will be appreciated, thanks!
Beta Was this translation helpful? Give feedback.
All reactions