Re: BUG #16145: Not able to terminate active session

Поиск
Список
Период
Сортировка
От Tomas Vondra
Тема Re: BUG #16145: Not able to terminate active session
Дата
Msg-id 20191203141147.lofq3gwn3u3vkkze@development
обсуждение исходный текст
Ответ на BUG #16145: Not able to terminate active session  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #16145: Not able to terminate active session  (MOHAN KUMAR DORAIRAJ <mohankumar.dorairaj@globalfoundries.com>)
Список pgsql-bugs
On Tue, Dec 03, 2019 at 01:18:50PM +0000, PG Bug reporting form wrote:
>The following bug has been logged on the website:
>
>Bug reference:      16145
>Logged by:          MOHAN KUMAR DORAIRAJ
>Email address:      mohankumar.dorairaj@globalfoundries.com
>PostgreSQL version: 11.2
>Operating system:   Red Hat Enterprise Linux Server release 7.6 (Maipo
>Description:
>
>Not able to terminate active session even though used below commands
>
>postgres=# SELECT pg_cancel_backend(16647);
> pg_cancel_backend
>-------------------
> t
>(1 row)
>
>postgres=# SELECT pg_terminate_backend(16647);
> pg_terminate_backend
>----------------------
> t
>(1 row)
>
>postgres=#  select pid,application_name FROM pg_stat_activity where
>application_name IS  NOT NULL AND state = 'active';
>  pid  |    application_name
>-------+------------------------
> 16647 | PostgreSQL JDBC Driver
> 19879 | psql
>

So what is happening in 16647? What query is it running? Can you attach
gdb to it and show us the backtrace?

It's probably running some CPU-intensive piece of code, not checking the
flags set by signal handlers, or something like that.

regards

-- 
Tomas Vondra                  http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services



В списке pgsql-bugs по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #16145: Not able to terminate active session
Следующее
От: MOHAN KUMAR DORAIRAJ
Дата:
Сообщение: Re: BUG #16145: Not able to terminate active session