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
883a9659
Commit
883a9659
authored
Feb 15, 2011
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted corrections to the patch to add WAL receiver replies.
Per reports from Fujii Masao.
parent
6a77e938
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
29 deletions
+42
-29
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+23
-23
src/backend/replication/walsender.c
src/backend/replication/walsender.c
+19
-6
No files found.
doc/src/sgml/config.sgml
View file @
883a9659
...
...
@@ -1984,29 +1984,6 @@ SET ENABLE_SEQSCAN TO OFF;
</listitem>
</varlistentry>
<varlistentry id="guc-wal-receiver-status-interval" xreflabel="wal_receiver_status_interval">
<term><varname>wal_receiver_status_interval</varname> (<type>integer</type>)</term>
<indexterm>
<primary><varname>wal_receiver_status_interval</> configuration parameter</primary>
</indexterm>
<listitem>
<para>
Specifies the minimum frequency, in seconds, for the WAL receiver
process on the standby to send information about replication progress
to the primary, where they can be seen using the
<literal>pg_stat_replication</literal> view. The standby will report
the last transaction log position it has written, the last position it
has flushed to disk, and the last position it has applied. Updates are
sent each time the write or flush positions changed, or at least as
often as specified by this parameter. Thus, the apply position may
lag slightly behind the true position. Setting this parameter to zero
disables status updates completely. This parameter can only be set in
the <filename>postgresql.conf</> file or on the server command line.
The default value is 10 seconds.
</para>
</listitem>
</varlistentry>
<varlistentry id="guc-vacuum-defer-cleanup-age" xreflabel="vacuum_defer_cleanup_age">
<term><varname>vacuum_defer_cleanup_age</varname> (<type>integer</type>)</term>
<indexterm>
...
...
@@ -2121,6 +2098,29 @@ SET ENABLE_SEQSCAN TO OFF;
</listitem>
</varlistentry>
<varlistentry id="guc-wal-receiver-status-interval" xreflabel="wal_receiver_status_interval">
<term><varname>wal_receiver_status_interval</varname> (<type>integer</type>)</term>
<indexterm>
<primary><varname>wal_receiver_status_interval</> configuration parameter</primary>
</indexterm>
<listitem>
<para>
Specifies the minimum frequency, in seconds, for the WAL receiver
process on the standby to send information about replication progress
to the primary, where they can be seen using the
<literal>pg_stat_replication</literal> view. The standby will report
the last transaction log position it has written, the last position it
has flushed to disk, and the last position it has applied. Updates are
sent each time the write or flush positions changed, or at least as
often as specified by this parameter. Thus, the apply position may
lag slightly behind the true position. Setting this parameter to zero
disables status updates completely. This parameter can only be set in
the <filename>postgresql.conf</> file or on the server command line.
The default value is 10 seconds.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
...
...
src/backend/replication/walsender.c
View file @
883a9659
...
...
@@ -89,6 +89,11 @@ static uint32 sendOff = 0;
*/
static
XLogRecPtr
sentPtr
=
{
0
,
0
};
/*
* Buffer for processing reply messages.
*/
static
StringInfoData
reply_message
;
/* Flags set by signal handlers for later service in main loop */
static
volatile
sig_atomic_t
got_SIGHUP
=
false
;
volatile
sig_atomic_t
walsender_shutdown_requested
=
false
;
...
...
@@ -469,7 +474,7 @@ ProcessRepliesIfAny(void)
switch
(
firstchar
)
{
/*
* 'd' means a standby reply wrapped in a C
OPY BOTH
packet.
* 'd' means a standby reply wrapped in a C
opyData
packet.
*/
case
'd'
:
ProcessStandbyReplyMessage
();
...
...
@@ -495,16 +500,15 @@ ProcessRepliesIfAny(void)
static
void
ProcessStandbyReplyMessage
(
void
)
{
static
StringInfoData
input_message
;
StandbyReplyMessage
reply
;
char
msgtype
;
initStringInfo
(
&
input
_message
);
resetStringInfo
(
&
reply
_message
);
/*
* Read the message contents.
*/
if
(
pq_getmessage
(
&
input
_message
,
0
))
if
(
pq_getmessage
(
&
reply
_message
,
0
))
{
ereport
(
COMMERROR
,
(
errcode
(
ERRCODE_PROTOCOL_VIOLATION
),
...
...
@@ -516,13 +520,16 @@ ProcessStandbyReplyMessage(void)
* Check message type from the first byte. At the moment, there is only
* one type.
*/
msgtype
=
pq_getmsgbyte
(
&
input
_message
);
msgtype
=
pq_getmsgbyte
(
&
reply
_message
);
if
(
msgtype
!=
'r'
)
{
ereport
(
COMMERROR
,
(
errcode
(
ERRCODE_PROTOCOL_VIOLATION
),
errmsg
(
"unexpected message type %c"
,
msgtype
)));
proc_exit
(
0
);
}
pq_copymsgbytes
(
&
input
_message
,
(
char
*
)
&
reply
,
sizeof
(
StandbyReplyMessage
));
pq_copymsgbytes
(
&
reply
_message
,
(
char
*
)
&
reply
,
sizeof
(
StandbyReplyMessage
));
elog
(
DEBUG2
,
"write %X/%X flush %X/%X apply %X/%X "
,
reply
.
write
.
xlogid
,
reply
.
write
.
xrecoff
,
...
...
@@ -559,6 +566,12 @@ WalSndLoop(void)
*/
output_message
=
palloc
(
1
+
sizeof
(
WalDataMessageHeader
)
+
MAX_SEND_SIZE
);
/*
* Allocate buffer that will be used for processing reply messages. As
* above, do this just once to reduce palloc overhead.
*/
initStringInfo
(
&
reply_message
);
/* Loop forever, unless we get an error */
for
(;;)
{
...
...
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