Operating Systems limit the amount of file descriptors that running processes can maintain. MacOS is especially aggressive on this.
Use ulimit -a to check the current limits and ulimit -n 8192 (or higher) to increase the limit of file descriptors Bitcoin Core will be allowed to handle.
Operating Systems limit the amount of file descriptors that running processes can maintain. MacOS is especially aggressive on this.
Use
ulimit -a
to check the current limits andulimit -n 8192
(or higher) to increase the limit of file descriptors Bitcoin Core will be allowed to handle.See https://github.com/bitcoin/bitcoin/issues/27732 for more info.