2017-08-24 22:33:28 +00:00
|
|
|
---
|
|
|
|
layout: api
|
|
|
|
page_title: Search - HTTP API
|
2020-02-06 23:45:31 +00:00
|
|
|
description: The /search endpoint is used to search for Nomad objects
|
2017-08-24 22:33:28 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Search HTTP API
|
|
|
|
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
## Prefix Searching
|
|
|
|
|
2017-08-24 22:33:28 +00:00
|
|
|
The `/search` endpoint returns matches for a given prefix and context, where a
|
2020-04-21 12:33:24 +00:00
|
|
|
context can be jobs, allocations, evaluations, nodes, deployments, plugins,
|
2020-10-22 21:59:40 +00:00
|
|
|
namespaces, or volumes. When using Nomad Enterprise, the allowed contexts
|
|
|
|
include quotas. Additionally, a prefix can be searched for within every
|
|
|
|
context.
|
2017-08-24 22:33:28 +00:00
|
|
|
|
2020-02-06 23:45:31 +00:00
|
|
|
| Method | Path | Produces |
|
|
|
|
| ------ | ------------ | ------------------ |
|
|
|
|
| `POST` | `/v1/search` | `application/json` |
|
2017-08-24 22:33:28 +00:00
|
|
|
|
|
|
|
The table below shows this endpoint's support for
|
2023-01-25 17:31:14 +00:00
|
|
|
[blocking queries](/nomad/api-docs#blocking-queries) and
|
|
|
|
[required ACLs](/nomad/api-docs#acls).
|
2017-08-24 22:33:28 +00:00
|
|
|
|
2017-10-10 22:04:23 +00:00
|
|
|
| Blocking Queries | ACL Required |
|
|
|
|
| ---------------- | -------------------------------- |
|
|
|
|
| `NO` | `node:read, namespace:read-jobs` |
|
|
|
|
|
|
|
|
When ACLs are enabled, requests must have a token valid for `node:read` or
|
|
|
|
`namespace:read-jobs` roles. If the token is only valid for `node:read`, then
|
|
|
|
job related results will not be returned. If the token is only valid for
|
|
|
|
`namespace:read-jobs`, then node results will not be returned.
|
2017-08-24 22:33:28 +00:00
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
2019-05-08 16:54:44 +00:00
|
|
|
- `Prefix` `(string: <required>)` - Specifies the identifier against which
|
2017-08-24 22:33:28 +00:00
|
|
|
matches will be found. For example, if the given prefix were "a", potential
|
|
|
|
matches might be "abcd", or "aabb".
|
|
|
|
- `Context` `(string: <required>)` - Defines the scope in which a search for a
|
|
|
|
prefix operates. Contexts can be: "jobs", "evals", "allocs", "nodes",
|
2020-04-21 12:33:24 +00:00
|
|
|
"deployment", "plugins", "volumes" or "all", where "all" means every
|
|
|
|
context will be searched.
|
2017-08-24 22:33:28 +00:00
|
|
|
|
2020-04-21 12:33:24 +00:00
|
|
|
### Sample Payload (for all contexts)
|
2017-08-24 22:33:28 +00:00
|
|
|
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
```json
|
2017-08-24 22:33:28 +00:00
|
|
|
{
|
|
|
|
"Prefix": "abc",
|
2020-04-21 12:33:24 +00:00
|
|
|
"Context": "all"
|
2017-08-24 22:33:28 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
2020-05-18 20:53:06 +00:00
|
|
|
```shell-session
|
|
|
|
$ curl \
|
2017-08-24 22:33:28 +00:00
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
2018-01-29 16:27:52 +00:00
|
|
|
https://localhost:4646/v1/search
|
2017-08-24 22:33:28 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
2020-02-06 23:45:31 +00:00
|
|
|
{
|
|
|
|
"Matches": {
|
2020-04-21 12:33:24 +00:00
|
|
|
"allocs": null,
|
|
|
|
"deployment": null,
|
|
|
|
"evals": ["abc2fdc0-e1fd-2536-67d8-43af8ca798ac"],
|
|
|
|
"jobs": ["abcde"],
|
|
|
|
"nodes": null,
|
|
|
|
"plugins": null,
|
|
|
|
"volumes": null
|
2017-08-24 22:33:28 +00:00
|
|
|
},
|
|
|
|
"Truncations": {
|
2020-04-21 12:33:24 +00:00
|
|
|
"allocs": "false",
|
|
|
|
"deployment": "false",
|
|
|
|
"evals": "false",
|
|
|
|
"jobs": "false",
|
|
|
|
"nodes": "false",
|
|
|
|
"plugins": "false",
|
|
|
|
"volumes": "false"
|
2017-08-24 22:33:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-04-21 12:33:24 +00:00
|
|
|
#### Field Reference
|
|
|
|
|
|
|
|
- `Matches` - A map of contexts to matching arrays of identifiers.
|
|
|
|
|
|
|
|
- `Truncations` - Search results are capped at 20; if more matches were found for a particular context, it will be `true`.
|
|
|
|
|
|
|
|
### Sample Payload (for a specific context)
|
2017-08-24 22:33:28 +00:00
|
|
|
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
```json
|
2017-08-24 22:33:28 +00:00
|
|
|
{
|
|
|
|
"Prefix": "abc",
|
2020-04-21 12:33:24 +00:00
|
|
|
"Context": "evals"
|
2017-08-24 22:33:28 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
2020-05-18 20:53:06 +00:00
|
|
|
```shell-session
|
|
|
|
$ curl \
|
2017-08-24 22:33:28 +00:00
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
2018-01-29 16:27:52 +00:00
|
|
|
https://localhost:4646/v1/search
|
2017-08-24 22:33:28 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
2020-02-06 23:45:31 +00:00
|
|
|
{
|
|
|
|
"Matches": {
|
2020-04-21 12:33:24 +00:00
|
|
|
"evals": ["abc2fdc0-e1fd-2536-67d8-43af8ca798ac"]
|
2017-08-24 22:33:28 +00:00
|
|
|
},
|
|
|
|
"Truncations": {
|
2020-04-21 12:33:24 +00:00
|
|
|
"evals": "false"
|
2017-08-24 22:33:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
|
|
|
## Fuzzy Searching
|
|
|
|
|
|
|
|
The `/search/fuzzy` endpoint returns partial substring matches for a given search
|
|
|
|
term and context, where a context can be jobs, allocations, nodes, plugins, or namespaces.
|
|
|
|
Additionally, fuzzy searching can be done across all contexts. For better control
|
|
|
|
over the performance implications of fuzzy searching on Nomad servers, aspects of
|
2023-01-30 14:48:43 +00:00
|
|
|
fuzzy searching can be tuned through the <code>[search]</code> block in Nomad agent config.
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
|
|
|
Fuzzy search results are ordered starting with closest matching terms. Items of
|
|
|
|
a name that exactly matches the search term are listed first.
|
|
|
|
|
|
|
|
| Method | Path | Produces |
|
|
|
|
| ------ | ------------------ | ------------------ |
|
|
|
|
| `POST` | `/v1/search/fuzzy` | `application/json` |
|
|
|
|
|
|
|
|
The table below shows this endpoint's support for
|
2023-01-25 17:31:14 +00:00
|
|
|
[blocking queries](/nomad/api-docs#blocking-queries) and
|
|
|
|
[required ACLs](/nomad/api-docs#acls).
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
|
|
|
| Blocking Queries | ACL Required |
|
|
|
|
| ---------------- | ----------------------------------------------------------- |
|
|
|
|
| `NO` | `node:read, namespace:read-jobs, namespace:csi-list-plugin` |
|
|
|
|
|
|
|
|
When ACLs are enabled, requests must have a token valid for `node:read`, `plugin:read` or
|
|
|
|
`namespace:read-jobs` roles. If the token is only valid for a portion of these
|
|
|
|
capabilities, then results will include results including only data readable with
|
|
|
|
the given token.
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
- `Text` `(string: <required>)` - Specifies the identifier against which
|
|
|
|
matches will be found. For example, if the given text were "py", potential
|
|
|
|
fuzzy matches might be "python", "spying", or "happy".
|
|
|
|
- `Context` `(string: <required>)` - Defines the scope in which a search for a
|
|
|
|
prefix operates. Contexts can be: "jobs", "allocs", "nodes", "plugins", or
|
|
|
|
"all", where "all" means every context will be searched. When "all" is selected,
|
|
|
|
additional prefix matches will be included for the "deployments", "evals", and
|
|
|
|
"volumes" types. When searching in the "jobs" context, results that fuzzy match
|
|
|
|
"groups", "services", "tasks", "images", "commands", and "classes" are also
|
|
|
|
included in the results.
|
|
|
|
|
|
|
|
### Scope
|
|
|
|
|
|
|
|
Fuzzy match results are accompanied with a `Scope` field which is used to uniquely
|
|
|
|
identify the matched object, in a way that the Nomad API can be queried again for
|
|
|
|
additional information. The data provided by scope varies depending on the type
|
|
|
|
of matched object, described below.
|
|
|
|
|
|
|
|
### Sample Payload (for jobs)
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Text": "py",
|
|
|
|
"Context": "jobs"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ curl \
|
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
|
|
|
https://localhost:4646/v1/search/fuzzy
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Index": 90,
|
|
|
|
"KnownLeader": true,
|
|
|
|
"LastContact": 0,
|
|
|
|
"Matches": {
|
|
|
|
"services": [
|
|
|
|
{
|
|
|
|
"ID": "python-logger",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app",
|
|
|
|
"my-python-task"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ID": "super-spy-service",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"ID": "my-python-task",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"images": [
|
|
|
|
{
|
|
|
|
"ID": "python:3",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app",
|
|
|
|
"my-python-task"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"jobs": [
|
|
|
|
{
|
|
|
|
"ID": "example-python",
|
|
|
|
"Scope": [
|
|
|
|
"default"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"groups": [
|
|
|
|
{
|
|
|
|
"ID": "my-spy-app",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"Truncations": {
|
|
|
|
"jobs": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-04-21 19:55:17 +00:00
|
|
|
#### Scope (jobs)
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
|
|
|
- `Scope[0]` : Namespace
|
2021-04-16 23:03:36 +00:00
|
|
|
- `Scope[1]` : Job ID
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
2021-04-21 19:55:17 +00:00
|
|
|
#### Scope (groups)
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
|
|
|
- `Scope[0]` : Namespace
|
2021-04-16 23:03:36 +00:00
|
|
|
- `Scope[1]` : Job ID
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
2021-04-21 19:55:17 +00:00
|
|
|
#### Scope (tasks)
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
|
|
|
- `Scope[0]` : Namespace
|
2021-04-16 23:03:36 +00:00
|
|
|
- `Scope[1]` : Job ID
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
- `Scope[2]` : Group
|
|
|
|
|
2021-04-21 19:55:17 +00:00
|
|
|
#### Scope (group services)
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
|
|
|
|
- `Scope[0]` : Namespace
|
|
|
|
- `Scope[1]` : Group
|
|
|
|
|
|
|
|
#### Scope (task services)
|
|
|
|
|
|
|
|
- `Scope[0]` : Namespace
|
2021-04-16 23:03:36 +00:00
|
|
|
- `Scope[1]` : Job ID
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
- `Scope[2]` : Group
|
|
|
|
- `Scope[3]` : Task
|
|
|
|
|
|
|
|
#### Scope (commands/images/classes)
|
|
|
|
|
|
|
|
- `Scope[0]` : Namespace
|
2021-04-16 23:03:36 +00:00
|
|
|
- `Scope[1]` : Job ID
|
api: implement fuzzy search API
This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
searching objects in Nomad. The fuzzy search endpoint routes requests
to the Nomad Server leader, which implements the Search.FuzzySearch RPC
method.
Requests to the fuzzy search API are based on the api.FuzzySearchRequest
object, e.g.
{
"Text": "ed",
"Context": "all"
}
Responses from the fuzzy search API are based on the api.FuzzySearchResponse
object, e.g.
{
"Index": 27,
"KnownLeader": true,
"LastContact": 0,
"Matches": {
"tasks": [
{
"ID": "redis",
"Scope": [
"default",
"example",
"cache"
]
}
],
"evals": [],
"deployment": [],
"volumes": [],
"scaling_policy": [],
"images": [
{
"ID": "redis:3.2",
"Scope": [
"default",
"example",
"cache",
"redis"
]
}
]
},
"Truncations": {
"volumes": false,
"scaling_policy": false,
"evals": false,
"deployment": false
}
}
The API is tunable using the new server.search stanza, e.g.
server {
search {
fuzzy_enabled = true
limit_query = 200
limit_results = 1000
min_term_length = 5
}
}
These values can be increased or decreased, so as to provide more
search results or to reduce load on the Nomad Server. The fuzzy search
API can be disabled entirely by setting `fuzzy_enabled` to `false`.
2021-02-23 20:24:52 +00:00
|
|
|
- `Scope[2]` : Group
|
|
|
|
- `Scope[3]` : Task
|
|
|
|
|
|
|
|
### Sample Payload (for nodes)
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Text": "lab",
|
|
|
|
"Context": "nodes"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ curl \
|
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
|
|
|
https://localhost:4646/v1/search/fuzzy
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Index": 9,
|
|
|
|
"KnownLeader": true,
|
|
|
|
"LastContact": 0,
|
|
|
|
"Matches": {
|
|
|
|
"nodes": [
|
|
|
|
{
|
|
|
|
"ID": "nomad-lab1",
|
|
|
|
"Scope": [
|
|
|
|
"c48cd39f-dfe1-9cc0-9c62-617d199854be"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"Truncations": {
|
|
|
|
"nodes": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
##### Scope (nodes)
|
|
|
|
|
|
|
|
- `Scope[0]` : Node ID
|
|
|
|
|
|
|
|
### Sample Payload (for allocs)
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Text":"py",
|
|
|
|
"Context":"allocs"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ curl \
|
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
|
|
|
https://localhost:4646/v1/search/fuzzy
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Index": 136,
|
|
|
|
"KnownLeader": true,
|
|
|
|
"LastContact": 0,
|
|
|
|
"Matches": {
|
|
|
|
"allocs": [
|
|
|
|
{
|
|
|
|
"ID": "example-python.my-spy-app[0]",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"0fb703d1-ba4d-116f-13aa-27f31f046858"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"Truncations": {
|
|
|
|
"allocs": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Scope (allocs)
|
|
|
|
|
|
|
|
- `Scope[0]` : Namespace
|
|
|
|
- `Scope[1]` : Alloc ID
|
|
|
|
|
|
|
|
|
|
|
|
### Sample Payload (for plugins)
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Text": "aws",
|
|
|
|
"Context": "plugins"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ curl \
|
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
|
|
|
https://localhost:4646/v1/search/fuzzy
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Index": 0,
|
|
|
|
"KnownLeader": true,
|
|
|
|
"LastContact": 0,
|
|
|
|
"Matches": {
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"ID": "aws-efs0"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"Truncations": {
|
|
|
|
"plugins": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Payload (for all)
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Index": 260,
|
|
|
|
"KnownLeader": true,
|
|
|
|
"LastContact": 0,
|
|
|
|
"Matches": {
|
|
|
|
"services": [
|
|
|
|
{
|
|
|
|
"ID": "python-logger",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app",
|
|
|
|
"my-python-task"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ID": "super-spy-service",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"ID": "my-python-task",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"jobs": [
|
|
|
|
{
|
|
|
|
"ID": "example-python",
|
|
|
|
"Scope": [
|
|
|
|
"default"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"evals": [],
|
|
|
|
"scaling_policy": [],
|
|
|
|
"groups": [
|
|
|
|
{
|
|
|
|
"ID": "my-spy-app",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"images": [
|
|
|
|
{
|
|
|
|
"ID": "python:3",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"example-python",
|
|
|
|
"my-spy-app",
|
|
|
|
"my-python-task"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"ID": "aws-spy-plugin"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"deployment": [],
|
|
|
|
"volumes": [],
|
|
|
|
"allocs": [
|
|
|
|
{
|
|
|
|
"ID": "example-python.my-spy-app[0]",
|
|
|
|
"Scope": [
|
|
|
|
"default",
|
|
|
|
"48608246-4c28-0446-f3d1-c67e3bc650ad"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"Truncations": {
|
|
|
|
"deployment": false,
|
|
|
|
"volumes": false,
|
|
|
|
"plugins": false,
|
|
|
|
"namespaces": false,
|
|
|
|
"scaling_policy": false,
|
|
|
|
"evals": false,
|
|
|
|
"allocs": false,
|
|
|
|
"jobs": false,
|
|
|
|
"nodes": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ curl \
|
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
|
|
|
https://localhost:4646/v1/search/fuzzy
|
|
|
|
```
|
|
|
|
|
|
|
|
### Prefix matching when fuzzy searching
|
|
|
|
|
|
|
|
If the search Context is `all` when fuzzy searching, the object types that are
|
|
|
|
identified only with UUIDs are also concurrently prefix-searched. Those types include
|
|
|
|
deployments, evals, volumes, and quotas (Enterprise).
|
|
|
|
|
|
|
|
### Sample Payload (prefix match)
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Text":"cc",
|
|
|
|
"Context":"all"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ curl \
|
|
|
|
--request POST \
|
|
|
|
--data @payload.json \
|
|
|
|
https://localhost:4646/v1/search/fuzzy
|
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Result
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Index": 267,
|
|
|
|
"KnownLeader": true,
|
|
|
|
"LastContact": 0,
|
|
|
|
"Matches": {
|
|
|
|
"scaling_policy": [],
|
|
|
|
"evals": [],
|
|
|
|
"deployment": [
|
|
|
|
{
|
|
|
|
"ID": "cc786388-e071-31ec-5821-b829839f9681"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"volumes": []
|
|
|
|
},
|
|
|
|
"Truncations": {
|
|
|
|
"deployment": false,
|
|
|
|
"volumes": false,
|
|
|
|
"plugins": false,
|
|
|
|
"namespaces": false,
|
|
|
|
"scaling_policy": false,
|
|
|
|
"evals": false,
|
|
|
|
"allocs": false,
|
|
|
|
"jobs": false,
|
|
|
|
"nodes": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-01-25 17:31:14 +00:00
|
|
|
[search]: /nomad/docs/configuration/search
|