mirror of https://github.com/docker/docs.git
contrib: systemd: set Limit* to infinity
There is a not-insignificant performance overhead for all containers (if containerd is a child of Docker, which is the current setup) if systemd sets rlimits on the main Docker daemon process (because the limits propogate to all children). Signed-off-by: Aleksa Sarai <asarai@suse.de> (cherry picked from commit 8db61095a3d0bcb0733580734ba5d54bc27a614d) Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
parent
fcdaa2d6b3
commit
65c03f1013
|
|
@ -11,8 +11,10 @@ Type=notify
|
||||||
# for containers run by docker
|
# for containers run by docker
|
||||||
ExecStart=/usr/bin/dockerd -H fd://
|
ExecStart=/usr/bin/dockerd -H fd://
|
||||||
ExecReload=/bin/kill -s HUP $MAINPID
|
ExecReload=/bin/kill -s HUP $MAINPID
|
||||||
LimitNOFILE=1048576
|
# Having non-zero Limit*s causes performance problems due to accounting overhead
|
||||||
LimitNPROC=1048576
|
# in the kernel. We recommend using cgroups to do container-local accounting.
|
||||||
|
LimitNOFILE=infinity
|
||||||
|
LimitNPROC=infinity
|
||||||
LimitCORE=infinity
|
LimitCORE=infinity
|
||||||
# Uncomment TasksMax if your systemd version supports it.
|
# Uncomment TasksMax if your systemd version supports it.
|
||||||
# Only systemd 226 and above support this version.
|
# Only systemd 226 and above support this version.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue