Re: logging of Logical Decoding

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: logging of Logical Decoding
Дата
Msg-id 549AE96A.6010804@aklaver.com
обсуждение исходный текст
Ответ на Re: logging of Logical Decoding  (Andrey Lizenko <lizenko79@gmail.com>)
Ответы Re: logging of Logical Decoding  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On 12/24/2014 07:53 AM, Andrey Lizenko wrote:
> I've restarted server once again to be sure.
>
> For this commands:
>
>     postgres@ubuntu12-vm:/mnt/data4$ psql
>     psql (9.4.0)
>     Type "help" for help.
>     postgres=# show log_error_verbosity ;
>       log_error_verbosity
>     ---------------------
>       terse
>     (1 row)
>     postgres=# SELECT * FROM
>     pg_logical_slot_get_changes('regression_slot', NULL, NULL);
>       location | xid | data
>     ----------+-----+------
>     (0 rows)
>
>
> I can see the following log:
>
>       2014-12-24 10:45:01 EST LOG:  database system was shut down at
>     2014-12-24 10:44:52 EST
>       2014-12-24 10:45:01 EST LOG:  database system is ready to accept
>     connections
>       2014-12-24 10:45:01 EST LOG:  autovacuum launcher started
>       2014-12-24 10:45:23 EST LOG:  starting logical decoding for slot
>     "regression_slot"
>       2014-12-24 10:45:23 EST STATEMENT:  SELECT * FROM
>     pg_logical_slot_get_changes('regression_slot', NULL, NULL);
>       2014-12-24 10:45:23 EST LOG:  logical decoding found consistent
>     point at A/75000100
>       2014-12-24 10:45:23 EST STATEMENT:  SELECT * FROM
>     pg_logical_slot_get_changes('regression_slot', NULL, NULL);
>
>
> So it seems terse verbosity doesn't help. Bug? Or something wrong in my
> config? As I said before, it is created from scratch and almost default,
> expect log_line_prefix

Well you wanted to reduce verbosity level which is what happens when you
set to terse.

What you are looking for is to eliminate logging the statement entirely?

I would have though having log_statement = none would prevent that.

Someone else will have to comment on why that is not so?

>
>



--
Adrian Klaver
adrian.klaver@aklaver.com


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

Предыдущее
От: Andrey Lizenko
Дата:
Сообщение: Re: logging of Logical Decoding
Следующее
От: Tom Lane
Дата:
Сообщение: Re: logging of Logical Decoding