-4

there's someone who knows this error " Sorry too many clients are already logged" ,even if i increase number of connection pool size in my persistence like that.i still have it Any help please this error blocks my progress !!!

1 Answers1

0

That error points at a connection leak. If you create new connections without releasing all of them, you'll eventually run out!

Have a look at pg_activity. It's a "top" for Postgres and can often quickly identify the source of the leak. Another option is to set Postgres to more verbose logging and analyse the log file.

Andomar
  • 232,371
  • 49
  • 380
  • 404