Hey, I have an AWS ECS task with 1vcpu which is us...
# orm-help
a
Hey, I have an AWS ECS task with 1vcpu which is using prisma. Does that mean it has 1 core, so prisma only has 3 connections?
k
Your calculation should be based on the database server, not the prisma server as I understand.
r
@Ahmar Suhail 👋 Yes that’s correct. You can configure the connection pool explicitly but that’s the default you’ll get 🙂
k
@Ryan I thought it was based on the database server since all connection creation will be done there, and memory management, etc.
a
nice, thanks! 🙂
r
@khareta This is the default no. of connections Prisma would open. This is based on your system as the binary is running there and needs enough CPU to handle database connections.