Hello!
A bit about our setup:
We're using Lambdas, an Aurora Cluster with Postgresql and Prisma ORM.
We setup accelerate and are able to query our DB through accelerate.
Our issue is with the connection pool size, accelerate is only opening 5 connections to our cluster, even if we set the connection_limit to 100 in our DB URL. ([dbURL]?connection_limit=100). As mentioned in the documentation https://www.prisma.io/docs/accelerate/connection-pooling#configuring-the-connection-pool-size.
Are we missing something in our configuration to be able to open more connections?
The associated error in our logs:
{"type":"UnknownJsonError","body":{"code":"P6008","message":"Accelerate was not able to connect to your database. The underlying error is: Too many failed attempts to query database. Try again after 2024-02-02T22:33:34.799Z"}}
Thanks 🙏