I have left my computer running for a few hours an...
# general
c
I have left my computer running for a few hours and when I got back, I could no longer run pants, because it said "too many open files". I killed the pantsd process, and then it started working again. I guess that file descriptors are leaking somewhere. Is this a known issue?
h
It is not known to me at least. Which pants version?
c
2,14.0rc1
h
c
Yes, I have the limit set to a high value.
h
Is your repo particularly large, with many changed files or something?
c
No, it's not large. count-loc reports 123 files. I have been working on it all day, and there were no issues. Only when left unattended for some hours. I don't know if it's related, could be on top of the other hours I was working, of course. Maybe it's worth making a mental note and if more people mention it, try to investigate.
w
thanks for the report! if you experience this again, running
lsof -p $pantsd_pid
would be helpful to determine what is open, and then filing an issue.
👍 1
h
you can find the pid by using
ps aux | grep pants
w
pantsd
in particular, yea