Re: [HACKERS] logical replication and statistics

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: [HACKERS] logical replication and statistics
Дата
Msg-id CAFj8pRAq5fc_=QbD2ZmBrLbHyGPJ4jnXOVfgUrBP63f0zAsGwg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [HACKERS] logical replication and statistics  (Masahiko Sawada <sawada.mshk@gmail.com>)
Ответы Re: [HACKERS] logical replication and statistics  (Petr Jelinek <petr.jelinek@2ndquadrant.com>)
Список pgsql-hackers


2017-09-25 13:12 GMT+02:00 Masahiko Sawada <sawada.mshk@gmail.com>:
On Mon, Sep 25, 2017 at 12:58 AM, Pavel Stehule <pavel.stehule@gmail.com> wrote:
> Hi
>
> I did trivial example of logical replication (one table, one publication,
> one subscription)
>
> I am little bit surprised so after some work - the replication is working,
> the statistics are empty
>
> #master
> postgres=# select * from pg_stat_replication ;
> (0 rows)
>
> #slave
> postgres=# select * from pg_stat_subscription ;
> -[ RECORD 1 ]---------+---------
> subid                 | 16472
> subname               | test_sub
> pid                   |
> relid                 |
> received_lsn          |
> last_msg_send_time    |
> last_msg_receipt_time |
> latest_end_lsn        |
> latest_end_time       |
>
> Should be some enabled?
>

If the subscription is disabled, the statistics of subscription is
empty and no wal sender processes launch. The test_sub can start the
replication by ALTER SUBSCRIPTION test_sub ENABLE.

I used this subscriptions for and it was warking.

Regards

Pavel


Regards,

--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

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

Предыдущее
От: Kyotaro HORIGUCHI
Дата:
Сообщение: Re: [HACKERS] proposal - Default namespaces for XPath expressions(PostgreSQL 11)
Следующее
От: Kyotaro HORIGUCHI
Дата:
Сообщение: Re: [HACKERS] GUC for cleanup indexes threshold.