Hurray! VCAP-DCD

Finally! After the massacre of Barcelona (so many people failed the exam overthere) I passed VCAP-DCD510!

100 questions, 275 minutes.. very challenging! The exam tests both theoretical knowledge of the VMware vSphere product as experience in the field. You can learn everything theoretically, but if you don’t have any design experience you will fail. But, some suggested reading if you want it:

– The VCAP-DCD510 Blueprint (v2.8 at march 2014). This is the foundation of the exam. This document describes everything you should know and be able to do. At first, the document seems unstructured and vague. Once you dig deeper, the order and structure of things really appears. And DO pay attention to all of the links, some questions will address content directly found in the additional documentation.
– VMware vSphere Desing v2 – Forbes Guthrie & Scott Lowe
– Mastering Vmware vSphere 5 – Scott Lowe (again)
– vSphere Clustering Deepdive – Duncan Epping
– VMware vSphere documentation. Sounds silly (who reads documentation), but do it. The information in the documents is invaluable.
– VMware official Certification Guide for VCAP-DCD. Allthough from VMware itself, I think that it does not cover all the stuff of the exam. Prep exam is a nice starter, but absolutely NOT representative for the real exam

But, above all, experience DOES count. Use a real project to train the design methodology mentioned in the blueprint, it will be VERY useful. Doubt everything, question everything, trust no one but your own experience and knowledge. Then you will pass.

Thanks go out to the VCDX’s at VMUGNL, they gave a wonderful bootcamp for wannabe VCAP’s or VCDX’s. It was outstanding.

Next up, VCAP-Cloud!

3 commands for easy Nimble

OK, just a small thing I’d like to share:

When checking an iSCSI Nimble setup, 3 tiny commands can make your life a lot easier. In VMware ESXi 5.lul, SSH to a host and get your storage straight:

1) If not already done so: change the default Path Selection Policy to Round Robin for new disks:

esxcli storage nmp satp set –default-psp=VMW_PSP_RR –satp=VMW_SATP_ALUA

2) Set all your already connected Nimble disks, and only Nimble disks, to Path Selection Policy RoundRobin (VMW_PSP_RR) Handy in a mixed storage provider environment!

for i in `esxcli storage nmp device list | awk ‘/Nimble iSCSI Disk/{print $7}’ | sed -e ‘s/(//’ -e ‘s/)//’`; do esxcli storage nmp device set -d $i –psp=VMW_PSP_RR;done

3) Set the IOPS to “1”in the Path Selection Policy VMW_PSP_RR for each connected Nimble disk as a new recommendation from NimbleStorage

for i in `esxcli storage nmp device list | awk ‘/Nimble iSCSI Disk/{print $7}’ | sed -e ‘s/(//’ -e ‘s/)//’`; do esxcli storage nmp psp roundrobin deviceconfig set –type “iops” –iops=1 –device=$i; done

More info for ESXCLI command options at http://pubs.vmware.com/vsphere-50/index.jsp?topic=%2Fcom.vmware.vcli.examples.doc_50%2Fcli_manage_storage.6.5.html
Discussion from Cormac Hogan at http://cormachogan.com/2013/07/08/automating-the-iops-setting-in-the-round-robin-psp/

[EDIT]

I asked Nimble how they got to the IOPS=1 part, and they said:

“This is as the result of extensive internal testing. We have nothing available for customers, this was changed due to an issue we identified when migrating host profiles and is also set automatically by our NCM plugin.”