2016-10-28 00:36:26 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "constraint Stanza - Job Specification"
|
|
|
|
sidebar_current: "docs-job-specification-constraint"
|
|
|
|
description: |-
|
2016-10-28 03:01:11 +00:00
|
|
|
The "constraint" stanza allows restricting the set of eligible nodes.
|
|
|
|
Constraints may filter on attributes or metadata. Additionally constraints may
|
|
|
|
be specified at the job, group, or task levels for ultimate flexibility.
|
2016-10-28 00:36:26 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# `constraint` Stanza
|
|
|
|
|
|
|
|
<table class="table table-bordered table-striped">
|
|
|
|
<tr>
|
|
|
|
<th width="120">Placement</th>
|
|
|
|
<td>
|
|
|
|
<code>job -> **constraint**</code>
|
|
|
|
<br>
|
|
|
|
<code>job -> group -> **constraint**</code>
|
|
|
|
<br>
|
|
|
|
<code>job -> group -> task -> **constraint**</code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2016-10-28 03:01:11 +00:00
|
|
|
The `constraint` allows restricting the set of eligible nodes. Constraints may
|
2016-12-08 18:45:33 +00:00
|
|
|
filter on [attributes][interpolation] or [client metadata][client-meta].
|
|
|
|
Additionally constraints may be specified at the [job][job], [group][group], or
|
|
|
|
[task][task] levels for ultimate flexibility.
|
2016-10-28 00:36:26 +00:00
|
|
|
|
2018-06-19 13:27:16 +00:00
|
|
|
~> **It is possible to define irreconcilable constraints in a job.**
|
|
|
|
For example, because all [tasks within a group are scheduled on the same client node][group],
|
|
|
|
specifying different [`${attr.unique.hostname}`][node-variables] constraints at
|
|
|
|
the task level will cause a job to be unplaceable.
|
|
|
|
|
2016-10-28 00:36:26 +00:00
|
|
|
```hcl
|
|
|
|
job "docs" {
|
|
|
|
# All tasks in this job must run on linux.
|
|
|
|
constraint {
|
|
|
|
attribute = "${attr.kernel.name}"
|
|
|
|
value = "linux"
|
|
|
|
}
|
|
|
|
|
|
|
|
group "example" {
|
|
|
|
# All groups in this job should be scheduled on different hosts.
|
|
|
|
constraint {
|
|
|
|
operator = "distinct_hosts"
|
|
|
|
value = "true"
|
|
|
|
}
|
|
|
|
|
|
|
|
task "server" {
|
|
|
|
# All tasks must run where "my_custom_value" is greater than 3.
|
|
|
|
constraint {
|
2017-01-03 21:25:56 +00:00
|
|
|
attribute = "${meta.my_custom_value}"
|
2016-10-28 00:36:26 +00:00
|
|
|
operator = ">"
|
|
|
|
value = "3"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Placing constraints at both the job level and at the group level is redundant
|
|
|
|
since constraints are applied hierarchically. The job constraints will affect
|
|
|
|
all groups (and tasks) in the job.
|
|
|
|
|
|
|
|
## `constraint` Parameters
|
|
|
|
|
|
|
|
- `attribute` `(string: "")` - Specifies the name or reference of the attribute
|
|
|
|
to examine for the constraint. This can be any of the [Nomad interpolated
|
|
|
|
values](/docs/runtime/interpolation.html#interpreted_node_vars).
|
|
|
|
|
2017-07-17 18:41:50 +00:00
|
|
|
- `operator` `(string: "=")` - Specifies the comparison operator. The ordering is
|
2016-10-28 00:36:26 +00:00
|
|
|
compared lexically. Possible values include:
|
|
|
|
|
|
|
|
```text
|
|
|
|
=
|
|
|
|
!=
|
|
|
|
>
|
|
|
|
>=
|
|
|
|
<
|
|
|
|
<=
|
2017-07-31 23:44:17 +00:00
|
|
|
distinct_hosts
|
|
|
|
distinct_property
|
2016-10-28 00:36:26 +00:00
|
|
|
regexp
|
|
|
|
set_contains
|
|
|
|
version
|
|
|
|
```
|
|
|
|
|
|
|
|
For a detailed explanation of these values and their behavior, please see
|
|
|
|
the [operator values section](#operator-values).
|
|
|
|
|
|
|
|
- `value` `(string: "")` - Specifies the value to compare the attribute against
|
|
|
|
using the specified operation. This can be a literal value, another attribute,
|
|
|
|
or any [Nomad interpolated
|
|
|
|
values](/docs/runtime/interpolation.html#interpreted_node_vars).
|
|
|
|
|
|
|
|
### `operator` Values
|
|
|
|
|
|
|
|
This section details the specific values for the "operator" parameter in the
|
|
|
|
Nomad job specification for constraints. The operator is always specified as a
|
|
|
|
string, but the string can take on different values which change the behavior of
|
|
|
|
the overall constraint evaluation.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
operator = "..."
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
- `"distinct_hosts"` - Instructs the scheduler to not co-locate any groups on
|
|
|
|
the same machine. When specified as a job constraint, it applies to all groups
|
|
|
|
in the job. When specified as a group constraint, the effect is constrained to
|
2017-03-12 00:18:01 +00:00
|
|
|
that group. This constraint can not be specified at the task level. Note that
|
|
|
|
the `attribute` parameter should be omitted when using this constraint.
|
2016-10-28 00:36:26 +00:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
operator = "distinct_hosts"
|
|
|
|
value = "true"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-03-12 00:18:01 +00:00
|
|
|
The constraint may also be specified as follows for a more compact
|
|
|
|
representation:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
distinct_hosts = true
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
- `"distinct_property"` - Instructs the scheduler to select nodes that have a
|
2017-07-31 23:44:17 +00:00
|
|
|
distinct value of the specified property. The `value` parameter specifies how
|
|
|
|
many allocations are allowed to share the value of a property. The `value`
|
|
|
|
must be 1 or greater and if omitted, defaults to 1. When specified as a job
|
|
|
|
constraint, it applies to all groups in the job. When specified as a group
|
|
|
|
constraint, the effect is constrained to that group. This constraint can not
|
|
|
|
be specified at the task level.
|
2017-03-12 00:18:01 +00:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
operator = "distinct_property"
|
2017-06-23 17:40:50 +00:00
|
|
|
attribute = "${meta.rack}"
|
2017-07-31 23:44:17 +00:00
|
|
|
value = "3"
|
2017-03-12 00:18:01 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The constraint may also be specified as follows for a more compact
|
|
|
|
representation:
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
2017-07-31 23:44:17 +00:00
|
|
|
distinct_property = "${meta.rack}"
|
|
|
|
value = "3"
|
2017-03-12 00:18:01 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-10-28 00:36:26 +00:00
|
|
|
- `"regexp"` - Specifies a regular expression constraint against the attribute.
|
|
|
|
The syntax of the regular expressions accepted is the same general syntax used
|
|
|
|
by Perl, Python, and many other languages. More precisely, it is the syntax
|
|
|
|
accepted by RE2 and described at in the [Google RE2
|
|
|
|
syntax](https://golang.org/s/re2syntax).
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
attribute = "..."
|
|
|
|
operator = "regexp"
|
|
|
|
value = "[a-z0-9]"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
- `"set_contains"` - Specifies a contains constraint against the attribute. The
|
|
|
|
attribute and the list being checked are split using commas. This will check
|
|
|
|
that the given attribute contains **all** of the specified elements.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
attribute = "..."
|
|
|
|
operator = "set_contains"
|
|
|
|
value = "a,b,c"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
- `"version"` - Specifies a version constraint against the attribute. This
|
|
|
|
supports a comma-separated list of constraints, including the pessimistic
|
|
|
|
operator. For more examples please see the [go-version
|
|
|
|
repository](https://github.com/hashicorp/go-version) for more specific
|
|
|
|
examples.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
attribute = "..."
|
|
|
|
operator = "version"
|
|
|
|
value = ">= 0.1.0, < 0.2"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## `constraint` Examples
|
|
|
|
|
2016-10-28 00:59:45 +00:00
|
|
|
The following examples only show the `constraint` stanzas. Remember that the
|
2016-10-31 00:41:03 +00:00
|
|
|
`constraint` stanza is only valid in the placements listed above.
|
2016-10-28 00:36:26 +00:00
|
|
|
|
|
|
|
### Kernel Data
|
|
|
|
|
|
|
|
This example restricts the task to running on nodes which have a kernel version
|
|
|
|
higher than "3.19".
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
attribute = "${attr.kernel.version}"
|
|
|
|
operator = "version"
|
|
|
|
value = "> 3.19"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-04-24 15:31:20 +00:00
|
|
|
### Distinct Property
|
2017-03-12 00:18:01 +00:00
|
|
|
|
|
|
|
A potential use case of the `distinct_property` constraint is to spread a
|
|
|
|
service with `count > 1` across racks to minimize correlated failure. Nodes can
|
|
|
|
be annotated with which rack they are on using [client
|
2017-07-31 23:44:17 +00:00
|
|
|
metadata][client-metadata] with values such as "rack-12-1", "rack-12-2", etc.
|
|
|
|
The following constraint would assure that an individual rack is not running
|
|
|
|
more than 2 instances of the task group.
|
2017-03-12 00:18:01 +00:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
distinct_property = "${meta.rack}"
|
2017-07-31 23:44:17 +00:00
|
|
|
value = "2"
|
2017-03-12 00:18:01 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-10-28 00:36:26 +00:00
|
|
|
### Operating Systems
|
|
|
|
|
|
|
|
This example restricts the task to running on nodes that are running Ubuntu
|
|
|
|
14.04
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
attribute = "${attr.os.name}"
|
|
|
|
value = "ubuntu"
|
|
|
|
}
|
|
|
|
|
|
|
|
constraint {
|
|
|
|
attribute = "${attr.os.version}"
|
|
|
|
value = "14.04"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Cloud Metadata
|
|
|
|
|
|
|
|
When possible, Nomad populates node attributes from the cloud environment. These
|
|
|
|
values are accessible as filters in constraints. This example constrains this
|
|
|
|
task to only run on nodes that are memory-optimized on AWS.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
|
|
|
attribute = "${attr.platform.aws.instance-type}"
|
|
|
|
value = "m4.xlarge"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### User-Specified Metadata
|
|
|
|
|
|
|
|
This example restricts the task to running on nodes where the binaries for
|
|
|
|
redis, cypress, and nginx are all cached locally. This particular example is
|
2016-10-28 00:55:55 +00:00
|
|
|
utilizing node [metadata][meta].
|
2016-10-28 00:36:26 +00:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
constraint {
|
2017-01-03 21:25:56 +00:00
|
|
|
attribute = "${meta.cached_binaries}"
|
2016-10-28 00:36:26 +00:00
|
|
|
set_contains = "redis,cypress,nginx"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
[job]: /docs/job-specification/job.html "Nomad job Job Specification"
|
|
|
|
[group]: /docs/job-specification/group.html "Nomad group Job Specification"
|
2016-12-08 18:45:33 +00:00
|
|
|
[client-meta]: /docs/agent/configuration/client.html#meta "Nomad meta Job Specification"
|
2016-10-28 00:36:26 +00:00
|
|
|
[task]: /docs/job-specification/task.html "Nomad task Job Specification"
|
|
|
|
[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
|
2018-06-19 13:27:16 +00:00
|
|
|
[node-variables]: /docs/runtime/interpolation.html#node-variables- "Nomad interpolation-Node variables"
|