there was a “too many open files” error.
googling “launchctl limit maxfiles” provided the solution.
running either of these two commands shows the default limit of 256:
ulimit -a
launchctl limit
i created a new file (/etc/launchd.conf) with only this line within it:
limit maxfiles 4096 unlimited
then ran:
launchctl limit maxfiles 4096 unlimited
the 4096 number is just a starting point for me. it could possibly be smaller or higher but i haven’t tested any performance improvements/issues yet.
Comments are closed