2016-11-01 12:53:13 +00:00
|
|
|
---
|
2020-02-06 23:45:31 +00:00
|
|
|
layout: docs
|
|
|
|
page_title: server Stanza - Agent Configuration
|
|
|
|
sidebar_title: server
|
2016-11-01 12:53:13 +00:00
|
|
|
description: |-
|
|
|
|
The "server" stanza configures the Nomad agent to operate in server mode to
|
|
|
|
participate in scheduling decisions, register with service discovery, handle
|
|
|
|
join failures, and more.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `server` Stanza
|
|
|
|
|
2020-02-06 23:45:31 +00:00
|
|
|
<Placement groups={['server']} />
|
2016-11-01 12:53:13 +00:00
|
|
|
|
|
|
|
The `server` stanza configures the Nomad agent to operate in server mode to
|
|
|
|
participate in scheduling decisions, register with service discovery, handle
|
|
|
|
join failures, and more.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
server {
|
|
|
|
enabled = true
|
2016-11-02 23:26:10 +00:00
|
|
|
bootstrap_expect = 3
|
2018-05-25 20:04:32 +00:00
|
|
|
server_join {
|
|
|
|
retry_join = [ "1.1.1.1", "2.2.2.2" ]
|
|
|
|
retry_max = 3
|
|
|
|
retry_interval = "15s"
|
|
|
|
}
|
2016-11-01 12:53:13 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## `server` Parameters
|
|
|
|
|
2020-03-12 22:05:34 +00:00
|
|
|
- `authoritative_region` `(string: "")` - Specifies the authoritative region, which
|
|
|
|
provides a single source of truth for global configurations such as ACL Policies and
|
|
|
|
global ACL tokens. Non-authoritative regions will replicate from the authoritative
|
|
|
|
to act as a mirror. By default, the local region is assumed to be authoritative.
|
2017-08-23 23:56:05 +00:00
|
|
|
|
2016-11-01 12:53:13 +00:00
|
|
|
- `bootstrap_expect` `(int: required)` - Specifies the number of server nodes to
|
|
|
|
wait for before bootstrapping. It is most common to use the odd-numbered
|
|
|
|
integers `3` or `5` for this value, depending on the cluster size. A value of
|
|
|
|
`1` does not provide any fault tolerance and is not recommended for production
|
|
|
|
use cases.
|
|
|
|
|
|
|
|
- `data_dir` `(string: "[data_dir]/server")` - Specifies the directory to use -
|
|
|
|
for server-specific data, including the replicated log. By default, this is -
|
2020-02-06 23:45:31 +00:00
|
|
|
the top-level [data_dir](/docs/configuration#data_dir)
|
2016-11-01 12:53:13 +00:00
|
|
|
suffixed with "server", like `"/opt/nomad/server"`. This must be an absolute
|
|
|
|
path.
|
|
|
|
|
|
|
|
- `enabled` `(bool: false)` - Specifies if this agent should run in server mode.
|
|
|
|
All other server options depend on this value being set.
|
|
|
|
|
2018-05-22 21:30:13 +00:00
|
|
|
- `enabled_schedulers` `(array<string>: [all])` - Specifies which sub-schedulers
|
|
|
|
this server will handle. This can be used to restrict the evaluations that
|
|
|
|
worker threads will dequeue for processing.
|
|
|
|
|
|
|
|
- `encrypt` `(string: "")` - Specifies the secret key to use for encryption of
|
|
|
|
Nomad server's gossip network traffic. This key must be 16 bytes that are
|
|
|
|
base64-encoded. The provided key is automatically persisted to the data
|
|
|
|
directory and loaded automatically whenever the agent is restarted. This means
|
|
|
|
that to encrypt Nomad server's gossip protocol, this option only needs to be
|
|
|
|
provided once on each agent's initial startup sequence. If it is provided
|
|
|
|
after Nomad has been initialized with an encryption key, then the provided key
|
|
|
|
is ignored and a warning will be displayed. See the
|
2018-06-22 20:47:33 +00:00
|
|
|
[encryption documentation][encryption] for more details on this option
|
2018-05-22 21:30:13 +00:00
|
|
|
and its impact on the cluster.
|
|
|
|
|
|
|
|
- `node_gc_threshold` `(string: "24h")` - Specifies how long a node must be in a
|
|
|
|
terminal state before it is garbage collected and purged from the system. This
|
|
|
|
is specified using a label suffix like "30s" or "1h".
|
|
|
|
|
2019-07-18 12:57:47 +00:00
|
|
|
- `job_gc_interval` `(string: "5m")` - Specifies the interval between the job
|
|
|
|
garbage collections. Only jobs who have been terminal for at least
|
|
|
|
`job_gc_threshold` will be collected. Lowering the interval will perform more
|
2020-03-12 22:05:34 +00:00
|
|
|
frequent but smaller collections. Raising the interval will perform collections
|
|
|
|
less frequently but collect more jobs at a time. Reducing this interval is
|
|
|
|
useful if there is a large throughput of tasks, leading to a large set of
|
|
|
|
dead jobs. This is specified using a label suffix like "30s" or "3m". `job_gc_interval`
|
|
|
|
was introduced in Nomad 0.10.0.
|
2019-07-18 12:57:47 +00:00
|
|
|
|
2018-05-22 21:30:13 +00:00
|
|
|
- `job_gc_threshold` `(string: "4h")` - Specifies the minimum time a job must be
|
|
|
|
in the terminal state before it is eligible for garbage collection. This is
|
|
|
|
specified using a label suffix like "30s" or "1h".
|
|
|
|
|
|
|
|
- `eval_gc_threshold` `(string: "1h")` - Specifies the minimum time an
|
|
|
|
evaluation must be in the terminal state before it is eligible for garbage
|
|
|
|
collection. This is specified using a label suffix like "30s" or "1h".
|
|
|
|
|
|
|
|
- `deployment_gc_threshold` `(string: "1h")` - Specifies the minimum time a
|
|
|
|
deployment must be in the terminal state before it is eligible for garbage
|
|
|
|
collection. This is specified using a label suffix like "30s" or "1h".
|
|
|
|
|
2020-03-12 22:05:34 +00:00
|
|
|
- `default_scheduler_config` <code>([scheduler_configuration][update-scheduler-config]:
|
|
|
|
nil)</code> - Specifies the initial default scheduler config when
|
|
|
|
bootstrapping cluster. The parameter is ignored once the cluster is bootstrapped or
|
|
|
|
value is updated through the [API endpoint][update-scheduler-config]. See [the
|
|
|
|
example section](#configuring-scheduler-config) for more details
|
|
|
|
`default_scheduler_config` was introduced in Nomad 0.11.4.
|
2020-01-29 14:16:56 +00:00
|
|
|
|
2018-05-22 21:30:13 +00:00
|
|
|
- `heartbeat_grace` `(string: "10s")` - Specifies the additional time given as a
|
|
|
|
grace period beyond the heartbeat TTL of nodes to account for network and
|
|
|
|
processing delays as well as clock skew. This is specified using a label
|
|
|
|
suffix like "30s" or "1h".
|
|
|
|
|
|
|
|
- `min_heartbeat_ttl` `(string: "10s")` - Specifies the minimum time between
|
|
|
|
node heartbeats. This is used as a floor to prevent excessive updates. This is
|
|
|
|
specified using a label suffix like "30s" or "1h". Lowering the minimum TTL is
|
|
|
|
a tradeoff as it lowers failure detection time of nodes at the tradeoff of
|
|
|
|
false positives and increased load on the leader.
|
|
|
|
|
|
|
|
- `max_heartbeats_per_second` `(float: 50.0)` - Specifies the maximum target
|
|
|
|
rate of heartbeats being processed per second. This allows the TTL to be
|
|
|
|
increased to meet the target rate. Increasing the maximum heartbeats per
|
|
|
|
second is a tradeoff as it lowers failure detection time of nodes at the
|
|
|
|
tradeoff of false positives and increased load on the leader.
|
|
|
|
|
|
|
|
- `non_voting_server` `(bool: false)` - (Enterprise-only) Specifies whether
|
|
|
|
this server will act as a non-voting member of the cluster to help provide
|
|
|
|
read scalability.
|
|
|
|
|
|
|
|
- `num_schedulers` `(int: [num-cores])` - Specifies the number of parallel
|
|
|
|
scheduler threads to run. This can be as many as one per core, or `0` to
|
|
|
|
disallow this server from making any scheduling decisions. This defaults to
|
|
|
|
the number of CPU cores.
|
|
|
|
|
|
|
|
- `protocol_version` `(int: 1)` - Specifies the Nomad protocol version to use
|
|
|
|
when communicating with other Nomad servers. This value is typically not
|
|
|
|
required as the agent internally knows the latest version, but may be useful
|
|
|
|
in some upgrade scenarios.
|
|
|
|
|
|
|
|
- `raft_protocol` `(int: 2)` - Specifies the Raft protocol version to use when
|
|
|
|
communicating with other Nomad servers. This affects available Autopilot
|
|
|
|
features and is typically not required as the agent internally knows the
|
|
|
|
latest version, but may be useful in some upgrade scenarios.
|
|
|
|
|
|
|
|
- `redundancy_zone` `(string: "")` - (Enterprise-only) Specifies the redundancy
|
|
|
|
zone that this server will be a part of for Autopilot management. For more
|
2020-03-20 21:00:59 +00:00
|
|
|
information, see the [Autopilot Guide](https://learn.hashicorp.com/nomad/operating-nomad/autopilot).
|
2018-05-22 21:30:13 +00:00
|
|
|
|
|
|
|
- `rejoin_after_leave` `(bool: false)` - Specifies if Nomad will ignore a
|
|
|
|
previous leave and attempt to rejoin the cluster when starting. By default,
|
|
|
|
Nomad treats leave as a permanent intent and does not attempt to join the
|
|
|
|
cluster again when starting. This flag allows the previous state to be used to
|
|
|
|
rejoin the cluster.
|
|
|
|
|
2020-03-12 22:05:34 +00:00
|
|
|
- `server_join` <code>([server_join][server-join]: nil)</code> - Specifies
|
|
|
|
how the Nomad server will connect to other Nomad servers. The `retry_join`
|
|
|
|
fields may directly specify the server address or use go-discover syntax for
|
|
|
|
auto-discovery. See the [server_join documentation][server-join] for more detail.
|
2018-05-24 21:46:52 +00:00
|
|
|
|
|
|
|
- `upgrade_version` `(string: "")` - A custom version of the format X.Y.Z to use
|
|
|
|
in place of the Nomad version when custom upgrades are enabled in Autopilot.
|
2020-03-20 21:00:59 +00:00
|
|
|
For more information, see the [Autopilot Guide](https://learn.hashicorp.com/nomad/operating-nomad/autopilot).
|
2018-05-24 21:46:52 +00:00
|
|
|
|
|
|
|
### Deprecated Parameters
|
|
|
|
|
2018-05-22 21:30:13 +00:00
|
|
|
- `retry_join` `(array<string>: [])` - Specifies a list of server addresses to
|
|
|
|
retry joining if the first attempt fails. This is similar to
|
2016-11-01 12:53:13 +00:00
|
|
|
[`start_join`](#start_join), but only invokes if the initial join attempt
|
|
|
|
fails. The list of addresses will be tried in the order specified, until one
|
|
|
|
succeeds. After one succeeds, no further addresses will be contacted. This is
|
|
|
|
useful for cases where we know the address will become available eventually.
|
|
|
|
Use `retry_join` with an array as a replacement for `start_join`, **do not use
|
2020-03-12 22:05:34 +00:00
|
|
|
both options**. See the [server_join][server-join]
|
|
|
|
section for more information on the format of the string. This field is
|
|
|
|
deprecated in favor of the [server_join stanza][server-join].
|
2016-11-01 12:53:13 +00:00
|
|
|
|
|
|
|
- `retry_interval` `(string: "30s")` - Specifies the time to wait between retry
|
2018-05-31 17:49:19 +00:00
|
|
|
join attempts. This field is deprecated in favor of the [server_join
|
|
|
|
stanza][server-join].
|
2016-11-01 12:53:13 +00:00
|
|
|
|
|
|
|
- `retry_max` `(int: 0)` - Specifies the maximum number of join attempts to be
|
|
|
|
made before exiting with a return code of 1. By default, this is set to 0
|
2018-05-31 17:49:19 +00:00
|
|
|
which is interpreted as infinite retries. This field is deprecated in favor of
|
|
|
|
the [server_join stanza][server-join].
|
2016-11-01 12:53:13 +00:00
|
|
|
|
|
|
|
- `start_join` `(array<string>: [])` - Specifies a list of server addresses to
|
|
|
|
join on startup. If Nomad is unable to join with any of the specified
|
2018-05-31 17:49:19 +00:00
|
|
|
addresses, agent startup will fail. See the [server address
|
2020-02-06 23:45:31 +00:00
|
|
|
format](/docs/configuration/server_join#server-address-format)
|
2018-05-31 17:49:19 +00:00
|
|
|
section for more information on the format of the string. This field is
|
|
|
|
deprecated in favor of the [server_join stanza][server-join].
|
2016-11-01 12:53:13 +00:00
|
|
|
|
|
|
|
## `server` Examples
|
|
|
|
|
|
|
|
### Common Setup
|
|
|
|
|
|
|
|
This example shows a common Nomad agent `server` configuration stanza. The two
|
|
|
|
IP addresses could also be DNS, and should point to the other Nomad servers in
|
|
|
|
the cluster
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
server {
|
|
|
|
enabled = true
|
|
|
|
bootstrap_expect = 3
|
2020-02-06 23:45:31 +00:00
|
|
|
|
2019-07-30 12:54:52 +00:00
|
|
|
server_join {
|
|
|
|
retry_join = [ "1.1.1.1", "2.2.2.2" ]
|
|
|
|
retry_max = 3
|
|
|
|
retry_interval = "15s"
|
|
|
|
}
|
2016-11-01 12:53:13 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-11-02 23:26:10 +00:00
|
|
|
### Configuring Data Directory
|
|
|
|
|
|
|
|
This example shows configuring a custom data directory for the server data.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
server {
|
|
|
|
data_dir = "/opt/nomad/server"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-11-01 12:53:13 +00:00
|
|
|
### Automatic Bootstrapping
|
|
|
|
|
|
|
|
The Nomad servers can automatically bootstrap if Consul is configured. For a
|
2020-03-12 22:05:34 +00:00
|
|
|
more detailed explanation, please see the
|
2020-03-20 21:00:59 +00:00
|
|
|
[automatic Nomad bootstrapping documentation](https://learn.hashicorp.com/nomad/operating-nomad/clustering).
|
2016-11-01 12:53:13 +00:00
|
|
|
|
|
|
|
### Restricting Schedulers
|
|
|
|
|
|
|
|
This example shows restricting the schedulers that are enabled as well as the
|
|
|
|
maximum number of cores to utilize when participating in scheduling decisions:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
server {
|
|
|
|
enabled = true
|
|
|
|
enabled_schedulers = ["batch", "service"]
|
|
|
|
num_schedulers = 7
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-01-29 14:16:56 +00:00
|
|
|
### Configuring Scheduler Config
|
|
|
|
|
|
|
|
This example shows enabling preemption for all schedulers.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
server {
|
|
|
|
default_scheduler_config {
|
|
|
|
preemption_config {
|
|
|
|
batch_scheduler_enabled = true
|
|
|
|
system_scheduler_enabled = true
|
|
|
|
service_scheduler_enabled = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-03-12 22:05:34 +00:00
|
|
|
The structure matches the [Update Scheduler Config][update-scheduler-config] endpoint,
|
|
|
|
but adopted to hcl syntax (namely using snake case rather than camel case).
|
2020-01-29 14:16:56 +00:00
|
|
|
|
2020-01-30 02:56:26 +00:00
|
|
|
Nomad servers check their `default_scheduler_config` only during cluster
|
|
|
|
bootstrap. During upgrades, if a previously bootstrapped cluster already set
|
2020-03-12 22:05:34 +00:00
|
|
|
scheduler configuration via the [Update Scheduler Config][update-scheduler-config]
|
|
|
|
endpoint, that is always preferred.
|
2020-01-30 02:56:26 +00:00
|
|
|
|
2020-03-20 21:00:59 +00:00
|
|
|
[encryption]: https://learn.hashicorp.com/nomad/transport-security/gossip-encryption 'Nomad Encryption Overview'
|
2020-02-06 23:45:31 +00:00
|
|
|
[server-join]: /docs/configuration/server_join 'Server Join'
|
2020-03-20 22:24:56 +00:00
|
|
|
[update-scheduler-config]:/1/api-docs/operator#update-scheduler-configuration 'Scheduler Config'
|