What | Removed | Added |
---|---|---|
Flags | needinfo?(kukuk@suse.com) |
(In reply to Franck Bui from comment #14) > After some more debugging I finally found that the bug is essentially the > same as the one reported here: > https://bugzilla.redhat.com/show_bug.cgi?id=1705641 > > A more interesting discussion can be found here > https://github.com/systemd/systemd/pull/13359 but unfortunately it led to > nowhere. > > Adding Thomas in Cc as he's the libtirpc maintainer. Indeed: return (tbsize = (int)rl.rlim_max); seems to be a bit excessive. But I'm not sure how else to determine a good value. Thorsten, would be changing this to the soft limit appropriate, e.g: return (tbsize = (int)rl.rlim_cur); ? Btw. the RedHat bugzilla indicates that enabling nscd would also fix the excessive memory consumption. What do you think?