[Errno 24]: 開いているファイルが多すぎる
PIL を使用しており、プログラムの実行中はファイルディスクリプターを開いたまま保持します。
この問題を解決するには、ulimit を使用して、開いているファイル数のシステム上限を 65,536 に引き上げます。
パフォーマンス
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help us improve these docs. Take our quick survey.
[Errno 24]: 開いているファイルが多すぎるPIL を使用しており、プログラムの実行中はファイルディスクリプターを開いたまま保持します。
この問題を解決するには、ulimit を使用して、開いているファイル数のシステム上限を 65,536 に引き上げます。
ulimit -n 65536
Was this page helpful?