HA Deepdive

My posts on VMware High Availability(HA) has “historically” been my best read post. I decided to rewrite the posts and create a page which is easier to maintain when functionality changes and a lot easier to find via Google and or the menu. This section is always under construction so check it every once in a while!
Everybody probably knows the basics of VMware HA so I’m not going to explain how to set it up or that is uses a heartbeat for monitoring outages or isolation. if you want to know more about the basics I recommend reading the availability guide. Keep in mind that a lot of this info is derived from the availability guide, VMworld presentations and by diving into HA in my lab. I used these source articles as a basis for mine and tried to simplify the concepts to make it easier to digest.
I’ve divided the article into several sections and each section will contain a “basic design principle”:
- Node types
- Node roles
- Isolation response
- Isolation response gotchas
- Slot sizes and Admission control
- Advanced settings
Primary and Secondary nodes
A VMware HA Cluster consists of nodes, primary and secondary nodes. Primary nodes hold cluster settings and all “node states” which are synchronized between primaries. Node states hold for instance resource usage information. In case that vCenter is not available the primary nodes will have a rough estimate of the resource occupation and can take this into account when a fail-over needs to occur. Secondary nodes send their state info to the primary nodes.
Nodes send a heartbeat to each other, which is the mechanism to detect possible outages. Primary nodes send heartbeats to primary nodes only. Secondary nodes send their heartbeats to primary nodes only. Nodes send out these heartbeats every second by default. However this is a changeable value: das.failuredetectioninterval. (Advanced Settings on your HA-Cluster)
The first 5 hosts that join the VMware HA cluster are automatically selected as primary nodes. All the others are automatically selected as secondary nodes. When you do a reconfigure for HA the primary nodes and secondary nodes are selected again, this is at random. The vCenter client does not show which host is a primary and which is not. This however can be revealed from the Service Console:
cat /var/log/vmware/aam/aam_config_util_listnodes.log
Another method of showing the primary nodes is:
/opt/vmware/aam/bin/Cli (ftcli on earlier versions) AAM> ln
Now that you’ve seen that it is possible that you can list all node with the CLI you probably wonder what else is possible… Lets start with a warning, this is not supported. Also keep in mind that the supported limit of primaries is 5, I repeat 5. This is a soft limit, so you can manually add a 6th, but this is not supported. Now here’s the magic…
To promote a node:
/opt/vmware/aam/bin/Cli (ftcli on earlier versions) AAM> promotenode <nodename>
To demote a node:
/opt/vmware/aam/bin/Cli (ftcli on earlier versions) AAM> demotenode <nodename>
I can’t say this enough, it is unsupported but it does work. Now when does a re-election occur? It is a common misconception that a re-election occurs when a primary node fails. This is not the case. The promotion of a secondary host only occurs when a primary host is either put in “Maintenance Mode”, disconnected from the cluster, removed from the cluster or when you do a reconfigure for HA.
If all primary hosts fail simultaneously no HA initiated restart of the VMs will take place. HA needs at least one primary host to restart VMs. This is why you can only take four host failures in account when configuring HA. (Remember 5 primaries…)
Basic design principle: In blade environments, divide hosts over all blade chassis and never exceed four hosts per chassis to avoid having all primary nodes in a single chassis.
The fail-over coordinator aka “active primary”
You will need at least one primary because the “fail-over coordinator” role will be assigned to this primary, this role is also described as “active primary”. I will use “fail-over coordinator” for now. The fail-over coordinator coordinates the restart of VMs on the remaining primary and secondary hosts. The coordinator takes restart priorities in account. Keep in mind, when two hosts fail at the same time it will handle the restart sequentially. In other words, restart the VMs of the first failed host (taking restart priorities in account) and then restart the VMs of the host that failed as second (again taking restart priorities in account). If the fail-over coordinator fails one of the other primaries will take over.
Isolation Response
Talking about HA initiated fail-overs; one of the settings everyone has looked into is the “isolation response”. The isolation response refers to the action that HA takes when the heartbeat network is isolated. Today there are three isolation responses, “power off”, “leave powered on” and “shut down”.
Up to ESX 3.5 U2 / vCenter 2.5U2 the default isolation response when creating a new cluster was “Power off”. As of ESX 3.5 U3 / vCenter 2.5 U3 the default isolation response is “leave powered on”. For vSphere ESX / vCenter 4.0 this has been changed to “Shut down”. Keep this in mind when installing a new environment, you might want to change the default depending on customer requirements.
Power off – When a network isolation occurs all VMs are powered off. It is a hard stop.
Shut down – When a network isolation occurs all VMs running on that host are shut down via VMware Tools. If this is not successful within 5 minutes a “power off” will be executed.
Leave powered on – When a network isolation occurs on the host the state of the VMs remains unchanged.
The question remains, which setting should I use? It depends. I personally prefer “Shut down” because I do not want to use a deprecated host and it will shut down your VMs cleanly. Many people prefer to use “Leave powered on” because it reduces the chances of a false positive. A false positive in this case is an isolated heartbeat network but a non-isolated VM network and a non-isolated iSCSI / NFS network.
I guess most of you would like to know how HA knows if the host is isolated or completely unavailable when you have selected “leave powered on”.
HA actually does not know the difference. HA will try to restart the affected VMs in both cases. When the host has failed a restart will take place, but if a host is merely isolated the non-isolated hosts will not be able to restart the affected VMs. This is because of the VMDK file lock; no other host will be able to boot a VM when the files are locked. When a host fails this lock starves and a restart can occur.
The amount of retries is configurable as of vCenter 2.5 U4 with the advanced option “das.maxvmrestartcount”. The default value is 5. Pre vCenter 2.5 U4 HA would keep retrying forever which could lead to serious problems as described in the KB article.
The isolation response is a setting that needs to be taken into account when you create your design. For instance when using an iSCSI array or NFS choosing “leave powered on” as your default isolation response might lead to a split-brain situation because the disk lock times out if the iSCSI network is also unavailable. In this case the VM is being restarted on a different host while it is not being powered off on the original host. In a normal situation this should not lead to problems as the VM is restarted and the host on which it runs owns the lock on the VMDK, but for some weird reason when disaster strikes you will not end up in a normal situation but you might end up in an exceptional situation. Do you want to take that risk? Of course, as pointed out by my colleague Andrew Mitchell, there might be a chance that only the Service Console network is isolated. To avoid false positives you could configure a secondary service console on the same vSwitch and network as the iSCSI VMkernel portgroup. By doing this you will be able to detect if there’s an outage on the storage network or not.
Basic design principle: For iSCSI I recommend to set the isolation response to “Power off” to avoid a possible split brain scenario. I also recommend to have a secondary service console running on the same vSwitch as the iSCSI network to detect an iSCSI outage and avoid false positives.
Isolation gotcha
I thought this issue was something that was common knowledge but a recent blog article by Mike Laverick proved me wrong. I think I can safely assume that if Mike doesn’t know this it’s not common knowledge.
The default value for isolation/failure detection is 15 seconds. In other words the failed or isolated host will be declared dead by the other hosts in the HA cluster on the fifteenth second and a restart will be initiated by one of the primary hosts.
For now let’s assume the isolation response is “power off”. The “power off”(isolation response) will be initiated by the isolated host 2 seconds before the das.failuredetectiontime. A “power off” will be initiated on the thirteenth second and a restart will be initiated on the fifteenth second.
Does this mean that you can end up with your VMs being down and HA not restarting them?
Yes, when the heartbeat returns between the 13th and 15th second the “power off” could already have been initiated. The restart however will not be initiated because the heartbeat indicates that the host is not isolated anymore.
How can you avoid this?
Pick “Leave VM powered on” as an isolation response. Increasing the das.failuredetectiontime will also decrease the chances of running in to issues like these.
Basic design principle: Increase “das.failuredetectiontime” to 30 seconds (30000) to avoid false positives.
Slot sizes and Admission Control
This has always been a hot topic, HA and Slot sizes/Admission Control. One of the most extensive (Non-VMware) articles is by Chad Sakac aka Virtual Geek, but of course since then a couple of things has changed. Chad commented on this article and asked if I could address this topic, here you go Chad.
Lets start with the basics.
What’s HA admission control about? Why is it there? The “Availability Guide” states the following:
vCenter Server uses admission control to ensure that sufficient resources are available in a cluster to provide failover protection and to ensure that virtual machine resource reservations are respected.
Admission Control ensures available capacity for HA initiated fail-overs by reserving capacity. Keep in mind that admission control calculates the capacity required for a fail-over based on available resources. In other words if a host is placed into maintenance mode, or disconnected for that matter, it is taken out of the equation. The same goes for DPM, if if admission control is set to strict DPM in no way will violate availability constraints.
To calculate available resources and needed resources for a fail-over HA uses a concept called “slots”. Slots dictate how many VMs can be started up before vCenter starts yelling “Out Of Resources”!! Normally each slot represents one VM.
A slot is a logical representation of the memory and CPU resources that satisfy the requirements for any powered-on virtual machine in the cluster.
In other words a slot size is the worst case CPU and Memory reservation scenario in a cluster. This directly leads to the first “gotcha”:
HA uses the highest CPU reservation of any given VM and the highest memory reservation of any given VM. If no reservations of higher than 256Mhz are set HA will use a default of 256Mhz for CPU and a default of 0MB+memory overhead for memory.
If VM1 has 2GHZ and 1024GB reserved and VM2 has 1GHZ and 2048GB reserved the slot size for memory will be 2048MB+memory overhead and the slot size for CPU will be 2GHZ.
Basic design principle: Be really careful with reservations, if there’s no need to have them on a per VM basis don’t configure them.
How does HA calculate how many slots are available per host?
Of course we need to know what the slot size for memory and CPU is first. Then we divide the total available CPU resources of a host by the CPU slot size and the total available Memory Resources of a host by the memory slot size. This leaves us with a slot size for both memory and CPU. The most restrictive number is the amount of slots for this host. If you have 25 CPU slots but only 5 memory slots the amount of available slots for this host will be 5.
As you can see this can lead to very conservative consolidation ratios. With vSphere this is something that’s configurable. If you have just one VM with a really high reservation you can set the following advanced settings to lower the slot size being used during these calculations: das.slotCpuInMHz or das.slotMemInMB. To avoid not being able to power on the VM with high reservations these VM will take up multiple slots. Keep in mind that when you are low on resources this could mean that you are not able to power-on this high reservation VM as resources are fragmented throughout the cluster instead of located on a single host.
If you need to use a high reservation for either CPU or Memory these options (das.slotCpuInMHz or das.slotMemInMB) could definitely be useful, there is however something that you need to know. Check this diagram and see if you spot the problem, the das.slotMemInMB has been set to 1024MB.

Notice that the memory slot size has been set to 1024MB. VM24 has a 4GB reservation set. Because of this VM24 spans 4 slots. As you might have noticed none of the hosts has 4 slots left. Although in total there are enough slots available; they are fragmented and HA might not be able to actually boot VM24. Keep in mind that admission control does not take fragmentation of slots into account when slot sizes are manually defined with advanced settings. It does count 4 slots for VM24, but it will not verify the amount of available slots per host.
Basic design principle: Avoid using advanced settings to decrease slot size as it could lead to more down time.
Another issue that needs to be discussed is “Unbalanced clusters”. Unbalanced would for instance be a cluster with 5 hosts of which one contains substantially more memory than the others. What would happen to the total amount of slots in a cluster of the following specs:
Five hosts, each host has 16GB of memory except for one host(esx5) which has recently been added and has 32GB of memory.
One of the VMs in this cluster has 4CPUs and 4GB of memory, because there are no reservations set the memory overhead of 325MB is being used to calculate the memory slot sizes. (It’s more restrictive than the CPU slot size.)

This results in 50 slots for esx01, esx02, esx03 and esx04. However, esx05 will have 100 slots available. Although this sounds great admission control rules the host out with the most slots as it takes the worst case scenario into account. In other words; end result: 200 slot cluster. With 5 hosts of 16GB, (5 x 50) – (1 x 50), the result would have been exactly the same.
Basic design principle: Balance your clusters when using admission control and be conservative with reservations as it leads to decreased consolidation ratios.
Now what happens if you set the number of allowed host failures to 1?
The host with the most slots will be taken out of the equation. If you have 8 hosts with 90 slots in total but 7 hosts each have 10 slots and one host 20 this single host will not be taken into account. Worst case scenario! In other words the 7 hosts should be able to provide enough resources for the cluster when a failure of the “20 slot” host occurs.
And of course if you set it to 2 the next host that will be taken out of the equation is the host with the second most slots and so on.
One thing worth mentioning, as Chad stated with vCenter 2.5 the number of vCPUs for any given VM was also taken in to account. This led to a very conservative and restrictive admission control. This behavior has been modified with vCenter 2.5 U2, the amount of vCPUs is not taken into account.
Basic design principle: Think about “maintenance mode”. If a single host needs maintenance it will be taken out of the equation and this means you might not be able to boot up new VMs when admission control is set to strict.
Can I avoid large HA slot sizes due to reservations without resorting to advanced settings? That’s the question I get almost daily. The answer used to be NO. HA uses reservations to calculate the slot size and there’s no way to tell HA to ignore them without using advanced settings pre-vSphere. So there is your answer: pre-vSphere.
With vSphere VMware introduced a percentage next to an amount of host failures. The percentage avoids the slot size issue as it does not use slots for admission control. So what does it use?
When you select a specific percentage that percentage of the total amount of resources will stay unused for HA purposes. First of all VMware HA will add up all available resources to see how much it has available. Then VMware HA will calculate how much resources are currently consumed by adding up all reservations of both memory and CPU for powered on virtual machines. For those virtual machines that do not have a reservation larger than 256Mhz a default of 256Mhz will be used for CPU and a default of 0MB+memory overhead will be used for Memory. (Amount of overhead per config type can be found on page 28 of the resource management guide.)
In other words:
((total amount of available resources – total reserved VM resources)/total amount of available resources)
Where total reserved VM resources include the default reservation of 256Mhz and the memory overhead of the VM.
Let’s use a diagram to make it a bit more clear:

Total cluster resources are 24Ghz(CPU) and 96GB(MEM). This would lead to the following calculations:
((24Ghz-(2Gz+1Ghz+256Mhz+4Ghz))/24Ghz) = 69 % available
((96GB-(1,1GB+114MB+626MB+3,2GB)/96GB= 85 % available
As you can see the amount of memory differs from the diagram. Even if a reservation has been set the amount of memory overhead is added to the reservation. For both metrics HA admission control will constantly check if the policy has been violated or not. When one of either two thresholds are reached, memory or CPU, admission control will disallow powering on any additional virtual machines.
Please keep in mind that if you have an unbalanced cluster(host with different CPU or memory resources) your percentage is equal or preferably larger than the percentage of resources provided by the largest host. This way you ensure that all virtual machines residing on this host can be restarted in case of a host failure. Another thing to keep in mind is as there are no slots which HA uses resources might be fragmented throughout the cluster. Make sure you have at least a host with enough available capacity to boot the largest VM (reservation CPU/MEM). Also make sure you select the highest restart priority for this VM(of course depending on the SLA) to ensure it will be able to boot.)
I created a diagram which makes it more obvious I think. So you have 5 hosts, each with roughly 76% memory usage. A host fails and all VMs will need to failover. One of those VMs has a 4GB memory reservation, as you can imagine failing over this particular VM will be impossible due to the fact that none of the hosts has enough memory available to guarantee it.

Basic design principle: Do the math, verify that a single host has enough resources to boot your largest VM. Also take restart priority into account for this/these VM(s).
It depends. Yes I know, that is the obvious answer but it actually does. There are three options and each have it’s own advantages and disadvantages. Here you go:
- Amount of host failures
Pros:- Fully automated, when a host is added to a cluster HA calculates how many slots are available.
- Ensures fail-over by calculating slotsizes.
Cons:
- Can be very conservative and inflexible when reservations are used as the largest reservation dictates slot sizes.
- Unbalanced clusters leads to waste of resources.
- Percentage reserved
Pros:- Flexible as it considers actual reservation per VM.
- Cluster dynamically adjusts number of host failure capacity when resources are added.
Cons:
- Manual calculations need to be done when adding additional hosts in a cluster and amount of host failures need to remain unchanged.
- Unbalanced clusters can be a problem when chosen percentage is too low.
- Designated failover host
Pros:- What you see is what you get.
- High resource utilization as dedicated fail-over host is unused.
Cons:
- What you see is what you get.
- Maximum of one fail-over host.
- Dedicated fail-over host not utilized during normal operations.
Basic design principle: Do the math, and take customer requirements into account. if you need flexibility a “Percentage” is the way to go, otherwise “Host failures” is recommended. I’m currently leaning more towards a %.
Advanced settings
VMware HA is probably the feature with the most advanced settings. Although many of them are rarely used some of them are needed in specific situations or included in best practices documents. The most used and valuable advanced settings are described below:
das.failuredetectiontime – Amount of milliseconds, timeout time, for isolation response action (with a default of 15000 milliseconds). It’s a best practice to increase the value to 60000 when an active/standby Service Console setup is used. For a host with two Service Consoles and a secondary isolation address it’s a best practice to increase it to at least 20000. I would recommend to always increase it to at least 30000
das.isolationaddress[x] – IP address the ESX hosts uses to check on isolation when no heartbeats are received, where [x] = 1‐10. VMware HA will use the default gateway as an isolation address and the provided value as an additional checkpoint. I recommend to add an isolation address when a secondary service console is being used for redundancy purposes.
das.usedefaultisolationaddress – Value can be true or false and needs to be set in case the default gateway, which is the default isolation address, should not or cannot be used for this purpose. In other words, if the default gateway is a non-pingable address set the “das.isolationaddress” to a pingable address and disable the usage of the default gateway by setting this to “false”.
das.allowVmotionNetworks – Allows a NIC that is used for VMotion networks to be considered for VMware HA heartbeat usage. This permits a host (ESXi only) to have only one NIC configured for management and VMotion combined.
das.allowNetwork[x] – Enables the use of port group names to control the networks used for VMware HA, where [x] = 0 – ?. You can set the value to be ʺService Console 2ʺ or ʺManagement Networkʺ to use (only) the networks associated with those port group names in the networking configuration. These networks need to be compatible for HA to configure successful.
das.bypassNetCompatCheck – Disable the “compatible network” check for HA that was introduced with Update 2. Default value is “false”, setting it to “true” disables the check. This setting can be useful when nodes in a cluster are not in the same subnet.
das.ignoreRedundantNetWarning – Remove the error icon/message from your vCenter when you don’t have a redundant Service Console connection. Default value is “false”, setting it to “true” will disable the warning.
Basic design principle: Avoid using advanced settings as much as possible as it leads to increased complexity.





vSphere 4.0 Quick Start Guide
So in essence; the ‘Leave powered on’ catches two of the three HA outage types, false positives covered, host down covered, but complete network faliure, when the COS and the VM networks go offline, Would leave VMs running without networking and require manual intervention.
Duncan,
Thanks for this. About this 12/15 second thang. What benefit to VM or generally does this offer. Why not have a timeout value of 15 seconds, and then this 13/14th second anomaly would “go away”. I’m stuggling to understand why HA uses this 3 second offset?
thanks Duncan – was planning on doing a post on this topic (as my old HA articles are also popular, but out of date. Would like to start directing them to more current docs…
I think you need to include a short discussion on slot size calculations – as this is part of HA, and is one of those “unknown important internals” (that also happens to keep changing).
@sconyard: agree, it does catch these
@mike laverick: I think it’s because VM’s need to be powered off before they can be restarted so there’s always the possibility that the heartbeat returns before the restart is initiated. A better solution might be: declare dead, shutdown, if heartbeat returns ignore, restart. if host/heartbeat is consistent for 5 minutes add in to the HA loop again.
@chad: good idea, when I can find the time I will add it for sure. or if you’ve got something laying around let me know…
@sconyard
Not sure if I completely understood what you meant, but in theory your third scenario is actually also covered by design as HA does not only look at a lock file, there is also a heartbeat written to the SAN. When the host dies it won’t update this heartbeat counter n thus surviving hosts have a way of aging the lock. Of course in the event of a complete network failure the restarted VM’s will probably be inaccessible as it is very likely the surviving hosts will also be impacted…
Ha does not send a heartbeat to the SAN that’s default ESX behavior to prevent the lock from staling and prevent users from starting the VM twice.
@Duncan
you’re right of course this ‘heartbeat’ to SAN behavior is indeed default ESX behavior managed by the Distributed Lock Manager and not part of HA.
Sorry for muddying the waters
Intriguing article, it is always helpful to deep dive into an aspect of the software and understand some of the advanced settings. I would also like to know where HA files reside with the service console to perform HA troubleshooting. I have had a few sites that have a recurring HA error, sometimes disabling and re enabling the client sometimes works but not always.
Duncan –
I’m just trying to clarify slot size calculations and how to roll it up to figuring out the number of requires servers in an HA cluster.
Lets say the largest VM is 4CPU and 16GB RAM (with a 16GB reservation). The ESX servers are all 2 socket, quad core 3GHz with 32GB RAM.
With overhead (about 650), my RAM slot size would end up being around 17GB., which gives me less than two slots per ESX server. Is this correct?
Now, if I have a VM with only 1 CPU and 2GB RAM, it will still take up a slot. If I do not change the default slot size settings, the slot is roughly 75% wasted. Is this correct?
In this scenario, if I do not “tweak” the slot sizes, do I only get one VM per node since it works out to about 1.7 slots per node?
Dave
1. You can find out the primaries by looking at
/var/log/vmware/aam_config_util_listprimaries.log
2. One of the primaries will be the rule cluster manager which hold all the rules for this HA cluster. You can find this out by “grep -i submitted /var/log/vmware/aam/vmware_server_name.log (You need replace server_name with your own server’s name)
3. If you want to know the step by step how HA add a host take a look at /var/log/vmware/aam/aam_config_util_addnode.log
This log will show you every step how HA add a host into the HA cluster, and if there is a problem it will also tell you where the problem is. In many situation you can not do much but reconfigure it, but it will give you an idea on which step went wrong
One more thing, when the heartbeat lost on one of the HA host, this could be a real network problem/hardware failure or just HA agent stopped for some reason. It’s not a good idea to power on all the VM when you lost heartbeat, so what the other hosts will do is “PING” the problem host to confirm. If the host reply to the ping, it will mark as ALIVE and the other hosts does nothing. If it didn’t then it will mark as DEAD, and the other hosts will ping the gateway to make sure themselves are good then power on the VMs. You can see that from less vmware_server_name.log | grep -i “Ping Node results:”
Keep in mind that unfortunately the log file does not always show the most current state that’s why I listed the other option which uses the CLI and should always be the most current state.
Thanks for your comments.
Hi Duncan,
HA will keep 10 aam_config_util_listprimaries.log files, and the latest one would reflect the last change.
For the Cli, you do need to export:
export FT_DIR=/opt/vmware/aam/
export FT_DOMAIN=vmware
or it will not work
vSphere:
The memory slot size is determined by the largest sum of a VM memory reservation plus the memory overhead of the VM.
By default VMs have no memory reservations.
In the case of a cluster full of VMs with no memory reservation, the memory slot size will actually be the largest memory overhead of a VM (ie. 88MB).
Jas
I’m looking at this whole slot thing all over again. It’s horrible complicated isn’t? I wonder how many customers look at this – and look for a different way of representing free capacity for fail-over such as the new percentage value…
agreed Mike, with the Percentage option it does make it a bit less complicating.
Can you further explain the calculation giving the memory overhead of 325 MB given 4 vCpu / 4 GB in section “Slot size/Admission Control”.
There’s not much to explain… just check page 28 of the resource management guide: http://www.vmware.com/pdf/vsphere4/r40_u1/vsp_40_u1_resource_mgmt.pdf
Hi again,
There it is, I review the resource mgmt guide for VI3 by mistake: http://www.vmware.com/pdf/vi3_301_201_resource_mgmt.pdf .
Thanks.
Edvard
Thanks for sharing all this information on HA.
I’m wondering if there is a way to put HA in a testing mode.
In our current setup we unfortunately sometimes have network hick-ups. This made HA make some unwanted decisions. So I’ve stopped HA. Now to cope with these network issues, I’ve adjusted some advanced HA settings, mainly to make HA a bit more flexible.
Do you know if it’s possible to have HA in a sort of simulation mode and just report on what it wants to do, instead of actually doing it? So I can study it’s behaviour for a certain period and then later decide to go live with it.
At some point could you address how the surviving HA nodes determine which VMs were affected by the host failure, whether the method changes if vCenter is unavailable, and how/where that state is maintained and updated?
We recently had an issue where we moved most of our VMs from one array to another and experienced a host failure a few days later. During the HA failover the HA agent on multiple servers attempted to register several VMs using their old datastore locations and subsequently failed to bring them back. Fortunately the vCenter VM did restart successfully and we were able to manually power on the remaining VMs.
State is registered in a “database” and part of the node state and replicated amongst eachother. vCenter isn’t used during the failover at all. HA isn’t dependent on vCenter in any way when it is up and running.
What happened in your specific case I really don’t know…
What types of items can cause isolation responses other than an actual NIC and/or Network failure? I have a single service console per host, each with two pNICs. pNICs are separated onto two physical switches (same VLAN). I’ve set the options mentioned above and provided numerous isolation addresses to ping physical devices on each switch. With all these tuning parameters, I still encountered an isolation event. Nothing in the aam logs says what happened as far as I can tell, just that I had one.
One more bit of info…One of the physical switches did have a problem. We don’t know what yet since it appears to still have the problem, but every server is running fine. So..why didn’t the second pNIC kick in? I have both NICs in an active/active config. Should they have been in an active/standby config?
adam
FWIW, I was looking into reporting which nodes hold the Primary HA roles in my environment and had a problem doing it without logging into the console of an ESX/ESXi host. You can get a list of the HA Primaries for a given cluster fairly quickly using one line in the PowerCLI:
((Get-View (Get-Cluster YourClusterName).id).RetrieveDasAdvancedRuntimeInfo()).DasHostInfo.PrimaryHosts
Regarding ‘das.ignoreRedundantNetWarning’ advanced setting…..
In ESXi this would be redundancy on the Management network?
Simon
Is there a way to keep a specific VM on a specific host once HA have been implemented. We used to do this by CPU affinity, but this is not available?
The need to do this arise because we have hosts in two buildings, in each a VM monitors an UPS and runs a script to shutdown the hosts in that building in case of power failure.
Dan
Just thought I’d mention that Alan Renouf has written a short PowerCLI script that displays information about slot sizes. Apologies if this is already mentioned somewhere here but I didn’t spot it. Thought it might be useful.
http://www.virtu-al.net/2009/10/06/ha-slot-size-information/
For those of you that would like to add a layer of application awareness to VWware HA, you might like to check out vAppHA: –
http://www.neverfailgroup.com/virtualization/vapphatrial.html