Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ public void setVolumePaths(List<String> volumePaths) {

@Override
public boolean executeInSequence() {
return true;
// Returning false lets the KVM agent dispatch this command in parallel with
// other backup commands (notably DeleteBackupCommand). A long-running snapshot
// copy must not block a concurrent delete on a different VM's backup. Safe
// because each backup operates on its own on-NAS path (named after the VM
// uuid + timestamp) and the NFS mount lifecycle is per-script-invocation,
// not shared — so there is no path-level contention between parallel runs.
return false;
Comment thread
DaanHoogland marked this conversation as resolved.
}
}
Loading