Re: query that canceled isnt logged

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: query that canceled isnt logged
Дата
Msg-id 28518.1575817502@sss.pgh.pa.us
обсуждение исходный текст
Ответ на query that canceled isnt logged  (Mariel Cherkassky <mariel.cherkassky@gmail.com>)
Ответы Re: query that canceled isnt logged  (Mariel Cherkassky <mariel.cherkassky@gmail.com>)
Список pgsql-performance
Mariel Cherkassky <mariel.cherkassky@gmail.com> writes:
> ...
> Therefore, my theory was that the validation query is taking more than 2
> seconds.  I decided to log all the statements(log_statements=all) that are
> running in order to see for how long the validation query is running in the
> db (log_min_duration_statement wont be helpful here because the query is
> canceled and I wont be able to see its duration..).
> The weird thing is that I dont see before that error any log message that
> indicate that the query was running. I hoped to see the following msg in
> the db log :
> 2019-12-08 00:04:55 IST DB 2695  LOG:  *execute *<unnamed>: select 1 as test
> but I dont see any execute msg of this query , I just see the ERROR msg :
>   2019-12-08 00:04:56 IST DB 10035  ERROR:  canceling statement due to user
> request
> 2019-12-08 00:04:56 IST DB 10035  STATEMENT:  select 1 as test

Hm.  Perhaps you should *also* turn on log_min_duration_statement = 0,
so that the parse and bind phases log something.  Maybe one of them
is taking a long time (hard to see why...)

            regards, tom lane



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

Предыдущее
От: Mariel Cherkassky
Дата:
Сообщение: query that canceled isnt logged
Следующее
От: Mariel Cherkassky
Дата:
Сообщение: Re: query that canceled isnt logged