2015-11-14 20:45:34 +00:00
|
|
|
|
---
|
|
|
|
|
layout: "docs"
|
|
|
|
|
page_title: "Prepared Queries (HTTP)"
|
|
|
|
|
sidebar_current: "docs-agent-http-query"
|
|
|
|
|
description: >
|
|
|
|
|
The Query endpoints are used to manage and execute prepared queries.
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Prepared Query HTTP Endpoint
|
|
|
|
|
|
|
|
|
|
The Prepared Query endpoints are used to create, update, destroy, and execute
|
|
|
|
|
prepared queries.
|
|
|
|
|
|
|
|
|
|
Prepared queries allow you to register a complex service query and then execute
|
|
|
|
|
it later via its ID or name to get a set of healthy nodes that provide a given
|
|
|
|
|
service. This is particularly useful in combination with Consul's
|
|
|
|
|
[DNS Interface](/docs/agent/dns.html) as it allows for much richer queries than
|
|
|
|
|
would be possible given the limited interface DNS provides.
|
|
|
|
|
|
|
|
|
|
The following endpoints are supported:
|
|
|
|
|
|
|
|
|
|
* [`/v1/query`](#general): Creates a new prepared query or lists
|
|
|
|
|
all prepared queries
|
|
|
|
|
* [`/v1/query/<query>`](#specific): Updates, fetches, or deletes
|
|
|
|
|
a prepared query
|
|
|
|
|
* [`/v1/query/<query or name>/execute`](#execute): Executes a
|
|
|
|
|
prepared query by its ID or optional name
|
|
|
|
|
|
|
|
|
|
Not all endpoints support blocking queries and all consistency modes,
|
|
|
|
|
see details in the sections below.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
The query endpoints support the use of ACL Tokens. Prepared queries have some
|
|
|
|
|
special handling of ACL Tokens that are highlighted in the sections below.
|
2015-11-14 20:45:34 +00:00
|
|
|
|
|
|
|
|
|
### <a name="general"></a> /v1/query
|
|
|
|
|
|
|
|
|
|
The general query endpoint supports the `POST` and `GET` methods.
|
|
|
|
|
|
|
|
|
|
#### POST Method
|
|
|
|
|
|
|
|
|
|
When using the `POST` method, Consul will create a new prepared query and return
|
|
|
|
|
its ID if it is created successfully.
|
|
|
|
|
|
|
|
|
|
By default, the datacenter of the agent is queried; however, the dc can be
|
|
|
|
|
provided using the "?dc=" query parameter.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
If ACLs are enabled, then the client will need to supply a token with `prepared_query`
|
|
|
|
|
write priveliges sufficient to match the service name being queried and the `Name`
|
|
|
|
|
given to the query, if any. See also the note about the `Token` field below.
|
|
|
|
|
|
2015-11-14 20:45:34 +00:00
|
|
|
|
The create operation expects a JSON request body that defines the prepared query,
|
|
|
|
|
like this example:
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
{
|
|
|
|
|
"Name": "my-query",
|
|
|
|
|
"Session": "adf4238a-882b-9ddc-4a9d-5b6758e4159e",
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
"Token": "",
|
2015-11-14 20:45:34 +00:00
|
|
|
|
"Service": {
|
|
|
|
|
"Service": "redis",
|
|
|
|
|
"Failover": {
|
|
|
|
|
"NearestN": 3,
|
|
|
|
|
"Datacenters": ["dc1", "dc2"]
|
|
|
|
|
},
|
|
|
|
|
"OnlyPassing": false,
|
|
|
|
|
"Tags": ["master", "!experimental"]
|
|
|
|
|
},
|
|
|
|
|
"DNS": {
|
|
|
|
|
"TTL": "10s"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Only the `Service` field inside the `Service` structure is mandatory, all other
|
|
|
|
|
fields will take their default values if they are not included.
|
|
|
|
|
|
|
|
|
|
`Name` is an optional friendly name that can be used to execute a query instead
|
|
|
|
|
of using its ID.
|
|
|
|
|
|
|
|
|
|
`Session` provides a way to automatically remove a prepared query when the
|
|
|
|
|
given session is invalidated. This is optional, and if not given the prepared
|
|
|
|
|
query must be manually removed when no longer needed.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
<a name="token"></a>
|
|
|
|
|
`Token` is a captured ACL Token to use when the query is executed. This allows
|
|
|
|
|
queries to be executed by clients with lesser or even no ACL Token, so this
|
|
|
|
|
should be used with care. The token itself can only be seen by clients with a
|
|
|
|
|
management token. If the `Token` field is left blank, the client's ACL Token
|
|
|
|
|
will be used to determine if they have access to the service being queried. If
|
|
|
|
|
the client does not supply an ACL Token, the anonymous token will be used.
|
|
|
|
|
|
|
|
|
|
Note that Consul version 0.6.3 and earlier would automatically capture the ACL
|
|
|
|
|
Token for use in the future when prepared queries were executed and would
|
|
|
|
|
execute with the same privileges as the definer of the prepared query. Older
|
|
|
|
|
queries wishing to obtain the new behavior will need to be updated to remove
|
|
|
|
|
their captured `Token` field. Capturing ACL Tokens is analogous to
|
|
|
|
|
[PostgreSQL’s SECURITY DEFINER](http://www.postgresql.org/docs/current/static/sql-createfunction.html)
|
|
|
|
|
attribute which can be set on functions. This change in effect moves Consul
|
|
|
|
|
from using `SECURITY DEFINER` by default to `SECURITY INVOKER` by default for
|
|
|
|
|
new Prepared Queries.
|
|
|
|
|
|
2015-11-14 20:45:34 +00:00
|
|
|
|
The set of fields inside the `Service` structure define the query's behavior.
|
|
|
|
|
|
|
|
|
|
`Service` is the name of the service to query. This is required.
|
|
|
|
|
|
|
|
|
|
`Failover` contains two fields, both of which are optional, and determine what
|
|
|
|
|
happens if no healthy nodes are available in the local datacenter when the query
|
|
|
|
|
is executed. It allows the use of nodes in other datacenters with very little
|
|
|
|
|
configuration.
|
|
|
|
|
|
|
|
|
|
If `NearestN` is set to a value greater than zero, then the query
|
|
|
|
|
will be forwarded to up to `NearestN` other datacenters based on their estimated
|
|
|
|
|
network round trip time using [Network Coordinates](/docs/internals/coordinates.html)
|
|
|
|
|
from the WAN gossip pool. The median round trip time from the server handling the
|
|
|
|
|
query to the servers in the remote datacenter is used to determine the priority.
|
|
|
|
|
The default value is zero. All Consul servers must be running version 0.6.0 or
|
|
|
|
|
above in order for this feature to work correctly. If any servers are not running
|
|
|
|
|
the required version of Consul they will be considered last since they won't have
|
|
|
|
|
any available network coordinate information.
|
|
|
|
|
|
|
|
|
|
`Datacenters` contains a fixed list of remote datacenters to forward the query
|
|
|
|
|
to if there are no healthy nodes in the local datacenter. Datacenters are queried
|
|
|
|
|
in the order given in the list. If this option is combined with `NearestN`, then
|
|
|
|
|
the `NearestN` queries will be performed first, followed by the list given by
|
|
|
|
|
`Datacenters`. A given datacenter will only be queried one time during a failover,
|
|
|
|
|
even if it is selected by both `NearestN` and is listed in `Datacenters`. The
|
|
|
|
|
default value is an empty list.
|
|
|
|
|
|
|
|
|
|
`OnlyPassing` controls the behavior of the query's health check filtering. If
|
|
|
|
|
this is set to false, the results will include nodes with checks in the passing
|
|
|
|
|
as well as the warning states. If this is set to true, only nodes with checks
|
|
|
|
|
in the passing state will be returned. The default value is false.
|
|
|
|
|
|
|
|
|
|
`Tags` provides a list of service tags to filter the query results. For a service
|
|
|
|
|
to pass the tag filter it must have *all* of the required tags, and *none* of the
|
|
|
|
|
excluded tags (prefixed with `!`). The default value is an empty list, which does
|
|
|
|
|
no tag filtering.
|
|
|
|
|
|
|
|
|
|
`TTL` in the `DNS` structure is a duration string that can use "s" as a
|
|
|
|
|
suffix for seconds. It controls how the TTL is set when query results are served
|
|
|
|
|
over DNS. If this isn't specified, then the Consul agent configuration for the given
|
|
|
|
|
service will be used (see [DNS Caching](/docs/guides/dns-cache.html)). If this is
|
|
|
|
|
specified, it will take precedence over any Consul agent-specific configuration.
|
|
|
|
|
If no TTL is specified here or at the Consul agent level, then the TTL will
|
|
|
|
|
default to 0.
|
|
|
|
|
|
|
|
|
|
The return code is 200 on success and the ID of the created query is returned in
|
|
|
|
|
a JSON body:
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
{
|
|
|
|
|
"ID": "8f246b77-f3e1-ff88-5b48-8ec93abf3e05"
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### GET Method
|
|
|
|
|
|
|
|
|
|
When using the GET method, Consul will provide a listing of all prepared queries.
|
|
|
|
|
|
|
|
|
|
By default, the datacenter of the agent is queried; however, the dc can be
|
|
|
|
|
provided using the "?dc=" query parameter. This endpoint supports blocking
|
|
|
|
|
queries and all consistency modes.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
If ACLs are enabled, then the client will only see prepared queries for which their
|
|
|
|
|
token has `prepared_query` read privileges. A management token will be able to see all
|
|
|
|
|
prepared queries. Tokens will be displayed as `<hidden>` unless a management token is
|
|
|
|
|
used.
|
2015-11-14 20:45:34 +00:00
|
|
|
|
|
|
|
|
|
This returns a JSON list of prepared queries, which looks like:
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"ID": "8f246b77-f3e1-ff88-5b48-8ec93abf3e05",
|
|
|
|
|
"Name": "my-query",
|
|
|
|
|
"Session": "adf4238a-882b-9ddc-4a9d-5b6758e4159e",
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
"Token": "<hidden>",
|
2015-11-14 20:45:34 +00:00
|
|
|
|
"Service": {
|
|
|
|
|
"Service": "redis",
|
|
|
|
|
"Failover": {
|
|
|
|
|
"NearestN": 3,
|
|
|
|
|
"Datacenters": ["dc1", "dc2"]
|
|
|
|
|
},
|
|
|
|
|
"OnlyPassing": false,
|
|
|
|
|
"Tags": ["master", "!experimental"]
|
|
|
|
|
},
|
|
|
|
|
"DNS": {
|
|
|
|
|
"TTL": "10s"
|
|
|
|
|
},
|
|
|
|
|
"RaftIndex": {
|
|
|
|
|
"CreateIndex": 23,
|
|
|
|
|
"ModifyIndex": 42
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### <a name="specific"></a> /v1/query/\<query\>
|
|
|
|
|
|
|
|
|
|
The query-specific endpoint supports the `GET`, `PUT`, and `DELETE` methods. The
|
|
|
|
|
\<query\> argument is the ID of an existing prepared query.
|
|
|
|
|
|
|
|
|
|
#### PUT Method
|
|
|
|
|
|
|
|
|
|
The `PUT` method allows an existing prepared query to be updated.
|
|
|
|
|
|
|
|
|
|
By default, the datacenter of the agent is queried; however, the dc can be
|
|
|
|
|
provided using the "?dc=" query parameter.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
If ACLs are enabled, then the client will need to supply a token with `prepared_query`
|
|
|
|
|
write priveliges sufficient to match the service name being queried and the `Name`
|
|
|
|
|
given to the query, if any.
|
2015-11-14 20:45:34 +00:00
|
|
|
|
|
|
|
|
|
The body is the same as is used to create a prepared query, as described above.
|
|
|
|
|
|
|
|
|
|
If the API call succeeds, a 200 status code is returned.
|
|
|
|
|
|
|
|
|
|
#### GET Method
|
|
|
|
|
|
|
|
|
|
The `GET` method allows an existing prepared query to be fetched.
|
|
|
|
|
|
|
|
|
|
By default, the datacenter of the agent is queried; however, the dc can be
|
|
|
|
|
provided using the "?dc=" query parameter. This endpoint supports blocking
|
|
|
|
|
queries and all consistency modes.
|
|
|
|
|
|
|
|
|
|
The returned response is the same as the list of prepared queries above,
|
|
|
|
|
only with a single item present. If the query does not exist then a 404
|
|
|
|
|
status code will be returned.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
If ACLs are enabled, then the client will only see prepared queries for which their
|
|
|
|
|
token has `prepared_query` read privileges. A management token will be able to see all
|
|
|
|
|
prepared queries. Tokens will be displayed as `<hidden>` unless a management token is
|
|
|
|
|
used.
|
2015-11-14 20:45:34 +00:00
|
|
|
|
|
|
|
|
|
#### DELETE Method
|
|
|
|
|
|
|
|
|
|
The `DELETE` method is used to delete a prepared query.
|
|
|
|
|
|
|
|
|
|
By default, the datacenter of the agent is queried; however, the dc can be
|
|
|
|
|
provided using the "?dc=" query parameter.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
If ACLs are enabled, then the client will need to supply a token with `prepared_query`
|
|
|
|
|
write priveliges sufficient to match the service name being queried and the `Name`
|
|
|
|
|
given to the query, if any.
|
2015-11-14 20:45:34 +00:00
|
|
|
|
|
|
|
|
|
No body is required as part of this request.
|
|
|
|
|
|
|
|
|
|
If the API call succeeds, a 200 status code is returned.
|
|
|
|
|
|
|
|
|
|
### <a name="execute"></a> /v1/query/\<query or name\>/execute
|
|
|
|
|
|
|
|
|
|
The query execute endpoint supports only the `GET` method and is used to
|
|
|
|
|
execute a prepared query. The \<query or name\> argument is the ID or name
|
|
|
|
|
of an existing prepared query.
|
|
|
|
|
|
|
|
|
|
By default, the datacenter of the agent is queried; however, the dc can be
|
|
|
|
|
provided using the "?dc=" query parameter. This endpoint does not support
|
|
|
|
|
blocking queries, but it does support all consistency modes.
|
|
|
|
|
|
|
|
|
|
Adding the optional "?near=" parameter with a node name will sort the resulting
|
|
|
|
|
list in ascending order based on the estimated round trip time from that node.
|
|
|
|
|
Passing "?near=_agent" will use the agent's node for the sort. If this is not
|
|
|
|
|
present, then the nodes will be shuffled randomly and will be in a different
|
|
|
|
|
order each time the query is executed.
|
|
|
|
|
|
|
|
|
|
An optional "?limit=" parameter can be used to limit the size of the list to
|
|
|
|
|
the given number of nodes. This is applied after any sorting or shuffling.
|
|
|
|
|
|
Creates new "prepared-query" ACL type and new token capture behavior.
Prior to this change, prepared queries had the following behavior for
ACLs, which will need to change to support templates:
1. A management token, or a token with read access to the service being
queried needed to be provided in order to create a prepared query.
2. The token used to create the prepared query was stored with the query
in the state store and used to execute the query.
3. A management token, or the token used to create the query needed to be
supplied to perform and CRUD operations on an existing prepared query.
This was pretty subtle and complicated behavior, and won't work for
templates since the service name is computed at execution time. To solve
this, we introduce a new "prepared-query" ACL type, where the prefix
applies to the query name for static prepared query types and to the
prefix for template prepared query types.
With this change, the new behavior is:
1. A management token, or a token with "prepared-query" write access to
the query name or (soon) the given template prefix is required to do
any CRUD operations on a prepared query, or to list prepared queries
(the list is filtered by this ACL).
2. You will no longer need a management token to list prepared queries,
but you will only be able to see prepared queries that you have access
to (you get an empty list instead of permission denied).
3. When listing or getting a query, because it was easy to capture
management tokens given the past behavior, this will always blank out
the "Token" field (replacing the contents as <hidden>) for all tokens
unless a management token is supplied. Going forward, we should
discourage people from binding tokens for execution unless strictly
necessary.
4. No token will be captured by default when a prepared query is created.
If the user wishes to supply an execution token then can pass it in via
the "Token" field in the prepared query definition. Otherwise, this
field will default to empty.
5. At execution time, we will use the captured token if it exists with the
prepared query definition, otherwise we will use the token that's passed
in with the request, just like we do for other RPCs (or you can use the
agent's configured token for DNS).
6. Prepared queries with no name (accessible only by ID) will not require
ACLs to create or modify (execution time will depend on the service ACL
configuration). Our argument here is that these are designed to be
ephemeral and the IDs are as good as an ACL. Management tokens will be
able to list all of these.
These changes enable templates, but also enable delegation of authority to
manage the prepared query namespace.
2016-02-23 08:12:58 +00:00
|
|
|
|
If an ACL Token was bound to the query when it was defined then it will be used
|
|
|
|
|
when executing the request. Otherwise, the client's supplied ACL Token will be
|
|
|
|
|
used.
|
2015-11-14 20:45:34 +00:00
|
|
|
|
|
|
|
|
|
No body is required as part of this request.
|
|
|
|
|
|
|
|
|
|
If the query does not exist then a 404 status code will be returned. Otherwise,
|
|
|
|
|
a JSON body will be returned like this:
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
{
|
|
|
|
|
"Service": "redis",
|
|
|
|
|
"Nodes": [
|
|
|
|
|
{
|
|
|
|
|
"Node": {
|
|
|
|
|
"Node": "foobar",
|
|
|
|
|
"Address": "10.1.10.12"
|
|
|
|
|
},
|
|
|
|
|
"Service": {
|
|
|
|
|
"ID": "redis",
|
|
|
|
|
"Service": "redis",
|
|
|
|
|
"Tags": null,
|
|
|
|
|
"Port": 8000
|
|
|
|
|
},
|
|
|
|
|
"Checks": [
|
|
|
|
|
{
|
|
|
|
|
"Node": "foobar",
|
|
|
|
|
"CheckID": "service:redis",
|
|
|
|
|
"Name": "Service 'redis' check",
|
|
|
|
|
"Status": "passing",
|
|
|
|
|
"Notes": "",
|
|
|
|
|
"Output": "",
|
|
|
|
|
"ServiceID": "redis",
|
|
|
|
|
"ServiceName": "redis"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"Node": "foobar",
|
|
|
|
|
"CheckID": "serfHealth",
|
|
|
|
|
"Name": "Serf Health Status",
|
|
|
|
|
"Status": "passing",
|
|
|
|
|
"Notes": "",
|
|
|
|
|
"Output": "",
|
|
|
|
|
"ServiceID": "",
|
|
|
|
|
"ServiceName": ""
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"DNS": {
|
|
|
|
|
"TTL": "10s"
|
|
|
|
|
},
|
|
|
|
|
"Datacenter": "dc3",
|
|
|
|
|
"Failovers": 2
|
2016-01-29 09:25:23 +00:00
|
|
|
|
}]
|
2015-11-14 20:45:34 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The `Nodes` section contains the list of healthy nodes providing the given
|
|
|
|
|
service, as specified by the constraints of the prepared query.
|
|
|
|
|
|
|
|
|
|
`Service` has the service name that the query was selecting. This is useful
|
|
|
|
|
for context in case an empty list of nodes is returned.
|
|
|
|
|
|
|
|
|
|
`DNS` has information used when serving the results over DNS. This is just a
|
|
|
|
|
copy of the structure given when the prepared query was created.
|
|
|
|
|
|
|
|
|
|
`Datacenter` has the datacenter that ultimately provided the list of nodes
|
2015-11-21 05:44:24 +00:00
|
|
|
|
and `Failovers` has the number of remote datacenters that were queried
|
2015-11-14 20:45:34 +00:00
|
|
|
|
while executing the query. This provides some insight into where the data
|
|
|
|
|
came from. This will be zero during non-failover operations where there
|
|
|
|
|
were healthy nodes found in the local datacenter.
|