On Fri, Jul 17, 2009 at 12:00 PM, rajasekhar kuppa <[email protected]> wrote: > The specifics i am looking are for multipathing across 2 disk arrays and a > m looking for at least some of the features of Powerpath/ DMP > from the FLOSS world
Multi-path is handled using 2 components: MPIO support from OS, and device (or SAN controller) specific driver (aka DSM). Linux requires the device mapper tools to handle multipathing inside the kernel. This is provided by the device mapper kernel modules. The DSM is responsible for health checking of the IO path, you require the appropriate DSMs for each SAN backend (eg EMC, HDS, etc). DSM for several storage vendors is already available in /sbin/mpath*. The FOSS DSMs provide round-robin, health checking, and group priority. Vendor provided DSMs (eg Powerpath) provide additional features, but don't enjoy community backing. I've used vendor provided DSMs (Powerpath, HDLM,etc) on Windows only, and the FOSS/native drivers on Linux/Solaris. Using the DSMs, a user space multipathd daemon periodically health checks the LUNs and activates/removes the paths as necessary. Here is the sample multipath output from one of my boxes: [r...@treble sbin]# ./multipath -l prod03 (360060e801082e30004d4247000000003) dm-0 HITACHI,DF600F [size=2.0T][features=0][hwhandler=0][rw] \_ round-robin 0 [prio=0][active] \_ 2:0:0:3 sdh 8:112 [active][undef] \_ round-robin 0 [prio=0][enabled] \_ 4:0:0:3 sdg 8:96 [active][undef] This server is running FOSS HDS dsm and shows first path as "active" and second path as "enabled". > The specifics i am looking are for multipathing across 2 disk arrays and a > m looking for at least some of the features of Powerpath/ DMP > from the FLOSS world I'm not sure if it's advisable to multipath across two different SAN arrays. At least I've never deployed anything in production like this! Multipath is typically done to a single SAN system with multiple controllers/fabrics/HBAs. Recommended reading: Dell EMC Multipath configuration: http://www.dell.com/downloads/global/power/ps3q06-20060189-Michael.pdf Solaris MPIO: http://docs.sun.com/source/819-0139/index.html - Raja _______________________________________________ To unsubscribe, email [email protected] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
