diff options
author | Amit Kapila <akapila@postgresql.org> | 2024-03-25 16:34:33 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2024-03-25 16:34:33 +0530 |
commit | a11f330b5584f2430371d68871e00f5c63735299 (patch) | |
tree | b53cafab5f97bb5440db906e20ca0f38e46a0fd9 /doc/src | |
parent | 0f7863afef67e462574fe5af6317e26a2f2d47fb (diff) | |
download | postgresql-a11f330b5584f2430371d68871e00f5c63735299.tar.gz postgresql-a11f330b5584f2430371d68871e00f5c63735299.zip |
Track last_inactive_time in pg_replication_slots.
This commit adds a new property called last_inactive_time for slots. It is
set to 0 whenever a slot is made active/acquired and set to the current
timestamp whenever the slot is inactive/released or restored from the disk.
Note that we don't set the last_inactive_time for the slots currently being
synced from the primary to the standby because such slots are typically
inactive as decoding is not allowed on those.
The 'last_inactive_time' will be useful on production servers to debug and
analyze inactive replication slots. It will also help to know the lifetime
of a replication slot - one can know how long a streaming standby, logical
subscriber, or replication slot consumer is down.
The 'last_inactive_time' will also be useful to implement inactive
timeout-based replication slot invalidation in a future commit.
Author: Bharath Rupireddy
Reviewed-by: Bertrand Drouvot, Amit Kapila, Shveta Malik
Discussion: https://www.postgresql.org/message-id/CALj2ACW4aUe-_uFQOjdWCEN-xXoLGhmvRFnL8SNw_TZ5nJe+aw@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/system-views.sgml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index b5da476c206..5f4165a945d 100644 --- a/doc/src/sgml/system-views.sgml +++ b/doc/src/sgml/system-views.sgml @@ -2525,6 +2525,16 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx <row> <entry role="catalog_table_entry"><para role="column_definition"> + <structfield>last_inactive_time</structfield> <type>timestamptz</type> + </para> + <para> + The time at which the slot became inactive. + <literal>NULL</literal> if the slot is currently being used. + </para></entry> + </row> + + <row> + <entry role="catalog_table_entry"><para role="column_definition"> <structfield>conflicting</structfield> <type>bool</type> </para> <para> |