Re: BUG #17645: Strange queries that stuck in database system

From: Julien Rouhaud <rjuju123(at)gmail(dot)com>
To: thien(dot)phan(at)apollo(dot)edu(dot)vn, pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #17645: Strange queries that stuck in database system
Date: 2022-10-17 08:15:16
Message-ID: 20221017081516.g2elezml2fppsubf@jrouhaud
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hi,

On Sun, Oct 16, 2022 at 11:43:24PM +0000, PG Bug reporting form wrote:
> The following bug has been logged on the website:
>
> Bug reference: 17645
> Logged by: Thien, Phan Phuoc
> Email address: thien(dot)phan(at)apollo(dot)edu(dot)vn
> PostgreSQL version: 14.0

Unrelated, but you should definitely update to the latest minor version (so
14.5 right now).

> Operating system: Windows Server 2012 R2
> Description:
>
> When I run this query
>
> SELECT NOW() - query_start AS elapsed, pid, client_addr, query,
> query_start, *
> FROM pg_stat_activity
> WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'
> ORDER BY query_start DESc;
>
> I noticed that there are many queries (as below) that create many Windows
> processes and CPU is 100%. Is it a bug? Please help!

Nothing here looks like a bug. Note that your query is incorrect as there's a
dedicated "state" field to give this information since version 9.2, so a bit
more than 10 years ago. You can refer to
https://www.postgresql.org/docs/14/monitoring-stats.html#MONITORING-PG-STAT-ACTIVITY-VIEW
for more details about this view.

I'm not sure if you had question related to the rest of the message, but if you
do please send a message to pgsql-general list instead
(https://www.postgresql.org/list/).

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message hubert depesz lubaczewski 2022-10-17 09:13:11 Re: WAL segments removed from primary despite the fact that logical replication slot needs it.
Previous Message Kyotaro Horiguchi 2022-10-17 06:53:07 Re: WAL segments removed from primary despite the fact that logical replication slot needs it.