Skip to content

Commit

Permalink
Use bookmarks created after the latest snapshot
Browse files Browse the repository at this point in the history
This commit changes syncoid's behavior so it is always looking for
a matching snapshot and a matching bookmark. If the bookmark was created
after the snapshot it is used instead. This allows replication when the
latest snapshot replicated was deleted on the source, a common snapshot
was found but rollback on the target is not allowed. The matching bookmark
is used instead for replication.

This fixes jimsalterjrs#602
  • Loading branch information
0xFelix committed Apr 23, 2023
1 parent 86fffca commit b3e0c5c
Showing 1 changed file with 29 additions and 16 deletions.
45 changes: 29 additions & 16 deletions syncoid
Original file line number Diff line number Diff line change
Expand Up @@ -606,26 +606,30 @@ sub syncdataset {
my $targetsize = getzfsvalue($targethost,$targetfs,$targetisroot,'-p used');

my $bookmark = 0;
my $bookmarkcreation = 0;
my $bookmarkguid = 0;
my $bookmarksnap = 0;
my $usebookmark = 0;

my $matchingsnap = getmatchingsnapshot($sourcefs, $targetfs, \%snaps);
if (! $matchingsnap) {
# no matching snapshots, check for bookmarks as fallback
my %bookmarks = getbookmarks($sourcehost,$sourcefs,$sourceisroot);

# check for matching guid of source bookmark and target snapshot (oldest first)
foreach my $snap ( sort { $snaps{'target'}{$b}{'creation'}<=>$snaps{'target'}{$a}{'creation'} } keys %{ $snaps{'target'} }) {
my $guid = $snaps{'target'}{$snap}{'guid'};
# find most recent matching bookmark
my %bookmarks = getbookmarks($sourcehost,$sourcefs,$sourceisroot);

if (defined $bookmarks{$guid}) {
# found a match
$bookmark = $bookmarks{$guid}{'name'};
$bookmarkcreation = $bookmarks{$guid}{'creation'};
$matchingsnap = $snap;
last;
}
# check for matching guid of source bookmark and target snapshot (oldest first)
foreach my $snap ( sort { $snaps{'target'}{$b}{'creation'}<=>$snaps{'target'}{$a}{'creation'} } keys %{ $snaps{'target'} }) {
my $guid = $snaps{'target'}{$snap}{'guid'};

if (defined $bookmarks{$guid}) {
# found a match
$bookmark = $bookmarks{$guid}{'name'};
$bookmarkguid = $guid;
$bookmarksnap = $snap;
last;
}
}

if (! $matchingsnap) {
# no matching snapshots, check for bookmarks as fallback
if (! $bookmark) {
if ($args{'force-delete'}) {
if (!$quiet) { print "Removing $targetfs because no matching snapshots were found\n"; }
Expand Down Expand Up @@ -671,9 +675,18 @@ sub syncdataset {

# return false now in case more child datasets need replication.
return 0;
} else {
# use bookmark as fallback
$matchingsnap = $bookmarksnap;
$usebookmark = 1;
}
} elsif ($bookmark && $bookmarkguid ne $snaps{'source'}{$matchingsnap}{'guid'} && $bookmarks{$bookmarkguid}{'creation'} > substr($snaps{'source'}{$matchingsnap}{'creation'}, 0, -3)) {
if ($debug) { print "DEBUG: using bookmark $bookmark because it was created after latest matching snapshot $matchingsnap\n"; }
$matchingsnap = $bookmarksnap;
$usebookmark = 1;
}


# make sure target is (still) not currently in receive.
if (iszfsbusy($targethost,$targetfs,$targetisroot)) {
warn "Cannot sync now: $targetfs is already target of a zfs receive process.\n";
Expand All @@ -690,7 +703,7 @@ sub syncdataset {

my $nextsnapshot = 0;

if ($bookmark) {
if ($usebookmark) {
my $bookmarkescaped = escapeshellparam($bookmark);

if (!defined $args{'no-stream'}) {
Expand Down Expand Up @@ -773,7 +786,7 @@ sub syncdataset {

# do a normal replication if bookmarks aren't used or if previous
# bookmark replication was only done to the next oldest snapshot
if (!$bookmark || $nextsnapshot) {
if (!$usebookmark || $nextsnapshot) {
if ($matchingsnap eq $newsyncsnap) {
# edge case: bookmark replication used the latest snapshot
return 0;
Expand Down

0 comments on commit b3e0c5c

Please sign in to comment.