diff options
author | Magnus Hagander <magnus@hagander.net> | 2017-04-01 17:20:05 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2017-04-01 17:27:33 +0200 |
commit | bd34e7f19b404d025d5b36bac42bcfecf2c09bc5 (patch) | |
tree | 96b43ef9cf9748ac1bc68c89b6b71a3255a48b21 /src | |
parent | cb366b507995cf8fd17c538a9b4dd35204e80de6 (diff) | |
download | postgresql-bd34e7f19b404d025d5b36bac42bcfecf2c09bc5.tar.gz postgresql-bd34e7f19b404d025d5b36bac42bcfecf2c09bc5.zip |
Back-patch checkpoint clarification docs and pg_basebackup updates
This backpatches 51e26c9 and 7220c7b, including both documentation
updates clarifying the checkpoints at the beginning of base backups and
the messages in verbose and progress mdoe of pg_basebackup.
Author: Michael Banck
Discussion: https://postgr.es/m/21444.1488142764%40sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index ad0631f5307..2805da5fa7b 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -1655,6 +1655,14 @@ BaseBackup(void) if (maxrate > 0) maxrate_clause = psprintf("MAX_RATE %u", maxrate); + if (verbose) + fprintf(stderr, + _("%s: initiating base backup, waiting for checkpoint to complete\n"), + progname); + + if (showprogress && !verbose) + fprintf(stderr, "waiting for checkpoint\r"); + basebkp = psprintf("BASE_BACKUP LABEL '%s' %s %s %s %s %s", escaped_label, @@ -1691,6 +1699,9 @@ BaseBackup(void) strlcpy(xlogstart, PQgetvalue(res, 0, 0), sizeof(xlogstart)); + if (verbose) + fprintf(stderr, _("%s: checkpoint completed\n"), progname); + /* * 9.3 and later sends the TLI of the starting point. With older servers, * assume it's the same as the latest timeline reported by |