This will be addressed with the new process reuse work but wanted to document an issue:
Prisma spawns an rust executable to do connection management with the db. Right now every time a function is invoked it spawns another one. This shouldn't be a problem but for some reason when the node process exits the rust binary sticks around. Restarting sst kills them all and I have to do this periodically as my db connections get exhausted. Wonder why it's not exiting with the node process