Posts

Showing posts with the label VMware Latency

HP 3PAR storage Commands to troubleshoot performance issues

The quick reference guide below will help diagnose and rule out some common issues experienced in the 3PAR arrays.  CLI COMMAND – “STATVLUN” measures the round trip time of an IO as seen by the system. Running STATVLUN in the following order should lead to the resolution of a few performance issues: 1)      “statvlun –ni”   – The STATVLUN command without any switches will show the round trip time of IO on each path for exported Virtual Volumes. This is helpful to determine if there is a multipathing issue. The “-ni” flag will eliminate any inactive volumes. 2)      “statvlun –vvsum –ni –rw”   This will show you the round trip time of the IO to each volume with the paths condensed for consolidated reporting.  This is great to see an overall picture of what is going on The “-rw” flag will break the IO down into Reads & Writes. 3)      “statvlun –hostsum –ni –rw”   The ou...

Disk Latency in VMware VMs when using Virtual connect HP Blade with Distributed Switch

Image
if you are facing disk latency spikes within VMware VM's in HP Blade servers connect to Virtual Connect then check the following settings Sample Graph  Resolution: Change LLDP from "Both" parameter to “Listen” in Distributed vSwitch advanced settings and latency is below 10ms.  Note: If you are using Cisco switch configure to Both.

Set Round Robin in ESXi Servers

Power shell command to set round robin policy on all LUNS attached to ESXi Servers Get-VMHost |Get-ScsiLun -LunType "disk"|where {$_.MultipathPolicy -ne "RoundRobin"}|Set-ScsiLun -MultipathPolicy RoundRobin