Hi folks, to those who have used AWS Fargate / autoscaling to deploy their api with prisma, how do you deal with the connection_pool? We have a strange problem when our autoscaling kicks in.
Initially, we have a container with connection-pool of 3. Once a peak arises, we get a second container, and strangely, the first container suddenly only has a connection-pool of 1. Once the second container disappears, that connection-pool of 1 remains (it stays incredibly slow), and all queries for some reason go through this pool.
How does one deal with this distribution of connection pools? Can container 1 somehow get its original connection-pool size back?