MSA Storage
1745816 Members
3740 Online
108722 Solutions
New Discussion

vSphere 6.5 - Round Robin LB Settings (changing iops=1000 to iops=1)

 
SOLVED
Go to solution
sf87
Visitor

vSphere 6.5 - Round Robin LB Settings (changing iops=1000 to iops=1)

Hi all!

I have bought HP MSA 2052 recently and using it with ESXi 6.5 host. I read "HPE MSA Storage Configuration and Best Practices for VMware vSphere" documentation and there is one section 

"Multipath
With server virtualization environments using vSphere 5.x, HPE recommends using the Round Robin (VMW_PSP_RR) failover policy with all HPE MSA Storage arrays. For optimal default system performance with HPE MSA Storage, configure the round robin load balancing selection to IOPS with a value of 1 for every LUN"

My question is does this settings still valid to 6.5?

4 REPLIES 4
Fiberfish
HPE Pro
Solution

Re: vSphere 6.5 - Round Robin LB Settings (changing iops=1000 to iops=1)

Hi,

Yes, for vmware version 5.x or higher, it is suggested to have multipathing policy as Round Robin (VMW_PSP_RR)

and IOPS with a value of 1 for every LUN. This is applicable for vmware 6.5 as well.

 

Regards

I am an HPE Employee

I am a HPE employee

Accept or Kudo

TigerRool10-1
Advisor

Re: vSphere 6.5 - Round Robin LB Settings (changing iops=1000 to iops=1)

"configure the round robin load balancing selection to IOPS with a value of 1 for every LUN"

I can find the "Edit Multipathing" option in the VMWARE web client (Under Storage Devices/Select the DataStore/Porperties"

From there I can select "Round Robin"

Where is the "IOPS with a value of 1" set?

fresh

Re: vSphere 6.5 - Round Robin LB Settings (changing iops=1000 to iops=1)

Command 1:  to check the current setting as we can see its 1000

# esxcli storage nmp psp roundrobin deviceconfig get -d naa.60002ac0000000000000162200004210

   Byte Limit: 10485760

   Device: naa.60002ac0000000000000162200004210

   IOOperation Limit: 1000

   Limit Type: Default

   Use Active Unoptimized Paths: false

 

Command 2:  to set  IOPS to 1

# esxcli storage nmp psp roundrobin deviceconfig set -d naa.60002ac0000000000000162200004210 --iops 1 --type iops

 

Hope this helps!
Regards
Subhajit

I am an HPE employee

If you feel this was helpful please click the KUDOS! thumb below!

***********************************************************************************


I work for HPE
Accept or Kudo
mr_vaughn
Advisor

Re: vSphere 6.5 - Round Robin LB Settings (changing iops=1000 to iops=1)

This is the base for adjusting the IOPS https://kb.vmware.com/s/article/2069356

You can also do this to all your existing MSA volumes.

for i in `esxcfg-scsidevs -c |awk '{print $1}' | grep naa.600c`; do esxcli storage nmp psp roundrobin deviceconfig set --type=iops --iops=1 --device=$i; done

 

To adjust the Vmware default path slection policy to use round robin

esxcli storage nmp satp set -s VMW_SATP_DEFAULT_AA -P VMW_PSP_RR
esxcli storage nmp satp set -s VMW_SATP_ALUA -P VMW_PSP_RR