Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created April 6, 2017 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanksudo/de64987f1de290dea62ca6bb82746a45 to your computer and use it in GitHub Desktop.
Save hanksudo/de64987f1de290dea62ca6bb82746a45 to your computer and use it in GitHub Desktop.
resolve too many opened files in Python
$ ulimit -a

core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 3868
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 3868
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

use python code to see limit

import resource
print resource.getrlimit(resource.RLIMIT_NOFILE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment