- Community Home
- >
- Storage
- >
- Entry Storage Systems
- >
- MSA Storage
- >
- vSphere 6.5 - Round Robin LB Settings (changing io...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2019 01:25 PM
05-25-2019 01:25 PM
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?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2019 02:40 AM
05-28-2019 02:40 AM
SolutionHi,
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2019 09:21 AM
06-03-2019 09:21 AM
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2019 09:28 AM
06-03-2019 09:28 AM
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 at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2020 05:53 PM
09-02-2020 05:53 PM
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