Currently, fallback for the 'performance' option is done as a whole, taking away flexibility from the user. It also means that when only one of the two sub-properties is specified, the other one will default to the backend (i.e. QEMU or proxmox-backup-client) default rather than the schema default. For the latter point in particular, it can be argued to be incorrect. These limitations will only get worse in the future with more sub-properties.
Switch to a per-property fallback mechanism to improve the situation, having each go through the usual preference order (CLI/job > node-wide default > schema default). Technically, this is a breaking change, but pbs-entries-max is rather new and potential for breakage seems rather low. Requirements for breakage: * job (or CLI) that defines only one of the performance options * job also covers a guest where the other performance option applies * the other performance option is defined in the node-wide configuration * the node-wide setting is worse for the job than the implicit backend default (because this change will have the node-wide default win over the implicit backend default). Signed-off-by: Fiona Ebner <f.eb...@proxmox.com> --- New in v3. PVE/VZDump.pm | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/PVE/VZDump.pm b/PVE/VZDump.pm index 182fb80b..9a82260f 100644 --- a/PVE/VZDump.pm +++ b/PVE/VZDump.pm @@ -139,6 +139,17 @@ my sub parse_performance { } } +my sub merge_performance { + my ($prefer, $fallback) = @_; + + my $res = {}; + for my $opt (keys PVE::JSONSchema::get_format('backup-performance')->%*) { + $res->{$opt} = $prefer->{$opt} // $fallback->{$opt} + if defined($prefer->{$opt}) || defined($fallback->{$opt}); + } + return $res; +} + my $parse_prune_backups_maxfiles = sub { my ($param, $kind) = @_; @@ -312,8 +323,12 @@ sub read_vzdump_defaults { $parse_prune_backups_maxfiles->($res, "options in '$fn'"); parse_performance($res); - foreach my $key (keys %$defaults) { - $res->{$key} = $defaults->{$key} if !defined($res->{$key}); + for my $key (keys $defaults->%*) { + if (!defined($res->{$key})) { + $res->{$key} = $defaults->{$key}; + } elsif ($key eq 'performance') { + $res->{$key} = merge_performance($res->{$key}, $defaults->{$key}); + } } if (defined($res->{storage}) && defined($res->{dumpdir})) { @@ -575,8 +590,10 @@ sub new { if ($k eq 'dumpdir' || $k eq 'storage') { $opts->{$k} = $defaults->{$k} if !defined ($opts->{dumpdir}) && !defined ($opts->{storage}); - } else { - $opts->{$k} = $defaults->{$k} if !defined ($opts->{$k}); + } elsif (!defined($opts->{$k})) { + $opts->{$k} = $defaults->{$k}; + } elsif ($k eq 'performance') { + $opts->{$k} = merge_performance($opts->{$k}, $defaults->{$k}); } } -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel