Re: How to monitor logical replication initial sync?

From: Peter Eisentraut <peter(dot)eisentraut(at)2ndquadrant(dot)com>
To: bricklen <bricklen(at)gmail(dot)com>, Doug Gorley <doug(at)gorley(dot)ca>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: How to monitor logical replication initial sync?
Date: 2018-04-09 18:09:06
Message-ID: 6ea88d04-45cb-1737-c89b-871c6f79f809@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general

On 3/15/18 09:19, bricklen wrote:
> How does one monitor the status or progress of an initial sync under
> logical replication?  For example:
>
> * I create a publication in database db_pub
> * I create a subscription in database db_sub
> * In 15 minutes I want to check an see that the initial sync is N%
> complete
>
> Is it possible to tell when the initial sync is complete, or better
> yet, how complete it is?
>
>
> ​This is a question I'm quite interested in as well (and one I do not
> have an answer to).​
>  
> ​Does anyone with more familiarity ​with logical replication have any
> suggestions on how to determine the status of the initial sync?

Something like

select * from pg_subscription_rel where srsubstate <> 'r' and srsubid =
(select oid from pg_subscription where subname = 'mysub');

The key is checking the srsubstate column for 'r' (ready).

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

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Don Seiler 2018-04-11 19:44:55 ERROR: invalid memory alloc in Pg 9.6.6
Previous Message Ertan Küçükoğlu 2018-04-09 15:49:48 SSL error: decryption failed or bad mac

Browse pgsql-general by date

  From Date Subject
Next Message Thomas Poty 2018-04-09 18:47:18 Re: algo for canceling a deadlocked transaction
Previous Message Peter Eisentraut 2018-04-09 17:45:08 Re: List all columns referencing an FK