1 /*-------------------------------------------------------------------------
3 * pg_receivewal.c - receive streaming WAL data and write it
6 * Author: Magnus Hagander <magnus@hagander.net>
8 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
11 * src/bin/pg_basebackup/pg_receivewal.c
12 *-------------------------------------------------------------------------
15 #include "postgres_fe.h"
30 #include "access/xlog_internal.h"
31 #include "common/file_perm.h"
32 #include "common/logging.h"
33 #include "fe_utils/option_utils.h"
34 #include "getopt_long.h"
36 #include "receivelog.h"
37 #include "streamutil.h"
39 /* Time to sleep between reconnection attempts */
40 #define RECONNECT_SLEEP_TIME 5
43 static char *basedir
= NULL
;
44 static int verbose
= 0;
45 static int compresslevel
= 0;
46 static bool noloop
= false;
47 static int standby_message_timeout
= 10 * 1000; /* 10 sec = default */
48 static volatile sig_atomic_t time_to_stop
= false;
49 static bool do_create_slot
= false;
50 static bool slot_exists_ok
= false;
51 static bool do_drop_slot
= false;
52 static bool do_sync
= true;
53 static bool synchronous
= false;
54 static char *replication_slot
= NULL
;
55 static pg_compress_algorithm compression_algorithm
= PG_COMPRESSION_NONE
;
56 static XLogRecPtr endpos
= InvalidXLogRecPtr
;
59 static void usage(void);
60 static DIR *get_destination_dir(char *dest_folder
);
61 static void close_destination_dir(DIR *dest_dir
, char *dest_folder
);
62 static XLogRecPtr
FindStreamingStart(uint32
*tli
);
63 static void StreamLog(void);
64 static bool stop_streaming(XLogRecPtr xlogpos
, uint32 timeline
,
65 bool segment_finished
);
68 disconnect_atexit(void)
77 printf(_("%s receives PostgreSQL streaming write-ahead logs.\n\n"),
79 printf(_("Usage:\n"));
80 printf(_(" %s [OPTION]...\n"), progname
);
81 printf(_("\nOptions:\n"));
82 printf(_(" -D, --directory=DIR receive write-ahead log files into this directory\n"));
83 printf(_(" -E, --endpos=LSN exit after receiving the specified LSN\n"));
84 printf(_(" --if-not-exists do not error if slot already exists when creating a slot\n"));
85 printf(_(" -n, --no-loop do not loop on connection lost\n"));
86 printf(_(" --no-sync do not wait for changes to be written safely to disk\n"));
87 printf(_(" -s, --status-interval=SECS\n"
88 " time between status packets sent to server (default: %d)\n"), (standby_message_timeout
/ 1000));
89 printf(_(" -S, --slot=SLOTNAME replication slot to use\n"));
90 printf(_(" --synchronous flush write-ahead log immediately after writing\n"));
91 printf(_(" -v, --verbose output verbose messages\n"));
92 printf(_(" -V, --version output version information, then exit\n"));
93 printf(_(" -Z, --compress=METHOD[:DETAIL]\n"
94 " compress as specified\n"));
95 printf(_(" -?, --help show this help, then exit\n"));
96 printf(_("\nConnection options:\n"));
97 printf(_(" -d, --dbname=CONNSTR connection string\n"));
98 printf(_(" -h, --host=HOSTNAME database server host or socket directory\n"));
99 printf(_(" -p, --port=PORT database server port number\n"));
100 printf(_(" -U, --username=NAME connect as specified database user\n"));
101 printf(_(" -w, --no-password never prompt for password\n"));
102 printf(_(" -W, --password force password prompt (should happen automatically)\n"));
103 printf(_("\nOptional actions:\n"));
104 printf(_(" --create-slot create a new replication slot (for the slot's name see --slot)\n"));
105 printf(_(" --drop-slot drop the replication slot (for the slot's name see --slot)\n"));
106 printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
107 printf(_("%s home page: <%s>\n"), PACKAGE_NAME
, PACKAGE_URL
);
112 * Check if the filename looks like a WAL file, letting caller know if this
113 * WAL segment is partial and/or compressed.
116 is_xlogfilename(const char *filename
, bool *ispartial
,
117 pg_compress_algorithm
*wal_compression_algorithm
)
119 size_t fname_len
= strlen(filename
);
120 size_t xlog_pattern_len
= strspn(filename
, "0123456789ABCDEF");
122 /* File does not look like a WAL file */
123 if (xlog_pattern_len
!= XLOG_FNAME_LEN
)
126 /* File looks like a completed uncompressed WAL file */
127 if (fname_len
== XLOG_FNAME_LEN
)
130 *wal_compression_algorithm
= PG_COMPRESSION_NONE
;
134 /* File looks like a completed gzip-compressed WAL file */
135 if (fname_len
== XLOG_FNAME_LEN
+ strlen(".gz") &&
136 strcmp(filename
+ XLOG_FNAME_LEN
, ".gz") == 0)
139 *wal_compression_algorithm
= PG_COMPRESSION_GZIP
;
143 /* File looks like a completed LZ4-compressed WAL file */
144 if (fname_len
== XLOG_FNAME_LEN
+ strlen(".lz4") &&
145 strcmp(filename
+ XLOG_FNAME_LEN
, ".lz4") == 0)
148 *wal_compression_algorithm
= PG_COMPRESSION_LZ4
;
152 /* File looks like a partial uncompressed WAL file */
153 if (fname_len
== XLOG_FNAME_LEN
+ strlen(".partial") &&
154 strcmp(filename
+ XLOG_FNAME_LEN
, ".partial") == 0)
157 *wal_compression_algorithm
= PG_COMPRESSION_NONE
;
161 /* File looks like a partial gzip-compressed WAL file */
162 if (fname_len
== XLOG_FNAME_LEN
+ strlen(".gz.partial") &&
163 strcmp(filename
+ XLOG_FNAME_LEN
, ".gz.partial") == 0)
166 *wal_compression_algorithm
= PG_COMPRESSION_GZIP
;
170 /* File looks like a partial LZ4-compressed WAL file */
171 if (fname_len
== XLOG_FNAME_LEN
+ strlen(".lz4.partial") &&
172 strcmp(filename
+ XLOG_FNAME_LEN
, ".lz4.partial") == 0)
175 *wal_compression_algorithm
= PG_COMPRESSION_LZ4
;
179 /* File does not look like something we know */
184 stop_streaming(XLogRecPtr xlogpos
, uint32 timeline
, bool segment_finished
)
186 static uint32 prevtimeline
= 0;
187 static XLogRecPtr prevpos
= InvalidXLogRecPtr
;
189 /* we assume that we get called once at the end of each segment */
190 if (verbose
&& segment_finished
)
191 pg_log_info("finished segment at %X/%X (timeline %u)",
192 LSN_FORMAT_ARGS(xlogpos
),
195 if (!XLogRecPtrIsInvalid(endpos
) && endpos
< xlogpos
)
198 pg_log_info("stopped log streaming at %X/%X (timeline %u)",
199 LSN_FORMAT_ARGS(xlogpos
),
206 * Note that we report the previous, not current, position here. After a
207 * timeline switch, xlogpos points to the beginning of the segment because
208 * that's where we always begin streaming. Reporting the end of previous
209 * timeline isn't totally accurate, because the next timeline can begin
210 * slightly before the end of the WAL that we received on the previous
211 * timeline, but it's close enough for reporting purposes.
213 if (verbose
&& prevtimeline
!= 0 && prevtimeline
!= timeline
)
214 pg_log_info("switched to timeline %u at %X/%X",
216 LSN_FORMAT_ARGS(prevpos
));
218 prevtimeline
= timeline
;
224 pg_log_info("received interrupt signal, exiting");
232 * Get destination directory.
235 get_destination_dir(char *dest_folder
)
239 Assert(dest_folder
!= NULL
);
240 dir
= opendir(dest_folder
);
242 pg_fatal("could not open directory \"%s\": %m", dest_folder
);
249 * Close existing directory.
252 close_destination_dir(DIR *dest_dir
, char *dest_folder
)
254 Assert(dest_dir
!= NULL
&& dest_folder
!= NULL
);
255 if (closedir(dest_dir
))
256 pg_fatal("could not close directory \"%s\": %m", dest_folder
);
261 * Determine starting location for streaming, based on any existing xlog
262 * segments in the directory. We start at the end of the last one that is
263 * complete (size matches wal segment size), on the timeline with highest ID.
265 * If there are no WAL files in the directory, returns InvalidXLogRecPtr.
268 FindStreamingStart(uint32
*tli
)
271 struct dirent
*dirent
;
272 XLogSegNo high_segno
= 0;
274 bool high_ispartial
= false;
276 dir
= get_destination_dir(basedir
);
278 while (errno
= 0, (dirent
= readdir(dir
)) != NULL
)
282 pg_compress_algorithm wal_compression_algorithm
;
285 if (!is_xlogfilename(dirent
->d_name
,
286 &ispartial
, &wal_compression_algorithm
))
290 * Looks like an xlog file. Parse its position.
292 XLogFromFileName(dirent
->d_name
, &tli
, &segno
, WalSegSz
);
295 * Check that the segment has the right size, if it's supposed to be
296 * completed. For non-compressed segments just check the on-disk size
297 * and see if it matches a completed segment. For gzip-compressed
298 * segments, look at the last 4 bytes of the compressed file, which is
299 * where the uncompressed size is located for files with a size lower
300 * than 4GB, and then compare it to the size of a completed segment.
301 * The 4 last bytes correspond to the ISIZE member according to
302 * http://www.zlib.org/rfc-gzip.html.
304 * For LZ4-compressed segments, uncompress the file in a throw-away
305 * buffer keeping track of the uncompressed size, then compare it to
306 * the size of a completed segment. Per its protocol, LZ4 does not
307 * store the uncompressed size of an object by default. contentSize
308 * is one possible way to do that, but we need to rely on a method
309 * where WAL segments could have been compressed by a different source
310 * than pg_receivewal, like an archive_command with lz4.
312 if (!ispartial
&& wal_compression_algorithm
== PG_COMPRESSION_NONE
)
315 char fullpath
[MAXPGPATH
* 2];
317 snprintf(fullpath
, sizeof(fullpath
), "%s/%s", basedir
, dirent
->d_name
);
318 if (stat(fullpath
, &statbuf
) != 0)
319 pg_fatal("could not stat file \"%s\": %m", fullpath
);
321 if (statbuf
.st_size
!= WalSegSz
)
323 pg_log_warning("segment file \"%s\" has incorrect size %lld, skipping",
324 dirent
->d_name
, (long long int) statbuf
.st_size
);
328 else if (!ispartial
&& wal_compression_algorithm
== PG_COMPRESSION_GZIP
)
333 char fullpath
[MAXPGPATH
* 2];
336 snprintf(fullpath
, sizeof(fullpath
), "%s/%s", basedir
, dirent
->d_name
);
338 fd
= open(fullpath
, O_RDONLY
| PG_BINARY
, 0);
340 pg_fatal("could not open compressed file \"%s\": %m",
342 if (lseek(fd
, (off_t
) (-4), SEEK_END
) < 0)
343 pg_fatal("could not seek in compressed file \"%s\": %m",
345 r
= read(fd
, (char *) buf
, sizeof(buf
));
346 if (r
!= sizeof(buf
))
349 pg_fatal("could not read compressed file \"%s\": %m",
352 pg_fatal("could not read compressed file \"%s\": read %d of %zu",
353 fullpath
, r
, sizeof(buf
));
357 bytes_out
= (buf
[3] << 24) | (buf
[2] << 16) |
358 (buf
[1] << 8) | buf
[0];
360 if (bytes_out
!= WalSegSz
)
362 pg_log_warning("compressed segment file \"%s\" has incorrect uncompressed size %d, skipping",
363 dirent
->d_name
, bytes_out
);
367 else if (!ispartial
&& wal_compression_algorithm
== PG_COMPRESSION_LZ4
)
370 #define LZ4_CHUNK_SZ 64 * 1024 /* 64kB as maximum chunk size read */
373 size_t uncompressed_size
= 0;
374 char fullpath
[MAXPGPATH
* 2];
377 LZ4F_decompressionContext_t ctx
= NULL
;
378 LZ4F_decompressOptions_t dec_opt
;
379 LZ4F_errorCode_t status
;
381 memset(&dec_opt
, 0, sizeof(dec_opt
));
382 snprintf(fullpath
, sizeof(fullpath
), "%s/%s", basedir
, dirent
->d_name
);
384 fd
= open(fullpath
, O_RDONLY
| PG_BINARY
, 0);
386 pg_fatal("could not open file \"%s\": %m", fullpath
);
388 status
= LZ4F_createDecompressionContext(&ctx
, LZ4F_VERSION
);
389 if (LZ4F_isError(status
))
390 pg_fatal("could not create LZ4 decompression context: %s",
391 LZ4F_getErrorName(status
));
393 outbuf
= pg_malloc0(LZ4_CHUNK_SZ
);
394 readbuf
= pg_malloc0(LZ4_CHUNK_SZ
);
400 r
= read(fd
, readbuf
, LZ4_CHUNK_SZ
);
402 pg_fatal("could not read file \"%s\": %m", fullpath
);
404 /* Done reading the file */
408 /* Process one chunk */
410 readend
= readbuf
+ r
;
411 while (readp
< readend
)
413 size_t out_size
= LZ4_CHUNK_SZ
;
414 size_t read_size
= readend
- readp
;
416 memset(outbuf
, 0, LZ4_CHUNK_SZ
);
417 status
= LZ4F_decompress(ctx
, outbuf
, &out_size
,
418 readp
, &read_size
, &dec_opt
);
419 if (LZ4F_isError(status
))
420 pg_fatal("could not decompress file \"%s\": %s",
422 LZ4F_getErrorName(status
));
425 uncompressed_size
+= out_size
;
429 * No need to continue reading the file when the
430 * uncompressed_size exceeds WalSegSz, even if there are still
431 * data left to read. However, if uncompressed_size is equal
432 * to WalSegSz, it should verify that there is no more data to
435 } while (uncompressed_size
<= WalSegSz
&& r
> 0);
441 status
= LZ4F_freeDecompressionContext(ctx
);
442 if (LZ4F_isError(status
))
443 pg_fatal("could not free LZ4 decompression context: %s",
444 LZ4F_getErrorName(status
));
446 if (uncompressed_size
!= WalSegSz
)
448 pg_log_warning("compressed segment file \"%s\" has incorrect uncompressed size %zu, skipping",
449 dirent
->d_name
, uncompressed_size
);
453 pg_log_error("cannot check file \"%s\": compression with %s not supported by this build",
454 dirent
->d_name
, "LZ4");
459 /* Looks like a valid segment. Remember that we saw it. */
460 if ((segno
> high_segno
) ||
461 (segno
== high_segno
&& tli
> high_tli
) ||
462 (segno
== high_segno
&& tli
== high_tli
&& high_ispartial
&& !ispartial
))
466 high_ispartial
= ispartial
;
471 pg_fatal("could not read directory \"%s\": %m", basedir
);
473 close_destination_dir(dir
, basedir
);
480 * Move the starting pointer to the start of the next segment, if the
481 * highest one we saw was completed. Otherwise start streaming from
482 * the beginning of the .partial segment.
487 XLogSegNoOffsetToRecPtr(high_segno
, 0, WalSegSz
, high_ptr
);
493 return InvalidXLogRecPtr
;
497 * Start the log streaming
502 XLogRecPtr serverpos
;
503 TimeLineID servertli
;
504 StreamCtl stream
= {0};
508 * Connect in replication mode to the server
511 conn
= GetConnection();
513 /* Error message already written in GetConnection() */
516 if (!CheckServerVersionForStreaming(conn
))
519 * Error message already written in CheckServerVersionForStreaming().
520 * There's no hope of recovering from a version mismatch, so don't
527 * Identify server, obtaining start LSN position and current timeline ID
528 * at the same time, necessary if not valid data can be found in the
529 * existing output directory.
531 if (!RunIdentifySystem(conn
, &sysidentifier
, &servertli
, &serverpos
, NULL
))
535 * Figure out where to start streaming. First scan the local directory.
537 stream
.startpos
= FindStreamingStart(&stream
.timeline
);
538 if (stream
.startpos
== InvalidXLogRecPtr
)
541 * Try to get the starting point from the slot if any. This is
542 * supported in PostgreSQL 15 and newer.
544 if (replication_slot
!= NULL
&&
545 PQserverVersion(conn
) >= 150000)
547 if (!GetSlotInformation(conn
, replication_slot
, &stream
.startpos
,
550 /* Error is logged by GetSlotInformation() */
556 * If it the starting point is still not known, use the current WAL
557 * flush value as last resort.
559 if (stream
.startpos
== InvalidXLogRecPtr
)
561 stream
.startpos
= serverpos
;
562 stream
.timeline
= servertli
;
566 Assert(stream
.startpos
!= InvalidXLogRecPtr
&&
567 stream
.timeline
!= 0);
570 * Always start streaming at the beginning of a segment
572 stream
.startpos
-= XLogSegmentOffset(stream
.startpos
, WalSegSz
);
575 * Start the replication
578 pg_log_info("starting log streaming at %X/%X (timeline %u)",
579 LSN_FORMAT_ARGS(stream
.startpos
),
582 stream
.stream_stop
= stop_streaming
;
583 stream
.stop_socket
= PGINVALID_SOCKET
;
584 stream
.standby_message_timeout
= standby_message_timeout
;
585 stream
.synchronous
= synchronous
;
586 stream
.do_sync
= do_sync
;
587 stream
.mark_done
= false;
588 stream
.walmethod
= CreateWalDirectoryMethod(basedir
,
589 compression_algorithm
,
592 stream
.partial_suffix
= ".partial";
593 stream
.replication_slot
= replication_slot
;
594 stream
.sysidentifier
= sysidentifier
;
596 ReceiveXlogStream(conn
, &stream
);
598 if (!stream
.walmethod
->ops
->finish(stream
.walmethod
))
600 pg_log_info("could not finish writing WAL files: %m");
607 stream
.walmethod
->ops
->free(stream
.walmethod
);
611 * When SIGINT/SIGTERM are caught, just tell the system to exit at the next
617 sigexit_handler(SIGNAL_ARGS
)
624 main(int argc
, char **argv
)
626 static struct option long_options
[] = {
627 {"help", no_argument
, NULL
, '?'},
628 {"version", no_argument
, NULL
, 'V'},
629 {"directory", required_argument
, NULL
, 'D'},
630 {"dbname", required_argument
, NULL
, 'd'},
631 {"endpos", required_argument
, NULL
, 'E'},
632 {"host", required_argument
, NULL
, 'h'},
633 {"port", required_argument
, NULL
, 'p'},
634 {"username", required_argument
, NULL
, 'U'},
635 {"no-loop", no_argument
, NULL
, 'n'},
636 {"no-password", no_argument
, NULL
, 'w'},
637 {"password", no_argument
, NULL
, 'W'},
638 {"status-interval", required_argument
, NULL
, 's'},
639 {"slot", required_argument
, NULL
, 'S'},
640 {"verbose", no_argument
, NULL
, 'v'},
641 {"compress", required_argument
, NULL
, 'Z'},
643 {"create-slot", no_argument
, NULL
, 1},
644 {"drop-slot", no_argument
, NULL
, 2},
645 {"if-not-exists", no_argument
, NULL
, 3},
646 {"synchronous", no_argument
, NULL
, 4},
647 {"no-sync", no_argument
, NULL
, 5},
656 pg_compress_specification compression_spec
;
657 char *compression_detail
= NULL
;
658 char *compression_algorithm_str
= "none";
659 char *error_detail
= NULL
;
661 pg_logging_init(argv
[0]);
662 progname
= get_progname(argv
[0]);
663 set_pglocale_pgservice(argv
[0], PG_TEXTDOMAIN("pg_basebackup"));
667 if (strcmp(argv
[1], "--help") == 0 || strcmp(argv
[1], "-?") == 0)
672 else if (strcmp(argv
[1], "-V") == 0 ||
673 strcmp(argv
[1], "--version") == 0)
675 puts("pg_receivewal (PostgreSQL) " PG_VERSION
);
680 while ((c
= getopt_long(argc
, argv
, "d:D:E:h:np:s:S:U:vwWZ:",
681 long_options
, &option_index
)) != -1)
686 connection_string
= pg_strdup(optarg
);
689 basedir
= pg_strdup(optarg
);
692 if (sscanf(optarg
, "%X/%X", &hi
, &lo
) != 2)
693 pg_fatal("could not parse end position \"%s\"", optarg
);
694 endpos
= ((uint64
) hi
) << 32 | lo
;
697 dbhost
= pg_strdup(optarg
);
703 dbport
= pg_strdup(optarg
);
706 if (!option_parse_int(optarg
, "-s/--status-interval", 0,
708 &standby_message_timeout
))
710 standby_message_timeout
*= 1000;
713 replication_slot
= pg_strdup(optarg
);
716 dbuser
= pg_strdup(optarg
);
728 parse_compress_options(optarg
, &compression_algorithm_str
,
729 &compression_detail
);
732 do_create_slot
= true;
738 slot_exists_ok
= true;
747 /* getopt_long already emitted a complaint */
748 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
754 * Any non-option arguments?
758 pg_log_error("too many command-line arguments (first is \"%s\")",
760 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
764 if (do_drop_slot
&& do_create_slot
)
766 pg_log_error("cannot use --create-slot together with --drop-slot");
767 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
771 if (replication_slot
== NULL
&& (do_drop_slot
|| do_create_slot
))
773 /* translator: second %s is an option name */
774 pg_log_error("%s needs a slot to be specified using --slot",
775 do_drop_slot
? "--drop-slot" : "--create-slot");
776 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
780 if (synchronous
&& !do_sync
)
782 pg_log_error("cannot use --synchronous together with --no-sync");
783 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
790 if (basedir
== NULL
&& !do_drop_slot
&& !do_create_slot
)
792 pg_log_error("no target directory specified");
793 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
798 * Compression options
800 if (!parse_compress_algorithm(compression_algorithm_str
,
801 &compression_algorithm
))
802 pg_fatal("unrecognized compression algorithm: \"%s\"",
803 compression_algorithm_str
);
805 parse_compress_specification(compression_algorithm
, compression_detail
,
807 error_detail
= validate_compress_specification(&compression_spec
);
808 if (error_detail
!= NULL
)
809 pg_fatal("invalid compression specification: %s",
812 /* Extract the compression level */
813 compresslevel
= compression_spec
.level
;
815 if (compression_algorithm
== PG_COMPRESSION_ZSTD
)
816 pg_fatal("compression with %s is not yet supported", "ZSTD");
819 * Check existence of destination folder.
821 if (!do_drop_slot
&& !do_create_slot
)
823 DIR *dir
= get_destination_dir(basedir
);
825 close_destination_dir(dir
, basedir
);
829 * Obtain a connection before doing anything.
831 conn
= GetConnection();
833 /* error message already written in GetConnection() */
835 atexit(disconnect_atexit
);
838 * Trap signals. (Don't do this until after the initial password prompt,
839 * if one is needed, in GetConnection.)
842 pqsignal(SIGINT
, sigexit_handler
);
843 pqsignal(SIGTERM
, sigexit_handler
);
847 * Run IDENTIFY_SYSTEM to make sure we've successfully have established a
848 * replication connection and haven't connected using a database specific
851 if (!RunIdentifySystem(conn
, NULL
, NULL
, NULL
, &db_name
))
855 * Check that there is a database associated with connection, none should
856 * be defined in this context.
859 pg_fatal("replication connection using slot \"%s\" is unexpectedly database specific",
863 * Set umask so that directories/files are created with the same
864 * permissions as directories/files in the source data directory.
866 * pg_mode_mask is set to owner-only by default and then updated in
867 * GetConnection() where we get the mode from the server-side with
868 * RetrieveDataDirCreatePerm() and then call SetDataDirectoryCreatePerm().
873 * Drop a replication slot.
878 pg_log_info("dropping replication slot \"%s\"", replication_slot
);
880 if (!DropReplicationSlot(conn
, replication_slot
))
885 /* Create a replication slot */
889 pg_log_info("creating replication slot \"%s\"", replication_slot
);
891 if (!CreateReplicationSlot(conn
, replication_slot
, NULL
, false, true, false,
892 slot_exists_ok
, false))
897 /* determine remote server's xlog segment size */
898 if (!RetrieveWalSegSize(conn
))
902 * Don't close the connection here so that subsequent StreamLog() can
912 * We've been Ctrl-C'ed or end of streaming position has been
913 * willingly reached, so exit without an error code.
918 pg_fatal("disconnected");
921 /* translator: check source for value for %d */
922 pg_log_info("disconnected; waiting %d seconds to try again",
923 RECONNECT_SLEEP_TIME
);
924 pg_usleep(RECONNECT_SLEEP_TIME
* 1000000);