postgresql/src/backend/replication
Thomas Munro 5fc88c5d53 Replace pgwin32_is_junction() with lstat().
Now that lstat() reports junction points with S_IFLNK/S_ISLINK(), and
unlink() can unlink them, there is no need for conditional code for
Windows in a few places.  That was expressed by testing for WIN32 or
S_ISLNK, which we can now constant-fold.

The coding around pgwin32_is_junction() was a bit suspect anyway, as we
never checked for errors, and we also know that errors can be spuriously
reported because of transient sharing violations on this OS.  The
lstat()-based code has handling for that.

This also reverts 4fc6b6ee on master only.  That was done because
lstat() didn't previously work for symlinks (junction points), but now
it does.

Tested-by: Andrew Dunstan <andrew@dunslane.net>
Discussion: https://postgr.es/m/CA%2BhUKGLfOOeyZpm5ByVcAt7x5Pn-%3DxGRNCvgiUPVVzjFLtnY0w%40mail.gmail.com
2022-08-06 12:50:59 +12:00
..
libpqwalreceiver Allow users to skip logical replication of data having origin. 2022-07-21 08:47:38 +05:30
logical Refactor code in charge of grabbing the relations of a subscription 2022-07-27 19:50:06 +09:00
pgoutput Allow users to skip logical replication of data having origin. 2022-07-21 08:47:38 +05:30
.gitignore Support multiple synchronous standby servers. 2016-04-06 17:18:25 +09:00
Makefile Allow extensions to add new backup targets. 2022-03-15 13:22:04 -04:00
README code: replace 'master' with 'primary' where appropriate. 2020-07-08 12:57:23 -07:00
backup_manifest.c Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
basebackup.c Replace pgwin32_is_junction() with lstat(). 2022-08-06 12:50:59 +12:00
basebackup_copy.c Refactor sending of DataRow messages in replication protocol 2022-07-06 08:42:56 +02:00
basebackup_gzip.c Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
basebackup_lz4.c Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
basebackup_progress.c Mark a few 'bbsink' related functions / variables static. 2022-05-12 09:11:31 -07:00
basebackup_server.c Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
basebackup_sink.c Fix collection of typos in the code and the documentation 2022-03-15 11:29:35 +09:00
basebackup_target.c Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
basebackup_throttle.c Mark a few 'bbsink' related functions / variables static. 2022-05-12 09:11:31 -07:00
basebackup_zstd.c Pre-beta mechanical code beautification. 2022-05-12 15:17:30 -04:00
repl_gram.y Indent C code in flex and bison files 2022-05-13 07:17:29 +02:00
repl_scanner.l Indent C code in flex and bison files 2022-05-13 07:17:29 +02:00
slot.c Revert 019_replslot_limit.pl related debugging aids. 2022-07-05 11:01:10 -07:00
slotfuncs.c Create routine able to set single-call SRFs for Materialize mode 2022-03-07 10:26:29 +09:00
syncrep.c Update copyright for 2022 2022-01-07 19:04:57 -05:00
syncrep_gram.y Update copyright for 2022 2022-01-07 19:04:57 -05:00
syncrep_scanner.l Update copyright for 2022 2022-01-07 19:04:57 -05:00
walreceiver.c Remove dead pread and pwrite replacement code. 2022-08-05 09:49:21 +12:00
walreceiverfuncs.c Split xlog.c into xlog.c and xlogrecovery.c. 2022-02-16 09:30:38 +02:00
walsender.c Replace many MemSet calls with struct initialization 2022-07-16 08:50:49 +02:00

README

src/backend/replication/README

Walreceiver - libpqwalreceiver API
----------------------------------

The transport-specific part of walreceiver, responsible for connecting to
the primary server, receiving WAL files and sending messages, is loaded
dynamically to avoid having to link the main server binary with libpq.
The dynamically loaded module is in libpqwalreceiver subdirectory.

The dynamically loaded module implements a set of functions with details
about each one of them provided in src/include/replication/walreceiver.h.

This API should be considered internal at the moment, but we could open it
up for 3rd party replacements of libpqwalreceiver in the future, allowing
pluggable methods for receiving WAL.

Walreceiver IPC
---------------

When the WAL replay in startup process has reached the end of archived WAL,
restorable using restore_command, it starts up the walreceiver process
to fetch more WAL (if streaming replication is configured).

Walreceiver is a postmaster subprocess, so the startup process can't fork it
directly. Instead, it sends a signal to postmaster, asking postmaster to launch
it. Before that, however, startup process fills in WalRcvData->conninfo
and WalRcvData->slotname, and initializes the starting point in
WalRcvData->receiveStart.

As walreceiver receives WAL from the primary server, and writes and flushes
it to disk (in pg_wal), it updates WalRcvData->flushedUpto and signals
the startup process to know how far WAL replay can advance.

Walreceiver sends information about replication progress to the primary server
whenever it either writes or flushes new WAL, or the specified interval elapses.
This is used for reporting purpose.

Walsender IPC
-------------

At shutdown, postmaster handles walsender processes differently from regular
backends. It waits for regular backends to die before writing the
shutdown checkpoint and terminating pgarch and other auxiliary processes, but
that's not desirable for walsenders, because we want the standby servers to
receive all the WAL, including the shutdown checkpoint, before the primary
is shut down. Therefore postmaster treats walsenders like the pgarch process,
and instructs them to terminate at PM_SHUTDOWN_2 phase, after all regular
backends have died and checkpointer has issued the shutdown checkpoint.

When postmaster accepts a connection, it immediately forks a new process
to handle the handshake and authentication, and the process initializes to
become a backend. Postmaster doesn't know if the process becomes a regular
backend or a walsender process at that time - that's indicated in the
connection handshake - so we need some extra signaling to let postmaster
identify walsender processes.

When walsender process starts up, it marks itself as a walsender process in
the PMSignal array. That way postmaster can tell it apart from regular
backends.

Note that no big harm is done if postmaster thinks that a walsender is a
regular backend; it will just terminate the walsender earlier in the shutdown
phase. A walsender will look like a regular backend until it's done with the
initialization and has marked itself in PMSignal array, and at process
termination, after unmarking the PMSignal slot.

Each walsender allocates an entry from the WalSndCtl array, and tracks
information about replication progress. User can monitor them via
statistics views.


Walsender - walreceiver protocol
--------------------------------

See manual.