Troubleshooting commands
lspci -nnvv | grep -i SCSI -A 1
lsscsi
lsblk
dmesg | tail -40
dmesg | grep -i scsi
Troubleshooting commands
lspci -nnvv | grep -i SCSI -A 1
lsscsi
lsblk
dmesg | tail -40
dmesg | grep -i scsi
Advanced Virtual NUMA Attributes
VM settings
NUMA nodes are heavily load imbalanced causing high contention for some virtual machines (2097369) - https://kb.vmware.com/s/article/2097369
/Numa/LocalityWeightActionAffinity as 0
A change was made ( in 7.0U1):
In hostd to make API call every 5 minutes.
In VMFS a new lighter API was added to get the required stat.
Changing /etc/vmware/hostd/config.xml on each host.
We can recommend to try to 12 hours for customer . Changing vmfsStatsIntervalInSecs=43200.
A one liner to perform this task:
sed -i -e 's/<vmfsStatsIntervalInSecs>.*>/<vmfsStatsIntervalInSecs>21600<\/vmfsStatsIntervalInSecs>/g' /etc/vmware/hostd/config.xml;/etc/init.d/hostd restart
https://bugzilla.eng.vmware.com/show_bug.cgi?id=2580232 change was made ( in 7.0U1)
The relevant PR for this KB https://bugzilla.eng.vmware.com/show_bug.cgi?id=2788282
- Note: hostd datastore refresh invoking VMFS datastore refresh
Vol3GetAttributesVMFS6 -> Res3StatVMFS6 can end up in reading a lot of VMFS
metadata.
- The amount of VMFS metadata read would be proportional to both size of VMFS
datastore and the number of VMFS datastores on ESXi server.