Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
7ba6e4f0
Commit
7ba6e4f0
authored
Nov 09, 2010
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add monitoring function pg_last_xact_replay_timestamp.
Fujii Masao, with a little wordsmithing by me.
parent
844ed5dc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
1 deletion
+41
-1
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+19
-0
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+18
-0
src/include/access/xlog_internal.h
src/include/access/xlog_internal.h
+1
-0
src/include/catalog/catversion.h
src/include/catalog/catversion.h
+1
-1
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+2
-0
No files found.
doc/src/sgml/func.sgml
View file @
7ba6e4f0
...
...
@@ -13551,6 +13551,9 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
<indexterm>
<primary>
pg_last_xlog_replay_location
</primary>
</indexterm>
<indexterm>
<primary>
pg_last_xact_replay_timestamp
</primary>
</indexterm>
<para>
The functions shown in
<xref
...
...
@@ -13605,6 +13608,22 @@ postgres=# SELECT * FROM pg_xlogfile_name_offset(pg_stop_backup());
the function returns NULL.
</entry>
</row>
<row>
<entry>
<literal><function>
pg_last_xact_replay_timestamp()
</function></literal>
</entry>
<entry><type>
timestamp with time zone
</type></entry>
<entry>
Get timestamp of last transaction replayed during recovery.
This is the time at which the commit or abort WAL record for that
transaction was generated.
If no transactions have been replayed during recovery, this function
returns NULL. Otherwise, if recovery is still in progress this will
increase monotonically. If recovery has completed then this value will
remain static at the value of the last transaction applied during that
recovery. When the server has been started normally without recovery
the function returns NULL.
</entry>
</row>
</tbody>
</tgroup>
</table>
...
...
src/backend/access/transam/xlog.c
View file @
7ba6e4f0
...
...
@@ -5604,6 +5604,24 @@ GetLatestXTime(void)
return
xtime
;
}
/*
* Returns timestamp of latest processed commit/abort record.
*
* When the server has been started normally without recovery the function
* returns NULL.
*/
Datum
pg_last_xact_replay_timestamp
(
PG_FUNCTION_ARGS
)
{
TimestampTz
xtime
;
xtime
=
GetLatestXTime
();
if
(
xtime
==
0
)
PG_RETURN_NULL
();
PG_RETURN_TIMESTAMPTZ
(
xtime
);
}
/*
* Returns bool with current recovery mode, a global state.
*/
...
...
src/include/access/xlog_internal.h
View file @
7ba6e4f0
...
...
@@ -271,6 +271,7 @@ extern Datum pg_current_xlog_location(PG_FUNCTION_ARGS);
extern
Datum
pg_current_xlog_insert_location
(
PG_FUNCTION_ARGS
);
extern
Datum
pg_last_xlog_receive_location
(
PG_FUNCTION_ARGS
);
extern
Datum
pg_last_xlog_replay_location
(
PG_FUNCTION_ARGS
);
extern
Datum
pg_last_xact_replay_timestamp
(
PG_FUNCTION_ARGS
);
extern
Datum
pg_xlogfile_name_offset
(
PG_FUNCTION_ARGS
);
extern
Datum
pg_xlogfile_name
(
PG_FUNCTION_ARGS
);
extern
Datum
pg_is_in_recovery
(
PG_FUNCTION_ARGS
);
...
...
src/include/catalog/catversion.h
View file @
7ba6e4f0
...
...
@@ -53,6 +53,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 20101
030
1
#define CATALOG_VERSION_NO 20101
109
1
#endif
src/include/catalog/pg_proc.h
View file @
7ba6e4f0
...
...
@@ -3383,6 +3383,8 @@ DATA(insert OID = 3820 ( pg_last_xlog_receive_location PGNSP PGUID 12 1 0 0 f f
DESCR
(
"current xlog flush location"
);
DATA
(
insert
OID
=
3821
(
pg_last_xlog_replay_location
PGNSP
PGUID
12
1
0
0
f
f
f
t
f
v
0
0
25
""
_null_
_null_
_null_
_null_
pg_last_xlog_replay_location
_null_
_null_
_null_
));
DESCR
(
"last xlog replay location"
);
DATA
(
insert
OID
=
3830
(
pg_last_xact_replay_timestamp
PGNSP
PGUID
12
1
0
0
f
f
f
t
f
v
0
0
1184
""
_null_
_null_
_null_
_null_
pg_last_xact_replay_timestamp
_null_
_null_
_null_
));
DESCR
(
"timestamp of last replay xact"
);
DATA
(
insert
OID
=
2621
(
pg_reload_conf
PGNSP
PGUID
12
1
0
0
f
f
f
t
f
v
0
0
16
""
_null_
_null_
_null_
_null_
pg_reload_conf
_null_
_null_
_null_
));
DESCR
(
"reload configuration files"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment