tool · inferred from evidence
ulimit
A command-line tool used to set or display resource limits, including file-descriptor limits.
- ChromaDB long-running service hits OSError: [Errno 24] Too many open files
Chroma needs a high file-descriptor limit and the platform default (often 1024) is too low, per maintainer HammadB in the thread. Raise the limit (e.g. `ulimit -n 65536` or higher) and/or use Chroma's `chroma_server_nofile` setting; the mai