lvm filtering /dev/dm-x and /dev/disk/by-id/dm-uuid-mpath-.*

Hi all,

I am wondering what is the different between both path in SLES11 SP2.:confused:

Since /dev/disk/by-id/dm-uuid-mpath-.* is the soft link of /dev/dm-x.

According to the document (7007498) << Using LVM on Multipath (DM MPIO) Devices>> , it is advised to use dm-name-, or dm-uuid-mpath-.

for example :
filter = [ β€œa|/dev/disk/by-id/dm-uuid-.mpath-.|”, β€œr/./"]
filter = [ "a|/dev/disk/by-id/dm-name-.
|”, β€œr/.*/”]

Question:
Could i just use the following filter?:confused:
filter = [ β€œa|/dev/dm.|", "r/./”]

Thank you so much!

[QUOTE=lihtian;12291]Hi all,

I am wondering what is the different between both path in SLES11 SP2.:confused:

Since /dev/disk/by-id/dm-uuid-mpath-.* is the soft link of /dev/dm-x.

According to the document (7007498) << Using LVM on Multipath (DM MPIO) Devices>> , it is advised to use dm-name-, or dm-uuid-mpath-.

for example :
filter = [ β€œa|/dev/disk/by-id/dm-uuid-.mpath-.|”, β€œr/./"]
filter = [ "a|/dev/disk/by-id/dm-name-.
|”, β€œr/.*/”]

Question:
Could i just use the following filter?:confused:
filter = [ β€œa|/dev/dm.|", "r/./”]

Thank you so much![/QUOTE]

That filter will probably not pick up anything, as /dev/dm.* does not match the naming. /dev/dm-* would work, but those devices created by the Linux device mapper are created dynamically as devices are present. During a reboot and when having changed something in your server setup (or also possible when using a different device driver) the numbering can be different (e.g. what was previously /dev/dm-1, becomes /dev/dm-4 after rebooting).

If you have a mix of disk devices and intend to only include certain disk devices to participate in the LVM household, using the /dev/dm-* as argument is too generic.

So there it has it’s value to define the LVM filter to only include specific devices and ignore others that don’t fit the filter.
Using the /dev/disk/by/id/[intended disk device name or vendor path when working with SAN storage]… those device names are persistent, even when reinstalling the OS bit of your server(s).

What are you looking to setup? Is this a single server setup? And what type of storage (DAS/NAS/SAN)?

Cheers,
Willem

[QUOTE=Magic31;12301]That filter will probably not pick up anything, as /dev/dm.* does not match the naming. /dev/dm-* would work, but those devices created by the Linux device mapper are created dynamically as devices are present. During a reboot and when having changed something in your server setup (or also possible when using a different device driver) the numbering can be different (e.g. what was previously /dev/dm-1, becomes /dev/dm-4 after rebooting).

If you have a mix of disk devices and intend to only include certain disk devices to participate in the LVM household, using the /dev/dm-* as argument is too generic.

So there it has it’s value to define the LVM filter to only include specific devices and ignore others that don’t fit the filter.
Using the /dev/disk/by/id/[intended disk device name or vendor path when working with SAN storage]… those device names are persistent, even when reinstalling the OS bit of your server(s).

What are you looking to setup? Is this a single server setup? And what type of storage (DAS/NAS/SAN)?

Cheers,
Willem[/QUOTE]

I has SLES 11 SP2 server and two luns connected from SAN with Multipath enabled. So I have dm-0 and dm-1.

Based on the MPIO setup advise given by the Novell Tech Support and one of that is to modify the filter of /etc/lvm/lvm.conf to point to β€œ/dev/disk/by-id/dm-uuid-.*”.

Unfortunately, I faced a problem whereby one of the soft link β€œ/dev/disk/by-id/dm-uuid-.* β†’ …/…/dm-x” will be missing under two condition:

  1. Server rebooted.
  2. Single path failure.

It solved by restarted the multipathd service. Anyway, it kinda weird and i could not found the root cause of that.

Hence, I made the change in the /etc/lvm/lvm.conf filter again to point to the β€œ/dev/dm-*”, this time it survives after server reboot and single path failure test. Command pvscan return expected result.

By the way, you have answered my questions and i will perform more and more testing again.

Thank you so much Willem!

Cheers!