Is there a way to get insight into any running or ...
# orm-help
c
Is there a way to get insight into any running or blocked queries? My app has scheduled jobs that query with Prisma and it crashes after a few hours, I want to check and see if any of those jobs are keeping connections open since eventually Prisma throws a
Timed out fetching a new connection from the connection pool.
After throwing this error once it stops making queries for good until restarted. I’m sure it’s a bug in my code but don’t know how to get insight into why those existing connections aren’t getting cleaned up.