341f83e7f5
systemd limits the number of process and threads you can create within the cgroup it creates for a given service. This is especially limiting if you have a high number of keys Nomad watches from Consul. Fixes #4649
26 lines
580 B
Desktop File
26 lines
580 B
Desktop File
[Unit]
|
|
Description=Nomad
|
|
Documentation=https://nomadproject.io/docs/
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
|
|
# If you are running Consul, please uncomment following Wants/After configs.
|
|
# Assuming your Consul service unit name is "consul"
|
|
#Wants=consul.service
|
|
#After=consul.service
|
|
|
|
[Service]
|
|
KillMode=process
|
|
KillSignal=SIGINT
|
|
ExecStart=/usr/bin/nomad agent -config /etc/nomad
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
Restart=on-failure
|
|
RestartSec=2
|
|
StartLimitBurst=3
|
|
StartLimitIntervalSec=10
|
|
LimitNOFILE=65536
|
|
TasksMax=infinity
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|