Re: Correct query to check streaming replication lag

From: Sameer Kumar <sameer(dot)kumar(at)ashnik(dot)com>
To: Granthana Biswas <granthana(at)zedo(dot)com>
Cc: PostgreSQL General Discussion Forum <pgsql-general(at)postgresql(dot)org>
Subject: Re: Correct query to check streaming replication lag
Date: 2014-01-17 09:16:55
Message-ID: CADp-Sm5Gevh2s2as+Omm2HEYoP26LNnHHZ+MKYKKQE=nn_BZ+g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, Jan 14, 2014 at 2:31 PM, Granthana Biswas <granthana(at)zedo(dot)com>wrote:

> Can anyone please tell me which of the following is the correct
> replication lag query to find streaming replication lag in seconds?
>
> IMHO none is 'correct'. :-)

1. SELECT extract(seconds from (now() - pg_last_xact_replay_timestamp()))
> AS time_lag;
>
> This is the difference between now and last replayed log. What if the last
transaction on master has happened a few minutes ago?

> 2. SELECT CASE WHEN pg_last_xlog_receive_location() =
> pg_last_xlog_replay_location() THEN 0 ELSE EXTRACT (EPOCH FROM now() -
> pg_last_xact_replay_timestamp()) END AS log_delay;
>

For reason same as above, this won't be exact but the most accurate you can
get.

Best Regards,
*Sameer Kumar | Database Consultant*

*ASHNIK PTE. LTD.*101 Cecil Street, #11-11 Tong Eng Building, Singapore
069533
M : *+65 8110 0350 <%2B65%208110%200350>* T: +65 6438 3504 | www.ashnik.com
www.facebook.com/ashnikbiz | www.twitter.com/ashnikbiz

[image: email patch]

This email may contain confidential, privileged or copyright material and
is solely for the use of the intended recipient(s).

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Granthana Biswas 2014-01-17 09:31:20 Re: Correct query to check streaming replication lag
Previous Message Laurence Rowe 2014-01-17 08:20:04 json_array_elements_text?