You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-11-06 08:49:29 +02:00
Implement issue #107: Better debug commands.
This commit is contained in:
@@ -57,7 +57,7 @@ sub new
|
||||
my $class = shift; # Class name
|
||||
my $strArchiveClusterPath = shift; # Backup cluster path
|
||||
|
||||
&log(DEBUG, OP_ARCHIVE_INFO_NEW . "(): archiveClusterPath = ${strArchiveClusterPath}");
|
||||
logDebug(OP_ARCHIVE_INFO_NEW, DEBUG_CALL, undef, {archiveClusterPath => $strArchiveClusterPath});
|
||||
|
||||
# Build the archive info path/file name
|
||||
my $strArchiveInfoFile = "${strArchiveClusterPath}/" . ARCHIVE_INFO_FILE;
|
||||
|
||||
@@ -153,9 +153,7 @@ sub info
|
||||
my $oFile = shift;
|
||||
my $strDbPath = shift;
|
||||
|
||||
# Set operation and debug strings
|
||||
&log(DEBUG, OP_DB_INFO . "(): isRemote = " . ($oFile->is_remote(PATH_DB_ABSOLUTE) ? 'true' : 'false') .
|
||||
", dbPath = ${strDbPath}");
|
||||
logDebug(OP_DB_INFO, DEBUG_CALL, undef, {isRemote => $oFile->is_remote(PATH_DB_ABSOLUTE), dbPath => $strDbPath});
|
||||
|
||||
# Database info
|
||||
my $iCatalogVersion;
|
||||
|
||||
@@ -469,7 +469,7 @@ sub pathSync
|
||||
my $strPathType = shift;
|
||||
my $strPath = shift;
|
||||
|
||||
&log(TRACE, OP_FILE_PATH_SYNC . "(): pathType = ${strPathType}, path = ${strPath}");
|
||||
logTrace(OP_FILE_PATH_SYNC, DEBUG_CALL, undef, {pathType => $strPathType, path => $strPath});
|
||||
|
||||
filePathSync($self->path_get($strPathType, $strPath eq '.' ? undef : $strPath));
|
||||
}
|
||||
|
||||
@@ -31,8 +31,8 @@ sub filePathSync
|
||||
{
|
||||
my $strPath = shift;
|
||||
|
||||
&log(TRACE, OP_FILE_BASE_PATH_SYNC . "(): path = ${strPath}");
|
||||
|
||||
logTrace(OP_FILE_BASE_PATH_SYNC, DEBUG_CALL, undef, {path => $strPath});
|
||||
|
||||
open(my $hPath, "<", $strPath)
|
||||
or confess &log(ERROR, "unable to open ${strPath}", ERROR_PATH_OPEN);
|
||||
open(my $hPathDup, ">&", $hPath)
|
||||
|
||||
@@ -15,9 +15,9 @@ use POSIX qw(:sys_wait_h);
|
||||
use Scalar::Util qw(blessed);
|
||||
|
||||
use lib dirname($0) . '/../lib';
|
||||
use BackRest::Config qw(optionGet OPTION_STANZA OPTION_REPO_REMOTE_PATH);
|
||||
use BackRest::Exception qw(ERROR_PROTOCOL ERROR_HOST_CONNECT);
|
||||
use BackRest::Utility qw(log version_get trim TRACE ERROR ASSERT DEBUG true false waitInit waitMore);
|
||||
use BackRest::Config;
|
||||
use BackRest::Exception;
|
||||
use BackRest::Utility;
|
||||
|
||||
####################################################################################################################################
|
||||
# Operation constants
|
||||
@@ -43,12 +43,9 @@ sub new
|
||||
my $iCompressLevelNetwork = shift; # Set compression level for network only compression
|
||||
|
||||
# Debug
|
||||
&log(defined($strHost) ? DEBUG : TRACE, OP_PROTOCOL_NEW . '()' .
|
||||
': host = ' . (defined($strHost) ? $strHost : '[undef]') .
|
||||
', user = ' . (defined($strUser) ? $strUser : '[undef]') .
|
||||
', stanza = ' . (defined($strStanza) ? $strStanza : '[undef]') .
|
||||
', remote-repo-path = ' . (defined($strRepoPath) ? $strRepoPath : '[undef]') .
|
||||
', command = ' . (defined($strCommand) ? $strCommand : '[undef]'));
|
||||
logDebug(OP_PROTOCOL_NEW, DEBUG_CALL, undef,
|
||||
{host => $strHost, user => $strUser, stanza => $strStanza, remoteRepoPath => $strRepoPath, command => $strCommand},
|
||||
defined($strHost) ? DEBUG : TRACE);
|
||||
|
||||
# Create the class hash
|
||||
my $self = {};
|
||||
@@ -1225,6 +1222,8 @@ sub command_write
|
||||
my $strCommand = shift;
|
||||
my $oParamRef = shift;
|
||||
|
||||
logTrace(OP_PROTOCOL_COMMAND_WRITE, DEBUG_CALL, $strCommand, $oParamRef);
|
||||
|
||||
my $strOutput = $strCommand;
|
||||
|
||||
if (defined($oParamRef))
|
||||
@@ -1254,12 +1253,12 @@ sub command_write
|
||||
$strOutput .= 'end';
|
||||
}
|
||||
|
||||
&log(TRACE, OP_PROTOCOL_COMMAND_WRITE . "=>:Protocol->command_write:\n" . $strOutput);
|
||||
|
||||
if (!syswrite($self->{hIn}, "${strOutput}\n"))
|
||||
{
|
||||
confess 'unable to write command';
|
||||
}
|
||||
|
||||
logTrace(OP_PROTOCOL_COMMAND_WRITE, DEBUG_RESULT, $strOutput);
|
||||
}
|
||||
|
||||
####################################################################################################################################
|
||||
@@ -1301,198 +1300,4 @@ sub paramGet
|
||||
return $strValue;
|
||||
}
|
||||
|
||||
####################################################################################################################################
|
||||
# run
|
||||
####################################################################################################################################
|
||||
# sub run
|
||||
# {
|
||||
# my $self = shift;
|
||||
#
|
||||
# # Create the file object
|
||||
# my $oFile = new BackRest::File
|
||||
# (
|
||||
# $self->stanza(),
|
||||
# $self->repoPath(),
|
||||
# undef,
|
||||
# $self,
|
||||
# );
|
||||
#
|
||||
# # Create objects
|
||||
# my $oArchive = new BackRest::Archive();
|
||||
# my $oInfo = new BackRest::Info();
|
||||
# my $oJSON = JSON::PP->new();
|
||||
# my $oDb = new BackRest::Db(false);
|
||||
#
|
||||
# # Command string
|
||||
# my $strCommand = OP_NOOP;
|
||||
#
|
||||
# # Loop until the exit command is received
|
||||
# while ($strCommand ne OP_EXIT)
|
||||
# {
|
||||
# my %oParamHash;
|
||||
#
|
||||
# $strCommand = $self->command_read(\%oParamHash);
|
||||
#
|
||||
# eval
|
||||
# {
|
||||
# # Copy file
|
||||
# if ($strCommand eq OP_FILE_COPY ||
|
||||
# $strCommand eq OP_FILE_COPY_IN ||
|
||||
# $strCommand eq OP_FILE_COPY_OUT)
|
||||
# {
|
||||
# my $bResult;
|
||||
# my $strChecksum;
|
||||
# my $iFileSize;
|
||||
#
|
||||
# # Copy a file locally
|
||||
# if ($strCommand eq OP_FILE_COPY)
|
||||
# {
|
||||
# ($bResult, $strChecksum, $iFileSize) =
|
||||
# $oFile->copy(PATH_ABSOLUTE, paramGet(\%oParamHash, 'source_file'),
|
||||
# PATH_ABSOLUTE, paramGet(\%oParamHash, 'destination_file'),
|
||||
# paramGet(\%oParamHash, 'source_compressed'),
|
||||
# paramGet(\%oParamHash, 'destination_compress'),
|
||||
# paramGet(\%oParamHash, 'ignore_missing_source', false),
|
||||
# undef,
|
||||
# paramGet(\%oParamHash, 'mode', false),
|
||||
# paramGet(\%oParamHash, 'destination_path_create') ? 'Y' : 'N',
|
||||
# paramGet(\%oParamHash, 'user', false),
|
||||
# paramGet(\%oParamHash, 'group', false),
|
||||
# paramGet(\%oParamHash, 'append_checksum', false));
|
||||
# }
|
||||
# # Copy a file from STDIN
|
||||
# elsif ($strCommand eq OP_FILE_COPY_IN)
|
||||
# {
|
||||
# ($bResult, $strChecksum, $iFileSize) =
|
||||
# $oFile->copy(PIPE_STDIN, undef,
|
||||
# PATH_ABSOLUTE, paramGet(\%oParamHash, 'destination_file'),
|
||||
# paramGet(\%oParamHash, 'source_compressed'),
|
||||
# paramGet(\%oParamHash, 'destination_compress'),
|
||||
# undef, undef,
|
||||
# paramGet(\%oParamHash, 'mode', false),
|
||||
# paramGet(\%oParamHash, 'destination_path_create'),
|
||||
# paramGet(\%oParamHash, 'user', false),
|
||||
# paramGet(\%oParamHash, 'group', false),
|
||||
# paramGet(\%oParamHash, 'append_checksum', false));
|
||||
# }
|
||||
# # Copy a file to STDOUT
|
||||
# elsif ($strCommand eq OP_FILE_COPY_OUT)
|
||||
# {
|
||||
# ($bResult, $strChecksum, $iFileSize) =
|
||||
# $oFile->copy(PATH_ABSOLUTE, paramGet(\%oParamHash, 'source_file'),
|
||||
# PIPE_STDOUT, undef,
|
||||
# paramGet(\%oParamHash, 'source_compressed'),
|
||||
# paramGet(\%oParamHash, 'destination_compress'));
|
||||
# }
|
||||
#
|
||||
# $self->output_write(($bResult ? 'Y' : 'N') . " " . (defined($strChecksum) ? $strChecksum : '?') . " " .
|
||||
# (defined($iFileSize) ? $iFileSize : '?'));
|
||||
# }
|
||||
# # List files in a path
|
||||
# elsif ($strCommand eq OP_FILE_LIST)
|
||||
# {
|
||||
# my $strOutput;
|
||||
#
|
||||
# foreach my $strFile ($oFile->list(PATH_ABSOLUTE, paramGet(\%oParamHash, 'path'),
|
||||
# paramGet(\%oParamHash, 'expression', false),
|
||||
# paramGet(\%oParamHash, 'sort_order'),
|
||||
# paramGet(\%oParamHash, 'ignore_missing')))
|
||||
# {
|
||||
# if (defined($strOutput))
|
||||
# {
|
||||
# $strOutput .= "\n";
|
||||
# }
|
||||
#
|
||||
# $strOutput .= $strFile;
|
||||
# }
|
||||
#
|
||||
# $self->output_write($strOutput);
|
||||
# }
|
||||
# # Create a path
|
||||
# elsif ($strCommand eq OP_FILE_PATH_CREATE)
|
||||
# {
|
||||
# $oFile->path_create(PATH_ABSOLUTE, paramGet(\%oParamHash, 'path'), paramGet(\%oParamHash, 'mode', false));
|
||||
# $self->output_write();
|
||||
# }
|
||||
# # Check if a file/path exists
|
||||
# elsif ($strCommand eq OP_FILE_EXISTS)
|
||||
# {
|
||||
# $self->output_write($oFile->exists(PATH_ABSOLUTE, paramGet(\%oParamHash, 'path')) ? 'Y' : 'N');
|
||||
# }
|
||||
# # Wait
|
||||
# elsif ($strCommand eq OP_FILE_WAIT)
|
||||
# {
|
||||
# $self->output_write($oFile->wait(PATH_ABSOLUTE));
|
||||
# }
|
||||
# # Generate a manifest
|
||||
# elsif ($strCommand eq OP_FILE_MANIFEST)
|
||||
# {
|
||||
# my %oManifestHash;
|
||||
#
|
||||
# $oFile->manifest(PATH_ABSOLUTE, paramGet(\%oParamHash, 'path'), \%oManifestHash);
|
||||
#
|
||||
# my $strOutput = "name\ttype\tuser\tgroup\tmode\tmodification_time\tinode\tsize\tlink_destination";
|
||||
#
|
||||
# foreach my $strName (sort(keys $oManifestHash{name}))
|
||||
# {
|
||||
# $strOutput .= "\n${strName}\t" .
|
||||
# $oManifestHash{name}{"${strName}"}{type} . "\t" .
|
||||
# (defined($oManifestHash{name}{"${strName}"}{user}) ? $oManifestHash{name}{"${strName}"}{user} : "") . "\t" .
|
||||
# (defined($oManifestHash{name}{"${strName}"}{group}) ? $oManifestHash{name}{"${strName}"}{group} : "") . "\t" .
|
||||
# (defined($oManifestHash{name}{"${strName}"}{mode}) ? $oManifestHash{name}{"${strName}"}{mode} : "") . "\t" .
|
||||
# (defined($oManifestHash{name}{"${strName}"}{modification_time}) ?
|
||||
# $oManifestHash{name}{"${strName}"}{modification_time} : "") . "\t" .
|
||||
# (defined($oManifestHash{name}{"${strName}"}{inode}) ? $oManifestHash{name}{"${strName}"}{inode} : "") . "\t" .
|
||||
# (defined($oManifestHash{name}{"${strName}"}{size}) ? $oManifestHash{name}{"${strName}"}{size} : "") . "\t" .
|
||||
# (defined($oManifestHash{name}{"${strName}"}{link_destination}) ?
|
||||
# $oManifestHash{name}{"${strName}"}{link_destination} : "");
|
||||
# }
|
||||
#
|
||||
# $self->output_write($strOutput);
|
||||
# }
|
||||
# # Archive push checks
|
||||
# elsif ($strCommand eq OP_ARCHIVE_PUSH_CHECK)
|
||||
# {
|
||||
# my ($strArchiveId, $strChecksum) = $oArchive->pushCheck($oFile,
|
||||
# paramGet(\%oParamHash, 'wal-segment'),
|
||||
# undef,
|
||||
# paramGet(\%oParamHash, 'db-version'),
|
||||
# paramGet(\%oParamHash, 'db-sys-id'));
|
||||
#
|
||||
# $self->output_write("${strArchiveId}\t" . (defined($strChecksum) ? $strChecksum : 'Y'));
|
||||
# }
|
||||
# elsif ($strCommand eq OP_ARCHIVE_GET_CHECK)
|
||||
# {
|
||||
# $self->output_write($oArchive->getCheck($oFile));
|
||||
# }
|
||||
# # Info list stanza
|
||||
# elsif ($strCommand eq OP_INFO_LIST_STANZA)
|
||||
# {
|
||||
# $self->output_write(
|
||||
# $oJSON->encode(
|
||||
# $oInfo->listStanza($oFile,
|
||||
# paramGet(\%oParamHash, 'stanza', false))));
|
||||
# }
|
||||
# elsif ($strCommand eq OP_DB_INFO)
|
||||
# {
|
||||
# my ($strDbVersion, $iControlVersion, $iCatalogVersion, $ullDbSysId) =
|
||||
# $oDb->info($oFile, paramGet(\%oParamHash, 'db-path'));
|
||||
#
|
||||
# $self->output_write("${strDbVersion}\t${iControlVersion}\t${iCatalogVersion}\t${ullDbSysId}");
|
||||
# }
|
||||
# # Continue if noop or exit
|
||||
# elsif ($strCommand ne OP_NOOP && $strCommand ne OP_EXIT)
|
||||
# {
|
||||
# confess "invalid command: ${strCommand}";
|
||||
# }
|
||||
# };
|
||||
#
|
||||
# # Process errors
|
||||
# if ($@)
|
||||
# {
|
||||
# $self->error_write($@);
|
||||
# }
|
||||
# }
|
||||
# }
|
||||
|
||||
1;
|
||||
|
||||
@@ -417,6 +417,74 @@ sub test_check
|
||||
return index($strLog, TEST_ENCLOSE . '-' . $strTest . '-' . TEST_ENCLOSE) != -1;
|
||||
}
|
||||
|
||||
####################################################################################################################################
|
||||
# logDebug
|
||||
####################################################################################################################################
|
||||
use constant DEBUG_CALL => '()';
|
||||
push @EXPORT, qw(DEBUG_CALL);
|
||||
use constant DEBUG_RESULT => '=>';
|
||||
push @EXPORT, qw(DEBUG_RESULT);
|
||||
use constant DEBUG_MISC => '';
|
||||
push @EXPORT, qw(DEBUG_MISC);
|
||||
|
||||
sub logDebug
|
||||
{
|
||||
my $strFunction = shift;
|
||||
my $strType = shift;
|
||||
my $strMessage = shift;
|
||||
my $oParamHash = shift;
|
||||
my $strLevel = shift;
|
||||
|
||||
$strLevel = defined($strLevel) ? $strLevel : DEBUG;
|
||||
|
||||
if ($oLogLevelRank{$strLevel}{rank} <= $oLogLevelRank{$strLogLevelConsole}{rank} ||
|
||||
$oLogLevelRank{$strLevel}{rank} <= $oLogLevelRank{$strLogLevelFile}{rank})
|
||||
{
|
||||
if (defined($oParamHash))
|
||||
{
|
||||
my $strParamSet;
|
||||
|
||||
foreach my $strParam (sort(keys($oParamHash)))
|
||||
{
|
||||
if (defined($strParamSet))
|
||||
{
|
||||
$strParamSet .= ', ';
|
||||
}
|
||||
|
||||
$strParamSet .= "${strParam} = " .
|
||||
(defined($$oParamHash{$strParam}) ?
|
||||
($strParam =~ /^is/ ? ($$oParamHash{$strParam} ? 'true' : 'false'):
|
||||
$$oParamHash{$strParam}) : '[undef]');
|
||||
}
|
||||
|
||||
if (defined($strMessage))
|
||||
{
|
||||
$strMessage = "${strMessage}: ${strParamSet}";
|
||||
}
|
||||
else
|
||||
{
|
||||
$strMessage = $strParamSet;
|
||||
}
|
||||
}
|
||||
|
||||
&log($strLevel, "${strFunction}${strType}" . (defined($strMessage) ? ": $strMessage" : ''));
|
||||
}
|
||||
}
|
||||
|
||||
push @EXPORT, qw(logDebug);
|
||||
|
||||
sub logTrace
|
||||
{
|
||||
my $strFunction = shift;
|
||||
my $strType = shift;
|
||||
my $strMessage = shift;
|
||||
my $oParamHash = shift;
|
||||
|
||||
logDebug($strFunction, $strType, $strMessage, $oParamHash, TRACE);
|
||||
}
|
||||
|
||||
push @EXPORT, qw(logTrace);
|
||||
|
||||
####################################################################################################################################
|
||||
# LOG - log messages
|
||||
####################################################################################################################################
|
||||
|
||||
@@ -19,7 +19,7 @@ db-version="9.3"
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000090000000900000009 [TEST_PATH]/db/common/pg_xlog/RECOVERYXLOG
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000090000000900000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000900000009, expression ^000000090000000900000009(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
INFO: 000000090000000900000009 was not found in the archive repository
|
||||
|
||||
@@ -19,7 +19,7 @@ db-version="9.3"
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000010000000100000001 [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001, expression ^000000010000000100000001(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
DEBUG: archive_get: cp 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031 [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000010000000100000002 [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000010000000100000002
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001, expression ^000000010000000100000002(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
DEBUG: archive_get: cp 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031 [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
@@ -41,7 +41,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000010000000100000003 [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000010000000100000003
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001, expression ^000000010000000100000003(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
DEBUG: archive_get: cp 000000010000000100000003-1c7e00fd09b9dd11fc2966590b3e3274645dd031 [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
|
||||
@@ -19,7 +19,7 @@ db-version="9.3"
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000090000000900000009 [TEST_PATH]/db/common/pg_xlog/RECOVERYXLOG
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000090000000900000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000900000009, expression ^000000090000000900000009(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
INFO: 000000090000000900000009 was not found in the archive repository
|
||||
|
||||
@@ -19,7 +19,7 @@ db-version="9.3"
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000010000000100000001 [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001, expression ^000000010000000100000001(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
DEBUG: archive_get: cp 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031.gz [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000010000000100000002 [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000010000000100000002
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001, expression ^000000010000000100000002(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
DEBUG: archive_get: cp 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031.gz [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
@@ -41,7 +41,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db archive-get 000000010000000100000003 [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: getting WAL segment 000000010000000100000003
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->getCheck=>: archiveId = 9.3-1
|
||||
DEBUG: File->list: backup:absolute:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001, expression ^000000010000000100000003(-[0-f]+){0,1}(\.gz){0,1}$, sort forward
|
||||
DEBUG: archive_get: cp 000000010000000100000003-1c7e00fd09b9dd11fc2966590b3e3274645dd031.gz [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
|
||||
@@ -4,7 +4,7 @@ run 005 - rmt 1, cmp 0, arc_async 0
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000001 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000001, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -12,7 +12,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
ERROR: [119]: WAL segment version 9.3 does not match archive version 8.0
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -21,7 +21,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
ERROR: [119]: WAL segment system-id 5947969990501855219 does not match archive system-id 5000900090001855000
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -30,7 +30,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000001, compressed = false, hash_type = sha1
|
||||
WARN: WAL segment 000000010000000100000001 already exists in the archive with the same checksum
|
||||
@@ -40,7 +40,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000001, compressed = false, hash_type = sha1
|
||||
ERROR: [120]: WAL segment 000000010000000100000001 already exists in the archive
|
||||
@@ -49,7 +49,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000002 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000002, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -57,7 +57,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000003
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000003 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000003, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -65,7 +65,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000004
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000004
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000004
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000004 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000004, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -73,7 +73,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000005 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000005, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -81,7 +81,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
ERROR: [119]: WAL segment version 9.3 does not match archive version 8.0
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -90,7 +90,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
ERROR: [119]: WAL segment system-id 5947969990501855219 does not match archive system-id 5000900090001855000
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -99,7 +99,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000005, compressed = false, hash_type = sha1
|
||||
WARN: WAL segment 000000010000000100000005 already exists in the archive with the same checksum
|
||||
@@ -109,7 +109,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000005, compressed = false, hash_type = sha1
|
||||
ERROR: [120]: WAL segment 000000010000000100000005 already exists in the archive
|
||||
@@ -118,7 +118,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000006
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000006
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000006 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000006, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -126,7 +126,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000007
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000007
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000007
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000007 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000007, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -134,7 +134,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000008
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000008
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000008
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000008 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000008, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -142,7 +142,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000009 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000009, source_compressed = false, destination_compress = false, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -150,7 +150,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
ERROR: [119]: WAL segment version 9.3 does not match archive version 8.0
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -159,7 +159,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
ERROR: [119]: WAL segment system-id 5947969990501855219 does not match archive system-id 5000900090001855000
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -168,7 +168,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000009, compressed = false, hash_type = sha1
|
||||
WARN: WAL segment 000000010000000100000009 already exists in the archive with the same checksum
|
||||
@@ -178,7 +178,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000009, compressed = false, hash_type = sha1
|
||||
ERROR: [120]: WAL segment 000000010000000100000009 already exists in the archive
|
||||
|
||||
@@ -11,7 +11,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -46,7 +46,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -62,7 +62,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -83,7 +83,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-4518a0fdf41d796760b384a358270d4682589820, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -99,7 +99,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -118,7 +118,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000003-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000003
|
||||
@@ -137,7 +137,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000004-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000004
|
||||
@@ -156,7 +156,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -175,7 +175,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -191,7 +191,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -207,7 +207,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -228,7 +228,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-4518a0fdf41d796760b384a358270d4682589820, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -244,7 +244,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000006-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
@@ -263,7 +263,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000007-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000007
|
||||
@@ -282,7 +282,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000008-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000008
|
||||
@@ -301,7 +301,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -320,7 +320,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -336,7 +336,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -352,7 +352,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -373,7 +373,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-4518a0fdf41d796760b384a358270d4682589820, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
|
||||
@@ -4,7 +4,7 @@ run 007 - rmt 1, cmp 1, arc_async 0
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000001 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000001.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -12,7 +12,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
ERROR: [119]: WAL segment version 9.3 does not match archive version 8.0
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -21,7 +21,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
ERROR: [119]: WAL segment system-id 5947969990501855219 does not match archive system-id 5000900090001855000
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -30,7 +30,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000001, compressed = false, hash_type = sha1
|
||||
WARN: WAL segment 000000010000000100000001 already exists in the archive with the same checksum
|
||||
@@ -40,7 +40,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000001
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000001, compressed = false, hash_type = sha1
|
||||
ERROR: [120]: WAL segment 000000010000000100000001 already exists in the archive
|
||||
@@ -49,7 +49,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000002
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000002 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000002.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -57,7 +57,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000003
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000003
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000003 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000003.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -65,7 +65,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000004
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000004
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000004
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000004 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000004.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -73,7 +73,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000005 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000005.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -81,7 +81,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
ERROR: [119]: WAL segment version 9.3 does not match archive version 8.0
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -90,7 +90,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
ERROR: [119]: WAL segment system-id 5947969990501855219 does not match archive system-id 5000900090001855000
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -99,7 +99,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000005, compressed = false, hash_type = sha1
|
||||
WARN: WAL segment 000000010000000100000005 already exists in the archive with the same checksum
|
||||
@@ -109,7 +109,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000005
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000005, compressed = false, hash_type = sha1
|
||||
ERROR: [120]: WAL segment 000000010000000100000005 already exists in the archive
|
||||
@@ -118,7 +118,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000006
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000006
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000006 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000006.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -126,7 +126,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000007
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000007
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000007
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000007 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000007.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -134,7 +134,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000008
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000008
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000008
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000008 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000008.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -142,7 +142,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
DEBUG: File->copy: local db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000009 to remote backup:archive:[TEST_PATH]/backrest/archive/db/9.3-1/0000000100000001/000000010000000100000009.gz, source_compressed = false, destination_compress = true, ignore_missing_source = false, destination_path_create = true, modification_time = [undef], mode = [undef], user = [undef], group = [undef]
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -150,7 +150,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
ERROR: [119]: WAL segment version 9.3 does not match archive version 8.0
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -159,7 +159,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
ERROR: [119]: WAL segment system-id 5947969990501855219 does not match archive system-id 5000900090001855000
|
||||
HINT: are you archiving to the correct stanza?
|
||||
@@ -168,7 +168,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000009, compressed = false, hash_type = sha1
|
||||
WARN: WAL segment 000000010000000100000009 already exists in the archive with the same checksum
|
||||
@@ -178,7 +178,7 @@ DEBUG: safe exit called, terminating threads
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --no-fork --stanza=db archive-push [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
INFO: pushing WAL segment [TEST_PATH]/db/common/pg_xlog/000000010000000100000009
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
DEBUG: File->hash: db:absolute:[TEST_PATH]/db/common/pg_xlog/000000010000000100000009, compressed = false, hash_type = sha1
|
||||
ERROR: [120]: WAL segment 000000010000000100000009 already exists in the archive
|
||||
|
||||
@@ -11,7 +11,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -46,7 +46,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -62,7 +62,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -83,7 +83,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-4518a0fdf41d796760b384a358270d4682589820, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -99,7 +99,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -118,7 +118,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000003-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000003
|
||||
@@ -137,7 +137,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000004-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000004
|
||||
@@ -156,7 +156,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -175,7 +175,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -191,7 +191,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -207,7 +207,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -228,7 +228,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000005-4518a0fdf41d796760b384a358270d4682589820, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000005
|
||||
@@ -244,7 +244,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000006-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
@@ -263,7 +263,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000007-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000007
|
||||
@@ -282,7 +282,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000008-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000008
|
||||
@@ -301,7 +301,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -320,7 +320,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -336,7 +336,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -352,7 +352,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
@@ -373,7 +373,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000009-4518a0fdf41d796760b384a358270d4682589820, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000009
|
||||
|
||||
@@ -11,7 +11,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -46,7 +46,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 2, size 32MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -68,7 +68,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 3, size 48MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -93,7 +93,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000006-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
|
||||
@@ -11,7 +11,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = bogus, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = bogus, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
ERROR: [124]: unable to connect to bogus: unable to establish master SSH connection: master process exited unexpectedly
|
||||
DEBUG: safe exit called, terminating threads
|
||||
|
||||
@@ -42,7 +42,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = bogus, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = bogus, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
ERROR: [124]: unable to connect to bogus: unable to establish master SSH connection: master process exited unexpectedly
|
||||
ERROR: local archive store max size has exceeded limit of 24MB - WAL segments will be discarded until the stop file ([TEST_PATH]/local/lock/db-archive.stop) is removed
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -60,7 +60,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 3, size 48MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -85,7 +85,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000006-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 0, default_compress = 0
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
|
||||
@@ -11,7 +11,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -46,7 +46,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 2, size 32MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -68,7 +68,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 3, size 48MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -93,7 +93,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000006-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
|
||||
@@ -11,7 +11,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000001-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000001
|
||||
@@ -30,7 +30,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = bogus, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = bogus, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
ERROR: [124]: unable to connect to bogus: unable to establish master SSH connection: master process exited unexpectedly
|
||||
DEBUG: safe exit called, terminating threads
|
||||
|
||||
@@ -42,7 +42,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = bogus, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = bogus, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
ERROR: [124]: unable to connect to bogus: unable to establish master SSH connection: master process exited unexpectedly
|
||||
ERROR: local archive store max size has exceeded limit of 24MB - WAL segments will be discarded until the stop file ([TEST_PATH]/local/lock/db-archive.stop) is removed
|
||||
DEBUG: safe exit called, terminating threads
|
||||
@@ -60,7 +60,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 3, size 48MB
|
||||
DEBUG: archive 000000010000000100000002-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000002
|
||||
@@ -85,7 +85,7 @@ DEBUG: File->move: absolute:[TEST_PATH]/local/archive/db/out/000000010000000
|
||||
DEBUG: No fork on archive local for TESTING
|
||||
DEBUG: starting async archive-push
|
||||
DEBUG: File->manifest: db:absolute:[TEST_PATH]/local/archive/db/out
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: archive to be copied to backup total 1, size 16MB
|
||||
DEBUG: archive 000000010000000100000006-1c7e00fd09b9dd11fc2966590b3e3274645dd031, is WAL 1, source_compressed = 0, destination_compress 1, default_compress = 1
|
||||
DEBUG: Archive->pushCheck: backup:archive:000000010000000100000006
|
||||
|
||||
@@ -9,7 +9,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -222,7 +222,7 @@ DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mod
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -411,7 +411,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -428,7 +428,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -445,7 +445,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -462,7 +462,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -479,7 +479,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -639,7 +639,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -814,7 +814,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -992,7 +992,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1281,7 +1281,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1447,7 +1447,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1611,7 +1611,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1789,7 +1789,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1952,7 +1952,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2123,7 +2123,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2309,7 +2309,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
|
||||
@@ -9,7 +9,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -223,7 +223,7 @@ DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mod
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -413,7 +413,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -430,7 +430,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -447,7 +447,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -464,7 +464,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -481,7 +481,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -653,7 +653,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -848,7 +848,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1040,7 +1040,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1343,7 +1343,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1523,7 +1523,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1705,7 +1705,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1891,7 +1891,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2076,7 +2076,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2257,7 +2257,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2444,7 +2444,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
|
||||
@@ -9,7 +9,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -221,7 +221,7 @@ DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mod
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -413,7 +413,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -430,7 +430,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -447,7 +447,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -464,7 +464,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -481,7 +481,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -640,7 +640,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -815,7 +815,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -992,7 +992,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1280,7 +1280,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1445,7 +1445,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1608,7 +1608,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1785,7 +1785,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1947,7 +1947,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2117,7 +2117,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2302,7 +2302,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
|
||||
@@ -9,7 +9,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -222,7 +222,7 @@ DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mod
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -415,7 +415,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -432,7 +432,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -449,7 +449,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -466,7 +466,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -483,7 +483,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -654,7 +654,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -849,7 +849,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1040,7 +1040,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1342,7 +1342,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1521,7 +1521,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1702,7 +1702,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1887,7 +1887,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2071,7 +2071,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2251,7 +2251,7 @@ DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2437,7 +2437,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = false, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = false
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
|
||||
@@ -4,13 +4,13 @@ run 005 - rmt 1, cmp 0, hardlink 0
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --manifest-save-threshold=3 --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -178,7 +178,7 @@ db-version="9.3"
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -191,7 +191,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
[
|
||||
{
|
||||
@@ -245,14 +245,14 @@ DEBUG: safe exit called, terminating threads
|
||||
full backup (resume)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -420,7 +420,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-FULL-2]' (add and delete files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-FULL-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-FULL-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-FULL-2]
|
||||
@@ -464,7 +464,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid database version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -473,7 +473,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -482,7 +482,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid system id)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -491,7 +491,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -500,7 +500,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid control version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -509,7 +509,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -518,7 +518,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid catalog version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -527,7 +527,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -536,7 +536,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add tablespace 1)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -545,7 +545,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -726,7 +726,7 @@ db-version="9.3"
|
||||
incr backup (resume and add tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -736,7 +736,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -932,7 +932,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - new diff)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -942,7 +942,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1141,7 +1141,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - disabled)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --no-resume --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1151,7 +1151,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1351,7 +1351,7 @@ db-version="9.3"
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 115 (fail on used path)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1367,7 +1367,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on undef format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1379,7 +1379,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on mismatch format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1391,7 +1391,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', remap (remap all paths)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1466,7 +1466,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add files and remove tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1475,7 +1475,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1658,7 +1658,7 @@ db-version="9.3"
|
||||
incr backup (update files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1667,7 +1667,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1848,7 +1848,7 @@ db-version="9.3"
|
||||
diff backup (no updates)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1857,7 +1857,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2052,7 +2052,7 @@ db-version="9.3"
|
||||
incr backup (remove files - but won't affect manifest)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2061,7 +2061,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2241,7 +2241,7 @@ db-version="9.3"
|
||||
diff backup (remove files during backup)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2250,7 +2250,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2441,13 +2441,13 @@ db-version="9.3"
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2650,7 +2650,7 @@ db-version="9.3"
|
||||
diff backup (add files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2659,7 +2659,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2850,7 +2850,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-DIFF-5]' (no tablespace remap)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-DIFF-5] --no-tablespace --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-5]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-5]
|
||||
@@ -2910,7 +2910,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -2926,7 +2926,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
[
|
||||
{
|
||||
@@ -3239,7 +3239,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
stanza bogus
|
||||
status: error (missing stanza path)
|
||||
@@ -3248,7 +3248,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
[
|
||||
{
|
||||
|
||||
@@ -4,13 +4,13 @@ run 006 - rmt 1, cmp 0, hardlink 1
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --manifest-save-threshold=3 --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -179,7 +179,7 @@ db-version="9.3"
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -192,7 +192,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
[
|
||||
{
|
||||
@@ -246,14 +246,14 @@ DEBUG: safe exit called, terminating threads
|
||||
full backup (resume)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -422,7 +422,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-FULL-2]' (add and delete files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-FULL-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-FULL-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-FULL-2]
|
||||
@@ -466,7 +466,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid database version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -475,7 +475,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -484,7 +484,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid system id)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -493,7 +493,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -502,7 +502,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid control version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -511,7 +511,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -520,7 +520,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid catalog version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -529,7 +529,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -538,7 +538,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add tablespace 1)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -547,7 +547,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -740,7 +740,7 @@ db-version="9.3"
|
||||
incr backup (resume and add tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -750,7 +750,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -966,7 +966,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - new diff)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -976,7 +976,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1189,7 +1189,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - disabled)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --no-resume --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1199,7 +1199,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1413,7 +1413,7 @@ db-version="9.3"
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 115 (fail on used path)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1429,7 +1429,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on undef format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1441,7 +1441,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on mismatch format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1453,7 +1453,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', remap (remap all paths)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1528,7 +1528,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add files and remove tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1537,7 +1537,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1734,7 +1734,7 @@ db-version="9.3"
|
||||
incr backup (update files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1743,7 +1743,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1942,7 +1942,7 @@ db-version="9.3"
|
||||
diff backup (no updates)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1951,7 +1951,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2154,7 +2154,7 @@ db-version="9.3"
|
||||
incr backup (remove files - but won't affect manifest)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2163,7 +2163,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2365,7 +2365,7 @@ db-version="9.3"
|
||||
diff backup (remove files during backup)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2374,7 +2374,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2575,13 +2575,13 @@ db-version="9.3"
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2785,7 +2785,7 @@ db-version="9.3"
|
||||
diff backup (add files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2794,7 +2794,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -3003,7 +3003,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-DIFF-5]' (no tablespace remap)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-DIFF-5] --no-tablespace --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-5]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-5]
|
||||
@@ -3063,7 +3063,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -3079,7 +3079,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
[
|
||||
{
|
||||
@@ -3392,7 +3392,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
stanza bogus
|
||||
status: error (missing stanza path)
|
||||
@@ -3401,7 +3401,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
[
|
||||
{
|
||||
|
||||
@@ -4,13 +4,13 @@ run 007 - rmt 1, cmp 1, hardlink 0
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --manifest-save-threshold=3 --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -176,7 +176,7 @@ db-version="9.3"
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -189,7 +189,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
[
|
||||
{
|
||||
@@ -243,14 +243,14 @@ DEBUG: safe exit called, terminating threads
|
||||
full backup (resume)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -420,7 +420,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-FULL-2]' (add and delete files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-FULL-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-FULL-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-FULL-2]
|
||||
@@ -464,7 +464,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid database version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -473,7 +473,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -482,7 +482,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid system id)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -491,7 +491,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -500,7 +500,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid control version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -509,7 +509,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -518,7 +518,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid catalog version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -527,7 +527,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -536,7 +536,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add tablespace 1)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -545,7 +545,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -724,7 +724,7 @@ db-version="9.3"
|
||||
incr backup (resume and add tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -734,7 +734,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -929,7 +929,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - new diff)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -939,7 +939,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1136,7 +1136,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - disabled)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --no-resume --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1146,7 +1146,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1344,7 +1344,7 @@ db-version="9.3"
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 115 (fail on used path)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1360,7 +1360,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on undef format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1372,7 +1372,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on mismatch format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1384,7 +1384,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', remap (remap all paths)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1459,7 +1459,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add files and remove tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1468,7 +1468,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1649,7 +1649,7 @@ db-version="9.3"
|
||||
incr backup (update files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1658,7 +1658,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1837,7 +1837,7 @@ db-version="9.3"
|
||||
diff backup (no updates)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1846,7 +1846,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2039,7 +2039,7 @@ db-version="9.3"
|
||||
incr backup (remove files - but won't affect manifest)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2048,7 +2048,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2226,7 +2226,7 @@ db-version="9.3"
|
||||
diff backup (remove files during backup)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2235,7 +2235,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2424,13 +2424,13 @@ db-version="9.3"
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2631,7 +2631,7 @@ db-version="9.3"
|
||||
diff backup (add files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2640,7 +2640,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2829,7 +2829,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-DIFF-5]' (no tablespace remap)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-DIFF-5] --no-tablespace --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-5]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-5]
|
||||
@@ -2889,7 +2889,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -2905,7 +2905,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
[
|
||||
{
|
||||
@@ -3218,7 +3218,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
stanza bogus
|
||||
status: error (missing stanza path)
|
||||
@@ -3227,7 +3227,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
[
|
||||
{
|
||||
|
||||
@@ -4,13 +4,13 @@ run 008 - rmt 1, cmp 1, hardlink 1
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --manifest-save-threshold=3 --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -177,7 +177,7 @@ db-version="9.3"
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -190,7 +190,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info db
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=db info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = db
|
||||
[
|
||||
{
|
||||
@@ -244,14 +244,14 @@ DEBUG: safe exit called, terminating threads
|
||||
full backup (resume)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
WARN: backup [BACKUP-FULL-1] is missing from the repository - removed from backup.info
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -422,7 +422,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-FULL-2]' (add and delete files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-FULL-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-FULL-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-FULL-2]
|
||||
@@ -466,7 +466,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid database version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -475,7 +475,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 8.0, system-id = 6156904820763115222
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -484,7 +484,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid system id)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -493,7 +493,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database version = 9.3, system-id 6156904820763115222 does not match backup version = 9.3, system-id = 6999999999999999999
|
||||
HINT: are you backing up to the correct stanza?
|
||||
@@ -502,7 +502,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid control version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -511,7 +511,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 842, catalog-version = 201306121
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -520,7 +520,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (invalid catalog version)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -529,7 +529,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
ERROR: [126]: database control-version = 937, catalog-version 201306121 does not match backup control-version = 937, catalog-version = 197208141
|
||||
HINT: this may be a symptom of database or repository corruption!
|
||||
@@ -538,7 +538,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add tablespace 1)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -547,7 +547,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -738,7 +738,7 @@ db-version="9.3"
|
||||
incr backup (resume and add tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -748,7 +748,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -963,7 +963,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - new diff)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -973,7 +973,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1184,7 +1184,7 @@ db-version="9.3"
|
||||
diff backup (cannot resume - disabled)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --no-resume --type=diff --stanza=db backup --test --test-delay=0
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1194,7 +1194,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1406,7 +1406,7 @@ db-version="9.3"
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 115 (fail on used path)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1422,7 +1422,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on undef format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1434,7 +1434,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', expect exit 104 (fail on mismatch format)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1446,7 +1446,7 @@ DEBUG: safe exit called, terminating threads
|
||||
restore, backup '[BACKUP-DIFF-2]', remap (remap all paths)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --set=[BACKUP-DIFF-2] --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-2]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-2]
|
||||
@@ -1521,7 +1521,7 @@ DEBUG: safe exit called, terminating threads
|
||||
incr backup (add files and remove tablespace 2)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1530,7 +1530,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1725,7 +1725,7 @@ db-version="9.3"
|
||||
incr backup (update files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1734,7 +1734,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-INCR-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -1931,7 +1931,7 @@ db-version="9.3"
|
||||
diff backup (no updates)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -1940,7 +1940,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2141,7 +2141,7 @@ db-version="9.3"
|
||||
incr backup (remove files - but won't affect manifest)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = incr
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2150,7 +2150,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 1, incremental = 1: ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F(\_[0-9]{8}\-[0-9]{6}(D|I)){0,1}$, sort reverse
|
||||
INFO: last backup label = [BACKUP-DIFF-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2350,7 +2350,7 @@ db-version="9.3"
|
||||
diff backup (remove files during backup)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup --test --test-delay=1
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2359,7 +2359,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-2], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2558,13 +2558,13 @@ db-version="9.3"
|
||||
full backup
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=full --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = full
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2766,7 +2766,7 @@ db-version="9.3"
|
||||
diff backup (add files)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/backrest/pg_backrest.conf --no-start-stop --type=diff --stanza=db backup
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-1], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-1]
|
||||
INFO: backup start: type = diff
|
||||
DEBUG: cluster path is [TEST_PATH]/db/common-2
|
||||
DEBUG: File->path_create: backup:cluster:[TEST_PATH]/backrest/backup/db, mode [undef]
|
||||
@@ -2775,7 +2775,7 @@ DEBUG: BackupInfo->new: backupClusterPath = [TEST_PATH]/backrest/backup/db
|
||||
DEBUG: BackupCommon::backupRegExpGet: full = 1, differential = 0, incremental = 0: ^[0-9]{8}\-[0-9]{6}F$
|
||||
DEBUG: File->list: backup:cluster:[TEST_PATH]/backrest/backup/db, expression ^[0-9]{8}\-[0-9]{6}F$, sort reverse
|
||||
INFO: last backup label = [BACKUP-FULL-3], version = [VERSION-1]
|
||||
DEBUG: Db->info(): isRemote = true, dbPath = [TEST_PATH]/db/common-2
|
||||
DEBUG: Db->info(): dbPath = [TEST_PATH]/db/common-2, isRemote = true
|
||||
DEBUG: Db->info=>: dbVersion = 9.3, controlVersion = 937, catalogVersion = 201306121, dbSysId = 6156904820763115222
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
DEBUG: Manifest->build
|
||||
@@ -2982,7 +2982,7 @@ db-version="9.3"
|
||||
restore delta, backup '[BACKUP-DIFF-5]' (no tablespace remap)
|
||||
> [BACKREST_BIN_PATH]/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --delta --set=[BACKUP-DIFF-5] --no-tablespace --stanza=db restore
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = db, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = db, user = [USER-2]
|
||||
DEBUG: File->exists: db:absolute:[TEST_PATH]/db/common-2/postmaster.pid
|
||||
INFO: Restoring backup set [BACKUP-DIFF-5]
|
||||
DEBUG: File->exists: backup:cluster:[TEST_PATH]/backrest/backup/db/[BACKUP-DIFF-5]
|
||||
@@ -3042,7 +3042,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
stanza db
|
||||
status: ok
|
||||
@@ -3058,7 +3058,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = [undef], remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = [undef], user = [USER-2]
|
||||
DEBUG: Info->listStanza
|
||||
[
|
||||
{
|
||||
@@ -3371,7 +3371,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
stanza bogus
|
||||
status: error (missing stanza path)
|
||||
@@ -3380,7 +3380,7 @@ DEBUG: safe exit called, terminating threads
|
||||
info bogus
|
||||
> ../bin/pg_backrest --config=[TEST_PATH]/db/pg_backrest.conf --stanza=bogus info --output=json
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
DEBUG: Protocol->new(): host = 127.0.0.1, user = [USER-2], stanza = bogus, remote-repo-path = [TEST_PATH]/backrest, command = [BACKREST_BIN_PATH]/pg_backrest
|
||||
DEBUG: Protocol->new(): command = [BACKREST_BIN_PATH]/pg_backrest, host = 127.0.0.1, remoteRepoPath = [TEST_PATH]/backrest, stanza = bogus, user = [USER-2]
|
||||
DEBUG: Info->listStanza: stanza = bogus
|
||||
[
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user