Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.

Bug 722734

Summary: [device-mapper-multipath] multipath should manage its fds wisely in case they run out
Product: Red Hat Enterprise Linux 6 Reporter: Haim <hateya>
Component: device-mapper-multipathAssignee: LVM and device-mapper development team <lvm-team>
Status: CLOSED WONTFIX QA Contact: Storage QE <storage-qe>
Severity: high Docs Contact:
Priority: unspecified    
Version: 6.1CC: agk, bdonahue, bmarzins, dwysocha, heinzm, mbroz, mgoldboi, prajnoha, prockai, smizrahi, yeylon, ykaul, zkabelac
Target Milestone: rc   
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2011-07-19 21:30:24 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
messages none

Description Haim 2011-07-17 08:09:00 UTC
Created attachment 513517 [details]
messages

Description of problem:

case: 

testing system scalability, where host is connected via FC to 360 devices with 4 paths each, multipath is run out of fds. 

Jul 17 07:56:40 | out of file descriptors. set or increase max_fds in /etc/multipath.conf

[root@rhev-a8c-02 ~]# lsof |grep multi |wc -l 
1047

[root@rhev-a8c-02 ~]# multipath -ll | awk '/3600/' |wc -l 
362

[root@rhev-a8c-02 ~]# multipath -ll | awk '/sd/' |wc -l 
1448

desired: multipath should open & close fds dynamically.

[root@rhev-a8c-02 ~]# ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 515767
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 3000
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds, -t) unlimited
max user processes              (-u) 1024
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

Comment 2 Ben Marzinski 2011-07-19 21:30:24 UTC
Multipathd checks the status of every path every polling_interval seconds (usually 5).  To do this, it needs an open file descriptor.  Closing and re-opening these descriptors every time is not an acceptable option.  Losing paths can put the system under load. Depending on which devices you lose, this can significantly delay or even make it impossible to reopen these devices.  Also, keeping the multipath path devices open, keeps many programs from accidentally accessing the path devices directly, instead of accessing the multipath device.  For instance, user's can't simply mount a single path of a multipath device.

It's simple to adjust the number of file descriptors with the max_fds multipath.conf variable.

multipath intentionally uses the same number of file descriptors as multipathd to make it more likely that a user will notice that they don't have max_fds set correctly.  Otherwise, they might not notice it when the multipathd daemon fails. Leaving their multipath devices unable to restore lost paths.