Re: BUG #14559: Error message of too many clients.

From: Terje Elde <terje(at)elde(dot)net>
To: sujitm(at)planittesting(dot)com
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #14559: Error message of too many clients.
Date: 2017-02-22 14:53:06
Message-ID: 934A9316-8258-4568-A351-167CB61869A6@elde.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


> On 21 Feb 2017, at 07:50, sujitm(at)planittesting(dot)com wrote:
>
> We have connected postgres to Dynatrace 6.3 While connecting the dynatrace
> performance warehouse error is shown as Fatal:Too many clients already
> connected even the number of actual connected clients is very minimum. The
> maximum limit set for connection of clients is 200.

You can check out which active sessions you have, if you:

SELECT * FROM pg_stat_activity;

Most likely this is due to the number of connections, so it would need to be fixed somewhere else, in the clients, pooler or similar.

You might also want to look into pgbouncer, which can pool connections for you.

Terje

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message John McKown 2017-02-22 15:14:24 Re: Error mtk 11009
Previous Message isayko.alexey 2017-02-22 11:14:46 BUG #14563: count(*) gives a wrong result in PostgreSQL for some regex with pg_trm/GIN index