It would seem that the Dell MEM v1.2 will not install on ESXi 5.5 U2 using esxcli. It can apparently be deployed using vMA or VUM but as these aren’t used we had to look for an alternative.

The issue was with Dell who pointed us towards the following best practice document;\ http://en.community.dell.com/cfs-file/__key/telligent-evolution-components-attachments/13-4491-00-00-20-43-46-01/TR1091-Best-Practices-with-EqualLogic-and-VMware-1.1.pdf?forcedownload=true

In summary they recommend the following.\ – Use Round Robin\ – Change from 1000 IO’s per path to 3 IO’s per path\ – Change iSCSI Timeout values from default to 60 seconds\ – Disable Delayed ACK

Dell have provided some handy scripts to get you started, here they are for ESXi 5.x (they can all be found in the PDF attached earlier in the post so please refer to this for full details);

Set all EqualLogic volumes to Round Robin and set IOPS value to 3 – this must be run on all hosts;

esxcli storage nmp satp set --default-psp=VMW_PSP_RR --satp=VMW_SATP_EQL ; for i in `esxcli storage nmp device list | grep EQLOGIC|awk '{print $7}'|sed 's/(//g'|sed 's/)//g'` ; do esxcli storage nmp device set -d $i --psp=VMW_PSP_RR ; esxcli storage nmp psp roundrobin deviceconfig set -d $i -I 3 -t iops ; done

Set a default so that new EQL volumes will inherit the correct settings;

esxcli storage nmp satp rule add -s "VMW_SATP_EQL" -V "EQLOGIC" -M "100E-00" -P "VMW_PSP_RR" -O "iops=3"

The above command will require a restart of the host before it becomes effective, once you have restarted you can verify the correct settings using the below;

esxcli storage nmp device list

The output will be similar to what is shown below, the parts in bold are what you are looking for;

naa.6090a098703e5059e3e2e483c401f002
Device Display Name: EQLOGIC iSCSI Disk
(naa.6090a098703e5059e3e2e483c401f002) 
Storage Array Type: VMW_SATP_EQL
Storage Array Type Device Config: SATP VMW_SATP_EQL does not support device configuration. 
Path Selection Policy: VMW_PSP_RR
Path Selection Policy Device Config: {policy=iops,iops=3,bytes=10485760,useANO=0;lastPathIndex=3: NumIOsPending=0,numBytesPending=0}

VMW_SATP_EQL (indicates its an EqualLogic)

VMW_PSP_RR (path selection is set to Round Robin)

policy=iops,iops=3 (shows IOPS have been set to 3)

Next up is to change the default iSCSI timeout values. “By default, the MEM configuration script will make an attempt to set each of these timeout values to 60 seconds which is the recommendation.”, so we will copy that with the below;

esxcli iscsi adapter param set --adapter=vmhba## --key=LoginTimeout --value=60

Replace ## with that of your iSCSI software adapter, for example vmhba33.

After you have done the above you will need to disable Delayed ACK, Dell don’t provide a command line for disabling this, so it needs to be done through the vCentre GUI – please refer to Page 10 in the PDF for steps on how to do this.

Dell do list a few other recommendations, around such things as LRO and SIOC but I have not applied these so I wont go in to detail on what they mention.

Hopefully this post will come in handy for a few people, as I know it held us back a bit!

Please check the commands before you apply them and also work with your vendor if you are unsure of the implications of changes some of the settings listed above will have towards other storage arrays, etc. 🙂

I will soon be posting about the VMkernel/NIC setup for this, as we have had some issues relating to that too – events such as APD! I will update this post with a link to that once it is ready

UPDATE: Post relating to iSCSI setup is here! (to be updated)

Share to TwitterShare to FacebookShare to LinkedinShare to PocketCopy URL address
Written by

Sam Perrin@samperrin

Automation Consultant, currently working at Xtravirt. Interested in all things automation/devops related.

Related Posts