Thanks Todd. After your comment I found the following link with details:Â
I was trying to understand further how htcondor is using FDs by submitting a batch of 3k jobs. I reduced the limit of open files 100 (soft) and 2k (hard). I thought maybe I would not be able to run more than 2k jobs, I did see 3k jobs running.Â
Number of file handles increased by approx 60k and reduced to 21k after removing the jobs.Â
# cat /proc/sys/fs/file-nr
21568 0 6573632
# cat /proc/sys/fs/file-nr
81472 0 6573632
Enabling logging doesn't show me too many FDs used by condor.Â
SCHEDD_DEBUG = D_FDS
SHADOW_DEBUG = D_FDS
SHARED_PORT_DEBUG = D_FDS
Basically I am trying to understand: where condor uses FD? It can help me to answer what limits condor can hit if we don't bump the value of descriptors.Â
Thanks & Regards,
Vikrant Aggarwal