[pve-devel] [PATCH Storage] Boot LVM Migration Speed
jlavoy
jalavoy at gmail.com
Sat Dec 24 05:50:39 CET 2016
Boost LVM Migration Speed. This speeds up host to
host LVM migration to be more in line with what you see using qcows or raw
files.
Signed-off-by: jlavoy <jalavoy at gmail.com>
---
PVE/Storage.pm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/PVE/Storage.pm b/PVE/Storage.pm
index a904f4e..71b699c 100755
--- a/PVE/Storage.pm
+++ b/PVE/Storage.pm
@@ -613,11 +613,11 @@ sub storage_migrate {
eval {
if ($tcfg->{type} eq 'lvmthin') {
- run_command([["dd", "if=$src"],["/usr/bin/ssh", "root\@${target_host}",
- "dd", 'conv=sparse', "of=$dst"]]);
+ run_command([["dd", "if=$src", "bs=4k"],["/usr/bin/ssh", "root\@${target_host}",
+ "dd", 'conv=sparse', "of=$dst", "bs=4k"]]);
} else {
- run_command([["dd", "if=$src"],["/usr/bin/ssh", "root\@${target_host}",
- "dd", "of=$dst"]]);
+ run_command([["dd", "if=$src", "bs=4k"],["/usr/bin/ssh", "root\@${target_host}",
+ "dd", "of=$dst", "bs=4k"]]);
}
};
if (my $err = $@) {
--
2.10.2
More information about the pve-devel
mailing list