You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The process may sometimes reach ulimit and therefore give errors during API calls such as Os { code: 24, kind: Uncategorized, message: \"No file descriptors available\" })) } during a DNS lookup.
How to Reproduce
Not yet known.
Expected Behaviour
Should not give error.
Version
0.2.18
The text was updated successfully, but these errors were encountered:
by using lsof -c <process-name-here> on the compute node, we have seen that as the peer count grows file descriptors are used more and more, eventually hitting the default limit of 1024.
on a separate note, the peer count is almost 1-1 correlated with the established outgoing connections count, so as a quick solution we have added a limiter on this count, effectively setting a cap on the number of all peers of a node.
Problem
The process may sometimes reach
ulimit
and therefore give errors during API calls such asOs { code: 24, kind: Uncategorized, message: \"No file descriptors available\" })) }
during a DNS lookup.How to Reproduce
Not yet known.
Expected Behaviour
Should not give error.
Version
0.2.18
The text was updated successfully, but these errors were encountered: