Você suspende-ClusterNode antes ou depois de Move-ClusterGroup?

4

O que você faz primeiro para evitar a interrupção do serviço? Ou isso não importa?

É:

Suspend-ClusterNode -Drain
Get-ClusterNode $env:COMPUTERNAME | Get-ClusterGroup | Move-ClusterGroup

ou:

Get-ClusterNode $env:COMPUTERNAME | Get-ClusterGroup | Move-ClusterGroup
Suspend-ClusterNode -Drain

O documento da Microsoft para Move-ClusterGroup diz:

"Moving a resource group is a way of simulating failover. It is also an appropriate step to take in preparation for routine maintenance on a node."

O que me faz pensar que você se move antes de suspender. Então, qual cmdlet você emite primeiro?

    
por Colyn1337 27.10.2015 / 18:51

1 resposta

2

Segundo a Microsoft, a sequência recomendada é mover e suspender link

Pausing (suspending) a node is usually done when applying software updates to the node, where the recommended sequence is to move all services and applications off of the node, pause the node, then apply software updates to the node. If you need to perform extensive diagnosis or maintenance on a cluster node, it might be more workable to stop (not pause) the Cluster service on that node.

    
por 27.10.2015 / 21:13