If I have a three node 2016 Hyper-V cluster, what settings would I modify if I wanted VMs to be moved off of an isolated node automatically after one minute? I am thinking I would make the following chagnes:
ResiliencyLevel: <Leave default value>
(Get-Cluster).ResiliencyLevel = 2
ResiliencyPeriod:
(Get-Cluster).ResiliencyDefaultPeriod = 60
I am pretty confident with the ResiliencyPeriod, but I am not sure I fully understand the ResiliencyLevel setting. Why would I leave this in the default state vs changing it to "1"?
Web description:
ResiliencyLevel
1 – Allow the node to be in Isolated
state only if the node gave a notification and it went away for known reason, otherwise fail immediately. Known reasons include Cluster Service crash or Asymmetric Connectivity between nodes.
2- Always let a node go to an Isolated state and give it time before taking over ownership of the VMs.