Re: Metric to calculate WAL size left to transfer to Standby

2021-05-08 Thread Viral Shah
Hello Laurenz, The above metric works fine for my primary server. However, We have a cascading setup in our production system. This particular query doesn't work for my intermediate server which is standby to the primary server but also a master to one more standby server. We get the following err

Re: Metric to calculate WAL size left to transfer to Standby

2021-04-17 Thread Viral Shah
Hello Laurenz, Thank you so much for sending the query. It was exactly what I needed. I just made 1 modification to beautify the transfer and replay lag and I can see the size in bytes. SELECT application_name, pg_size_pretty(pg_wal_lsn_diff(pg_current_wal_lsn(), flush_lsn)) AS transfer_lag, p

Re: Metric to calculate WAL size left to transfer to Standby

2021-04-15 Thread Laurenz Albe
On Wed, 2021-04-14 at 17:50 -0400, Viral Shah wrote: > We have a PostgreSQL 10.12 cluster of servers in two different data centers. > Off lately, in the case of a large WAL generation, we are seeing replication > delay between the master and the standby server. These delays have off lately > bee

Metric to calculate WAL size left to transfer to Standby

2021-04-15 Thread Viral Shah
Hello All, We have a PostgreSQL 10.12 cluster of servers in two different data centers. Off lately, in the case of a large WAL generation, we are seeing replication delay between the master and the standby server. These delays have off lately been there for an unusually long time. I was wondering