From: Fiona Ebner Date: Thu, 17 Nov 2022 14:00:13 +0000 (+0100) Subject: manager: avoid scoring nodes when not trying next and current node is valid X-Git-Url: https://git.proxmox.com/?p=pve-ha-manager.git;a=commitdiff_plain;h=c724ce1be787764baa8f2a3e0e7961de4eb4dfa0 manager: avoid scoring nodes when not trying next and current node is valid With the Usage::Static plugin, scoring is not as cheap anymore and select_service_node() is called for each running service. This should cover most calls of select_service_node(). Signed-off-by: Fiona Ebner --- diff --git a/src/PVE/HA/Manager.pm b/src/PVE/HA/Manager.pm index cc2ada4..69bfbc3 100644 --- a/src/PVE/HA/Manager.pm +++ b/src/PVE/HA/Manager.pm @@ -152,6 +152,8 @@ sub select_service_node { return $maintenance_fallback if defined($maintenance_fallback) && $pri_groups->{$top_pri}->{$maintenance_fallback}; + return $current_node if !$try_next && $pri_groups->{$top_pri}->{$current_node}; + my $scores = $online_node_usage->score_nodes_to_start_service($sid, $current_node); my @nodes = sort { $scores->{$a} <=> $scores->{$b} || $a cmp $b @@ -171,8 +173,6 @@ sub select_service_node { } else { return $nodes[0]; } - } elsif (defined($found)) { - return $nodes[$found]; } else { return $nodes[0]; }