From ac191ec740cb29446c48b7b807c91ed196cdcab8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Fri, 12 May 2017 11:56:09 +0200 Subject: [PATCH] migrate: snapshot parameter for incremental transfer --- PVE/Storage.pm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/PVE/Storage.pm b/PVE/Storage.pm index 56e7a13..501494a 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -525,7 +525,7 @@ sub abs_filesystem_path { } sub storage_migrate { - my ($cfg, $volid, $target_host, $target_storeid, $target_volname) = @_; + my ($cfg, $volid, $target_host, $target_storeid, $target_volname, $base_snapshot) = @_; my ($storeid, $volname) = parse_volume_id($volid); $target_volname = $volname if !$target_volname; @@ -546,10 +546,17 @@ sub storage_migrate { local $ENV{RSYNC_RSH} = $ssh; + my $no_incremental = sub { + my ($type) = @_; + die "incremental migration not supported on storage type $type\n" + if defined($base_snapshot); + }; + # only implemented for file system based storage if ($scfg->{path}) { - if ($tcfg->{path}) { + $no_incremental->($scfg->{type}); + if ($tcfg->{path}) { my $src_plugin = PVE::Storage::Plugin->lookup($scfg->{type}); my $dst_plugin = PVE::Storage::Plugin->lookup($tcfg->{type}); my $src = $src_plugin->path($scfg, $volname, $storeid); @@ -622,6 +629,12 @@ sub storage_migrate { my $recv = ['ssh', "root\@$target_host", '--', 'pvesm', 'import', $volid, 'zfs', '-', '-with-snapshots', '1']; my $free = ['ssh', "root\@$target_host", '--', 'pvesm', 'free', $volid, '-snapshot', '__migration__']; + if (defined($base_snapshot)) { + # Check if the snapshot exists on the remote side: + push @$send, '-snapshot', $base_snapshot; + push @$recv, '-base', $base_snapshot; + } + volume_snapshot($cfg, $volid, '__migration__'); eval{ run_command([$send, $recv]); @@ -638,6 +651,7 @@ sub storage_migrate { } } elsif ($scfg->{type} eq 'lvmthin' || $scfg->{type} eq 'lvm') { + $no_incremental->($scfg->{type}); if (($scfg->{type} eq $tcfg->{type}) && ($tcfg->{type} eq 'lvmthin' || $tcfg->{type} eq 'lvm')) { -- 2.39.2