3 .\" Author: The PostgreSQL Global Development Group
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
6 .\" Manual: PostgreSQL 18.0 Documentation
7 .\" Source: PostgreSQL 18.0
10 .TH "PG_REWIND" "1" "2025" "PostgreSQL 18.0" "PostgreSQL 18.0 Documentation"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 pg_rewind \- synchronize a PostgreSQL data directory with another data directory that was forked from it
33 .HP \w'\fBpg_rewind\fR\ 'u
34 \fBpg_rewind\fR [\fIoption\fR...] {\fB\-D\fR | \fB\-\-target\-pgdata\fR}\fI directory\fR {\fB\-\-source\-pgdata=\fR\fB\fIdirectory\fR\fR | \fB\-\-source\-server=\fR\fB\fIconnstr\fR\fR}
38 is a tool for synchronizing a PostgreSQL cluster with another copy of the same cluster, after the clusters\*(Aq timelines have diverged\&. A typical scenario is to bring an old primary server back online after failover as a standby that follows the new primary\&.
40 After a successful rewind, the state of the target data directory is analogous to a base backup of the source data directory\&. Unlike taking a new base backup or using a tool like
43 does not require comparing or copying unchanged relation blocks in the cluster\&. Only changed blocks from existing relation files are copied; all other files, including new relation files, configuration files, and WAL segments, are copied in full\&. As such the rewind operation is significantly faster than other approaches when the database is large and only a small fraction of blocks differ between the clusters\&.
46 examines the timeline histories of the source and target clusters to determine the point where they diverged, and expects to find WAL in the target cluster\*(Aqs
48 directory reaching all the way back to the point of divergence\&. The point of divergence can be found either on the target timeline, the source timeline, or their common ancestor\&. In the typical failover scenario where the target cluster was shut down soon after the divergence, this is not a problem, but if the target cluster ran for a long time after the divergence, its old WAL files might no longer be present\&. In this case, you can manually copy them from the WAL archive to the
54 option to automatically retrieve them from the WAL archive\&. The use of
56 is not limited to failover, e\&.g\&., a standby server can be promoted, run some write transactions, and then rewound to become a standby again\&.
59 pg_rewind, WAL replay needs to complete for the data directory to be in a consistent state\&. When the target server is started again it will enter archive recovery and replay all WAL generated in the source server from the last checkpoint before the point of divergence\&. If some of the WAL was no longer available in the source server when
61 was run, and therefore could not be copied by the
63 session, it must be made available when the target server is started\&. This can be done by creating a
65 file in the target data directory and by configuring a suitable
71 requires that the target server either has the
75 or data checksums enabled when the cluster was initialized with
76 initdb\&. Neither of these are currently on by default\&.
79 on, but is enabled by default\&.
85 .nr an-no-space-flag 1
89 \fBWarning: Failures While Rewinding\fR
95 fails while processing, then the data folder of the target is likely not in a state that can be recovered\&. In such a case, taking a new fresh backup is recommended\&.
99 copies configuration files entirely from the source, it may be required to correct the configuration used for recovery before restarting the target server, especially if the target is reintroduced as a standby of the source\&. If you restart the server after the rewind operation has finished but without configuring recovery, the target may again diverge from the primary\&.
102 will fail immediately if it finds files it cannot write directly to\&. This can happen for example when the source and the target server use the same file mapping for read\-only SSL keys and certificates\&. If such files are present on the target server it is recommended to remove them before running
103 pg_rewind\&. After doing the rewind, some of those files may have been copied from the source, in which case it may be necessary to remove the data copied and restore back the set of links used before the rewind\&.
109 accepts the following command\-line arguments:
111 \fB\-D \fR\fB\fIdirectory\fR\fR
113 \fB\-\-target\-pgdata=\fR\fB\fIdirectory\fR\fR
115 This option specifies the target data directory that is synchronized with the source\&. The target server must be shut down cleanly before running
119 \fB\-\-source\-pgdata=\fR\fB\fIdirectory\fR\fR
121 Specifies the file system path to the data directory of the source server to synchronize the target with\&. This option requires the source server to be cleanly shut down\&.
124 \fB\-\-source\-server=\fR\fB\fIconnstr\fR\fR
126 Specifies a libpq connection string to connect to the source
128 server to synchronize the target with\&. The connection must be a normal (non\-replication) connection with a role having sufficient permissions to execute the functions used by
130 on the source server (see Notes section for details) or a superuser role\&. This option requires the source server to be running and accepting connections\&.
135 \fB\-\-write\-recovery\-conf\fR
139 and append connection settings to
140 postgresql\&.auto\&.conf
141 in the output directory\&. The dbname will be recorded only if the dbname was specified explicitly in the connection string or
142 environment variable\&.
144 is mandatory with this option\&.
151 Do everything except actually modifying the target directory\&.
160 will wait for all files to be written safely to disk\&. This option causes
162 to return without waiting, which is faster, but means that a subsequent operating system crash can leave the data directory corrupt\&. Generally, this option is useful for testing but should not be used on a production installation\&.
169 Enables progress reporting\&. Turning this on will deliver an approximate progress report while copying data from the source cluster\&.
174 \fB\-\-restore\-target\-wal\fR
177 \fIrestore_command\fR
178 defined in the target cluster configuration to retrieve WAL files from the WAL archive if these files are no longer available in the
183 \fB\-\-config\-file=\fR\fB\fIfilename\fR\fR
185 Use the specified main server configuration file for the target cluster\&. This affects
187 when it uses internally the
189 command for the rewind operation on this cluster (when retrieving
190 \fIrestore_command\fR
192 \fB\-c/\-\-restore\-target\-wal\fR
193 and when forcing a completion of crash recovery)\&.
198 Print verbose debugging output that is mostly useful for developers debugging
202 \fB\-\-no\-ensure\-shutdown\fR
205 requires that the target server is cleanly shut down before rewinding\&. By default, if the target server is not shut down cleanly,
207 starts the target server in single\-user mode to complete crash recovery first, and stops it\&. By passing this option,
209 skips this and errors out immediately if the server is not cleanly shut down\&. Users are expected to handle the situation themselves in that case\&.
212 \fB\-\-sync\-method=\fR\fB\fImethod\fR\fR
215 fsync, which is the default,
217 will recursively open and synchronize all files in the data directory\&. The search for files will follow symbolic links for the WAL directory and each configured tablespace\&.
221 may be used instead to ask the operating system to synchronize the whole file systems that contain the data directory, the WAL files, and each tablespace\&. See
222 recovery_init_sync_method
223 for information about the caveats to be aware of when using
226 This option has no effect when
235 Display version information, then exit\&.
242 Show help, then exit\&.
247 \fB\-\-source\-server\fR
250 also uses the environment variables supported by
255 The environment variable
257 specifies whether to use color in diagnostic messages\&. Possible values are
266 using an online cluster as source, a role having sufficient permissions to execute the functions used by
268 on the source cluster can be used instead of a superuser\&. Here is how to create such a role, named
276 CREATE USER rewind_user LOGIN;
277 GRANT EXECUTE ON function pg_catalog\&.pg_ls_dir(text, boolean, boolean) TO rewind_user;
278 GRANT EXECUTE ON function pg_catalog\&.pg_stat_file(text, boolean) TO rewind_user;
279 GRANT EXECUTE ON function pg_catalog\&.pg_read_binary_file(text) TO rewind_user;
280 GRANT EXECUTE ON function pg_catalog\&.pg_read_binary_file(text, bigint, bigint, boolean) TO rewind_user;
288 The basic idea is to copy all file system\-level changes from the source cluster to the target cluster:
298 Scan the WAL log of the target cluster, starting from the last checkpoint before the point where the source cluster\*(Aqs timeline history forked off from the target cluster\&. For each WAL record, record each data block that was touched\&. This yields a list of all the data blocks that were changed in the target cluster, after the source cluster forked off\&. If some of the WAL files are no longer available, try re\-running
302 option to search for the missing files in the WAL archive\&.
313 Copy all those changed blocks from the source cluster to the target cluster, either using direct file system access (\fB\-\-source\-pgdata\fR) or SQL (\fB\-\-source\-server\fR)\&. Relation files are now in a state equivalent to the moment of the last completed checkpoint prior to the point at which the WAL timelines of the source and target diverged plus the current state on the source of any blocks changed on the target after that divergence\&.
324 Copy all other files, including new relation files, WAL segments,
325 pg_xact, and configuration files from the source cluster to the target cluster\&. Similarly to base backups, the contents of the directories
333 are omitted from the data copied from the source cluster\&. The files
341 as well as any file or directory beginning with
342 pgsql_tmp, are omitted\&.
355 file to begin WAL replay at the checkpoint created at failover and configure the
357 file with a minimum consistency LSN defined as the result of
358 pg_current_wal_insert_lsn()
359 when rewinding from a live source or the last checkpoint LSN when rewinding from a stopped source\&.
370 When starting the target,
372 replays all the required WAL, resulting in a data directory in a consistent state\&.