]> granicus.if.org Git - postgresql/commitdiff
Make pg_stop_backup's wait_for_archive flag work on standbys.
authorRobert Haas <rhaas@postgresql.org>
Sat, 5 Aug 2017 14:49:26 +0000 (10:49 -0400)
committerRobert Haas <rhaas@postgresql.org>
Sat, 5 Aug 2017 14:49:26 +0000 (10:49 -0400)
Previously, it had no effect.  Now, if archive_mode=always, it will
work, and if not, you'll get a warning.

Masahiko Sawada, Michael Paquier, and Robert Haas.  The patch as
submitted also changed the behavior so that we would write and remove
history files on standbys, but that seems like material for a separate
patch to me.

Discussion: http://postgr.es/m/CAD21AoC2Xw6M=ZJyejq_9d_iDkReC_=rpvQRw5QsyzKQdfYpkw@mail.gmail.com

doc/src/sgml/backup.sgml
doc/src/sgml/func.sgml
src/backend/access/transam/xlog.c

index 7820de931cfb0287c292356e8c785754ff5342f4..0e7c6e20511f3d1ca4cf761cd60556c3de254351 100644 (file)
@@ -1012,10 +1012,15 @@ SELECT pg_start_backup('label', true);
 <programlisting>
 SELECT pg_stop_backup();
 </programlisting>
-     This terminates the backup mode and performs an automatic switch to
-     the next WAL segment.  The reason for the switch is to arrange for
-     the last WAL segment file written during the backup interval to be
-     ready to archive.
+     This function, when called on a primary, terminates the backup mode and
+     performs an automatic switch to the next WAL segment. The reason for the
+     switch is to arrange for the last WAL segment written during the backup
+     interval to be ready to archive.  When called on a standby, this function
+     only terminates backup mode.  A subsequent WAL segment switch will be
+     needed in order to ensure that all WAL files needed to restore the backup
+     can be archived; if the primary does not have sufficient write activity
+     to trigger one, <function>pg_switch_wal</function> should be executed on
+     the primary.
     </para>
    </listitem>
    <listitem>
index 36319222e6c5cec61133b9747146f7f86ed462e3..b43ec30a4e2b3ba4b7b172ec5d5b166a89711917 100644 (file)
@@ -18597,7 +18597,12 @@ postgres=# select pg_start_backup('label_goes_here');
     WAL to be archived.  This behavior is only useful for backup
     software which independently monitors WAL archiving. Otherwise, WAL
     required to make the backup consistent might be missing and make the backup
-    useless.
+    useless.  When this parameter is set to true, <function>pg_stop_backup</>
+    will wait for WAL to be archived when archiving is enabled; on the standby,
+    this means that it will wait only when <varname>archive_mode = always</>.
+    If write activity on the primary is low, it may be useful to run
+    <function>pg_switch_wal</> on the primary in order to trigger
+    an immediate segment switch.
    </para>
 
    <para>
index 3654543919f906e540c144c4fa6017542cead2b6..df4843f409363f74737e027526e4a15f8fbd275f 100644 (file)
@@ -10880,11 +10880,13 @@ do_pg_stop_backup(char *labelfile, bool waitforarchive, TimeLineID *stoptli_p)
         * backup. We have no way of checking if pg_control wasn't backed up last
         * however.
         *
-        * We don't force a switch to new WAL file and wait for all the required
-        * files to be archived. This is okay if we use the backup to start the
-        * standby. But, if it's for an archive recovery, to ensure all the
-        * required files are available, a user should wait for them to be
-        * archived, or include them into the backup.
+        * We don't force a switch to new WAL file but it is still possible to
+        * wait for all the required files to be archived if waitforarchive is
+        * true. This is okay if we use the backup to start a standby and fetch
+        * the missing WAL using streaming replication. But in the case of an
+        * archive recovery, a user should set waitforarchive to true and wait for
+        * them to be archived to ensure that all the required files are
+        * available.
         *
         * We return the current minimum recovery point as the backup end
         * location. Note that it can be greater than the exact backup end
@@ -10924,66 +10926,65 @@ do_pg_stop_backup(char *labelfile, bool waitforarchive, TimeLineID *stoptli_p)
                stoppoint = ControlFile->minRecoveryPoint;
                stoptli = ControlFile->minRecoveryPointTLI;
                LWLockRelease(ControlFileLock);
-
-               if (stoptli_p)
-                       *stoptli_p = stoptli;
-               return stoppoint;
        }
+       else
+       {
+               /*
+                * Write the backup-end xlog record
+                */
+               XLogBeginInsert();
+               XLogRegisterData((char *) (&startpoint), sizeof(startpoint));
+               stoppoint = XLogInsert(RM_XLOG_ID, XLOG_BACKUP_END);
+               stoptli = ThisTimeLineID;
 
-       /*
-        * Write the backup-end xlog record
-        */
-       XLogBeginInsert();
-       XLogRegisterData((char *) (&startpoint), sizeof(startpoint));
-       stoppoint = XLogInsert(RM_XLOG_ID, XLOG_BACKUP_END);
-       stoptli = ThisTimeLineID;
-
-       /*
-        * Force a switch to a new xlog segment file, so that the backup is valid
-        * as soon as archiver moves out the current segment file.
-        */
-       RequestXLogSwitch(false);
+               /*
+                * Force a switch to a new xlog segment file, so that the backup is
+                * valid as soon as archiver moves out the current segment file.
+                */
+               RequestXLogSwitch(false);
 
-       XLByteToPrevSeg(stoppoint, _logSegNo);
-       XLogFileName(stopxlogfilename, ThisTimeLineID, _logSegNo);
+               XLByteToPrevSeg(stoppoint, _logSegNo);
+               XLogFileName(stopxlogfilename, stoptli, _logSegNo);
 
-       /* Use the log timezone here, not the session timezone */
-       stamp_time = (pg_time_t) time(NULL);
-       pg_strftime(strfbuf, sizeof(strfbuf),
-                               "%Y-%m-%d %H:%M:%S %Z",
-                               pg_localtime(&stamp_time, log_timezone));
+               /* Use the log timezone here, not the session timezone */
+               stamp_time = (pg_time_t) time(NULL);
+               pg_strftime(strfbuf, sizeof(strfbuf),
+                                       "%Y-%m-%d %H:%M:%S %Z",
+                                       pg_localtime(&stamp_time, log_timezone));
 
-       /*
-        * Write the backup history file
-        */
-       XLByteToSeg(startpoint, _logSegNo);
-       BackupHistoryFilePath(histfilepath, ThisTimeLineID, _logSegNo,
-                                                 (uint32) (startpoint % XLogSegSize));
-       fp = AllocateFile(histfilepath, "w");
-       if (!fp)
-               ereport(ERROR,
-                               (errcode_for_file_access(),
-                                errmsg("could not create file \"%s\": %m",
-                                               histfilepath)));
-       fprintf(fp, "START WAL LOCATION: %X/%X (file %s)\n",
-                       (uint32) (startpoint >> 32), (uint32) startpoint, startxlogfilename);
-       fprintf(fp, "STOP WAL LOCATION: %X/%X (file %s)\n",
-                       (uint32) (stoppoint >> 32), (uint32) stoppoint, stopxlogfilename);
-       /* transfer remaining lines from label to history file */
-       fprintf(fp, "%s", remaining);
-       fprintf(fp, "STOP TIME: %s\n", strfbuf);
-       if (fflush(fp) || ferror(fp) || FreeFile(fp))
-               ereport(ERROR,
-                               (errcode_for_file_access(),
-                                errmsg("could not write file \"%s\": %m",
-                                               histfilepath)));
+               /*
+                * Write the backup history file
+                */
+               XLByteToSeg(startpoint, _logSegNo);
+               BackupHistoryFilePath(histfilepath, stoptli, _logSegNo,
+                                                         (uint32) (startpoint % XLogSegSize));
+               fp = AllocateFile(histfilepath, "w");
+               if (!fp)
+                       ereport(ERROR,
+                                       (errcode_for_file_access(),
+                                        errmsg("could not create file \"%s\": %m",
+                                                       histfilepath)));
+               fprintf(fp, "START WAL LOCATION: %X/%X (file %s)\n",
+                               (uint32) (startpoint >> 32), (uint32) startpoint, startxlogfilename);
+               fprintf(fp, "STOP WAL LOCATION: %X/%X (file %s)\n",
+                               (uint32) (stoppoint >> 32), (uint32) stoppoint, stopxlogfilename);
+               /* transfer remaining lines from label to history file */
+               fprintf(fp, "%s", remaining);
+               fprintf(fp, "STOP TIME: %s\n", strfbuf);
+               if (fflush(fp) || ferror(fp) || FreeFile(fp))
+                       ereport(ERROR,
+                                       (errcode_for_file_access(),
+                                        errmsg("could not write file \"%s\": %m",
+                                                       histfilepath)));
 
-       /*
-        * Clean out any no-longer-needed history files.  As a side effect, this
-        * will post a .ready file for the newly created history file, notifying
-        * the archiver that history file may be archived immediately.
-        */
-       CleanupBackupHistory();
+               /*
+                * Clean out any no-longer-needed history files.  As a side effect,
+                * this will post a .ready file for the newly created history file,
+                * notifying the archiver that history file may be archived
+                * immediately.
+                */
+               CleanupBackupHistory();
+       }
 
        /*
         * If archiving is enabled, wait for all the required WAL files to be
@@ -11005,13 +11006,16 @@ do_pg_stop_backup(char *labelfile, bool waitforarchive, TimeLineID *stoptli_p)
         * or you can set statement_timeout.  Also, some notices are issued to
         * clue in anyone who might be doing this interactively.
         */
-       if (waitforarchive && XLogArchivingActive())
+
+       if (waitforarchive &&
+               ((!backup_started_in_recovery && XLogArchivingActive()) ||
+                (backup_started_in_recovery && XLogArchivingAlways())))
        {
                XLByteToPrevSeg(stoppoint, _logSegNo);
-               XLogFileName(lastxlogfilename, ThisTimeLineID, _logSegNo);
+               XLogFileName(lastxlogfilename, stoptli, _logSegNo);
 
                XLByteToSeg(startpoint, _logSegNo);
-               BackupHistoryFileName(histfilename, ThisTimeLineID, _logSegNo,
+               BackupHistoryFileName(histfilename, stoptli, _logSegNo,
                                                          (uint32) (startpoint % XLogSegSize));
 
                seconds_before_warning = 60;