Re: BUG #15759: Lot of idle connection created by "SET extra_float_digits = 3"

From: anup singh <midas(dot)anup(at)gmail(dot)com>
To: Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #15759: Lot of idle connection created by "SET extra_float_digits = 3"
Date: 2019-04-16 12:01:42
Message-ID: CA+i39Pw0C6Mg290Y-7nsOkot-OFbS0TxqjfRMG6DyU=1SnehwQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hi Tomas,

Thanks for your response. Kindly see the below screen shot where we have
lot of idle connection which is reaching max pool size soon, but the actual
request is only one.

[image: image.png]

On Tue, Apr 16, 2019 at 5:29 PM anup singh <midas(dot)anup(at)gmail(dot)com> wrote:

> Hi Tomas,
>
> Thanks for your response. Kindly see the below screen shot where we have
> lot of idle connection which is reaching max pool size soon, but the actual
> request is only one.
> [image: image.png]
>
>
> On Tue, Apr 16, 2019 at 5:15 PM Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>
> wrote:
>
>> On Tue, Apr 16, 2019 at 11:04:25AM +0000, PG Bug reporting form wrote:
>> >The following bug has been logged on the website:
>> >
>> >Bug reference: 15759
>> >Logged by: anup singh
>> >Email address: midas(dot)anup(at)gmail(dot)com
>> >PostgreSQL version: 10.7
>> >Operating system: linux
>> >Description:
>> >
>> >Lot of idle connection created by "SET extra_float_digits = 3" which is
>> >killing our applicaiton.
>> >
>>
>> SET extra_float_digits = 3 (or any other SET command) does not create any
>> connections at all. It's much more likely your application opens a new
>> connection, executes the SET command on it (so it's in pg_stat_activity)
>> and then goes to do something else.
>>
>> If that's not the case, we need much more information. Why do you think
>> the SET command is creating idle connections?
>>
>> regards
>>
>> --
>> Tomas Vondra http://www.2ndQuadrant.com
>> PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
>>
>>

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tomas Vondra 2019-04-16 12:37:05 Re: BUG #15759: Lot of idle connection created by "SET extra_float_digits = 3"
Previous Message Tomas Vondra 2019-04-16 11:45:51 Re: BUG #15759: Lot of idle connection created by "SET extra_float_digits = 3"