2013-10-13 10:46:56 -04:00
[[api-conventions]]
2019-07-19 14:35:36 -04:00
== API conventions
2013-10-13 10:46:56 -04:00
2017-11-29 03:44:25 -05:00
The *Elasticsearch* REST APIs are exposed using <<modules-http,JSON over HTTP>>.
2013-10-13 10:46:56 -04:00
The conventions listed in this chapter can be applied throughout the REST
API, unless otherwise specified.
* <<multi-index>>
2015-07-10 18:16:33 -04:00
* <<date-math-index-names>>
2013-10-13 10:46:56 -04:00
* <<common-options>>
2016-12-12 08:56:52 -05:00
* <<url-access-control>>
2013-10-13 10:46:56 -04:00
[[multi-index]]
2020-03-03 13:13:21 -05:00
=== Multiple indices
2013-10-13 10:46:56 -04:00
2013-11-08 18:34:23 -05:00
Most APIs that refer to an `index` parameter support execution across multiple indices,
2013-10-13 10:46:56 -04:00
using simple `test1,test2,test3` notation (or `_all` for all indices). It also
2019-02-20 04:37:15 -05:00
supports wildcards, for example: `test*` or `*test` or `te*t` or `*test*`, and the
2017-06-19 09:19:17 -04:00
ability to "exclude" (`-`), for example: `test*,-test3`.
2013-10-13 10:46:56 -04:00
2019-08-02 14:09:46 -04:00
All multi index APIs support the following url query string parameters:
2014-01-15 10:13:38 -05:00
2019-08-21 09:42:10 -04:00
include::{docdir}/rest-api/common-parms.asciidoc[tag=index-ignore-unavailable]
include::{docdir}/rest-api/common-parms.asciidoc[tag=allow-no-indices]
include::{docdir}/rest-api/common-parms.asciidoc[tag=expand-wildcards]
2014-01-15 10:13:38 -05:00
2019-02-20 04:37:15 -05:00
The defaults settings for the above parameters depend on the API being used.
2013-10-13 10:46:56 -04:00
2020-03-03 13:13:21 -05:00
Some multi index APIs also support the following url query string parameter:
include::{docdir}/rest-api/common-parms.asciidoc[tag=ignore_throttled]
2013-10-13 10:46:56 -04:00
NOTE: Single index APIs such as the <<docs>> and the
<<indices-aliases,single-index `alias` APIs>> do not support multiple indices.
2015-07-10 18:16:33 -04:00
[[date-math-index-names]]
2019-07-19 14:35:36 -04:00
=== Date math support in index names
2015-07-10 18:16:33 -04:00
Date math index name resolution enables you to search a range of time-series indices, rather
than searching all of your time-series indices and filtering the results or maintaining aliases.
Limiting the number of indices that are searched reduces the load on the cluster and improves
execution performance. For example, if you are searching for errors in your
daily logs, you can use a date math name template to restrict the search to the past
two days.
2019-02-20 04:37:15 -05:00
Almost all APIs that have an `index` parameter support date math in the `index` parameter
2015-07-10 18:16:33 -04:00
value.
A date math index name takes the following form:
[source,txt]
----------------------------------------------------------------------
<static_name{date_math_expr{date_format|time_zone}}>
----------------------------------------------------------------------
Where:
[horizontal]
`static_name`:: is the static text part of the name
`date_math_expr`:: is a dynamic date math expression that computes the date dynamically
2019-03-12 04:19:44 -04:00
`date_format`:: is the optional format in which the computed date should be rendered. Defaults to `yyyy.MM.dd`. Format should be compatible with java-time https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html
2019-02-20 04:37:15 -05:00
`time_zone`:: is the optional time zone. Defaults to `utc`.
2015-07-10 18:16:33 -04:00
2019-06-03 16:26:01 -04:00
NOTE: Pay attention to the usage of small vs capital letters used in the `date_format`. For example:
`mm` denotes minute of hour, while `MM` denotes month of year. Similarly `hh` denotes the hour in the
`1-12` range in combination with `AM/PM`, while `HH` denotes the hour in the `0-23` 24-hour range.
2019-01-22 06:04:29 -05:00
Date math expressions are resolved locale-independent. Consequently, it is not possible to use any other
calendars than the Gregorian calendar.
2016-11-10 06:23:19 -05:00
You must enclose date math index name expressions within angle brackets, and
all special characters should be URI encoded. For example:
2015-07-10 18:16:33 -04:00
2019-09-09 13:38:14 -04:00
[source,console]
2015-07-10 18:16:33 -04:00
----------------------------------------------------------------------
2016-11-10 06:23:19 -05:00
# GET /<logstash-{now/d}>/_search
GET /%3Clogstash-%7Bnow%2Fd%7D%3E/_search
2016-09-20 00:12:17 -04:00
{
2015-07-10 18:16:33 -04:00
"query" : {
2016-09-20 00:12:17 -04:00
"match": {
"test": "data"
}
2015-07-10 18:16:33 -04:00
}
}
----------------------------------------------------------------------
2016-09-20 00:12:17 -04:00
// TEST[s/^/PUT logstash-2016.09.20\n/]
2020-03-20 09:04:33 -04:00
// TEST[s/now/2016.09.20%7C%7C/]
2016-10-06 09:44:42 -04:00
[NOTE]
.Percent encoding of date math characters
======================================================
2016-11-10 06:23:19 -05:00
The special characters used for date rounding must be URI encoded as follows:
2016-10-06 09:44:42 -04:00
2016-10-07 10:33:22 -04:00
[horizontal]
2016-10-06 09:44:42 -04:00
`<`:: `%3C`
`>`:: `%3E`
`/`:: `%2F`
`{`:: `%7B`
`}`:: `%7D`
`|`:: `%7C`
`+`:: `%2B`
`:`:: `%3A`
2017-01-10 11:59:14 -05:00
`,`:: `%2C`
2016-10-06 09:44:42 -04:00
======================================================
2016-01-27 05:56:29 -05:00
2015-07-10 18:16:33 -04:00
The following example shows different forms of date math index names and the final index names
2019-04-25 13:04:27 -04:00
they resolve to given the current time is 22nd March 2024 noon utc.
2015-07-10 18:16:33 -04:00
[options="header"]
|======
2016-09-20 00:12:17 -04:00
| Expression |Resolves to
| `<logstash-{now/d}>` | `logstash-2024.03.22`
| `<logstash-{now/M}>` | `logstash-2024.03.01`
2019-03-12 04:19:44 -04:00
| `<logstash-{now/M{yyyy.MM}}>` | `logstash-2024.03`
| `<logstash-{now/M-1M{yyyy.MM}}>` | `logstash-2024.02`
| `<logstash-{now/d{yyyy.MM.dd\|+12:00}}>` | `logstash-2024.03.23`
2015-07-10 18:16:33 -04:00
|======
To use the characters `{` and `}` in the static part of an index name template, escape them
with a backslash `\`, for example:
* `<elastic\\{ON\\}-{now/M}>` resolves to `elastic{ON}-2024.03.01`
The following example shows a search request that searches the Logstash indices for the past
three days, assuming the indices use the default Logstash index name format,
2019-03-12 04:19:44 -04:00
`logstash-yyyy.MM.dd`.
2015-07-10 18:16:33 -04:00
2019-09-09 13:38:14 -04:00
[source,console]
2015-07-10 18:16:33 -04:00
----------------------------------------------------------------------
2016-11-10 06:23:19 -05:00
# GET /<logstash-{now/d-2d}>,<logstash-{now/d-1d}>,<logstash-{now/d}>/_search
GET /%3Clogstash-%7Bnow%2Fd-2d%7D%3E%2C%3Clogstash-%7Bnow%2Fd-1d%7D%3E%2C%3Clogstash-%7Bnow%2Fd%7D%3E/_search
2016-09-20 00:12:17 -04:00
{
2015-07-10 18:16:33 -04:00
"query" : {
2016-09-20 00:12:17 -04:00
"match": {
"test": "data"
}
2015-07-10 18:16:33 -04:00
}
}
----------------------------------------------------------------------
2016-09-20 00:12:17 -04:00
// TEST[s/^/PUT logstash-2016.09.20\nPUT logstash-2016.09.19\nPUT logstash-2016.09.18\n/]
2020-03-20 09:04:33 -04:00
// TEST[s/now/2016.09.20%7C%7C/]
2015-07-10 18:16:33 -04:00
2013-10-13 10:46:56 -04:00
[[common-options]]
2019-07-19 14:35:36 -04:00
=== Common options
2013-10-13 10:46:56 -04:00
The following options can be applied to all of the REST APIs.
2013-08-28 19:24:34 -04:00
2013-10-13 08:13:37 -04:00
[float]
2019-07-19 14:35:36 -04:00
==== Pretty Results
2013-08-28 19:24:34 -04:00
When appending `?pretty=true` to any request made, the JSON returned
will be pretty formatted (use it for debugging only!). Another option is
2014-12-02 12:55:14 -05:00
to set `?format=yaml` which will cause the result to be returned in the
2013-08-28 19:24:34 -04:00
(sometimes) more readable yaml format.
2013-09-04 15:11:54 -04:00
2013-10-13 08:13:37 -04:00
[float]
2019-07-19 14:35:36 -04:00
==== Human readable output
2013-09-04 15:11:54 -04:00
Statistics are returned in a format suitable for humans
2019-02-20 04:37:15 -05:00
(e.g. `"exists_time": "1h"` or `"size": "1kb"`) and for computers
(e.g. `"exists_time_in_millis": 3600000` or `"size_in_bytes": 1024`).
2013-09-04 15:11:54 -04:00
The human readable values can be turned off by adding `?human=false`
to the query string. This makes sense when the stats results are
being consumed by a monitoring tool, rather than intended for human
consumption. The default for the `human` flag is
2014-09-26 15:04:42 -04:00
`false`.
2013-09-04 15:11:54 -04:00
2015-08-06 11:24:29 -04:00
[[date-math]]
2015-08-06 11:49:30 -04:00
[float]
2019-07-19 14:35:36 -04:00
==== Date Math
2015-08-06 11:24:29 -04:00
Most parameters which accept a formatted date value -- such as `gt` and `lt`
2019-02-20 04:37:15 -05:00
in <<query-dsl-range-query,`range` queries>>, or `from` and `to`
2015-08-06 11:24:29 -04:00
in <<search-aggregations-bucket-daterange-aggregation,`daterange`
aggregations>> -- understand date maths.
The expression starts with an anchor date, which can either be `now`, or a
date string ending with `||`. This anchor date can optionally be followed by
one or more maths expressions:
2019-02-20 04:37:15 -05:00
* `+1h`: Add one hour
* `-1d`: Subtract one day
* `/d`: Round down to the nearest day
2015-08-06 11:24:29 -04:00
2017-08-15 08:01:16 -04:00
The supported time units differ from those supported by <<time-units, time units>> for durations.
2016-06-29 17:02:15 -04:00
The supported units are:
[horizontal]
2019-02-20 04:37:15 -05:00
`y`:: Years
`M`:: Months
`w`:: Weeks
`d`:: Days
`h`:: Hours
`H`:: Hours
`m`:: Minutes
`s`:: Seconds
2015-08-06 11:24:29 -04:00
2017-12-07 08:06:58 -05:00
Assuming `now` is `2001-01-01 12:00:00`, some examples are:
2015-08-06 11:24:29 -04:00
2019-02-20 04:37:15 -05:00
[horizontal]
2017-12-07 08:06:58 -05:00
`now+1h`:: `now` in milliseconds plus one hour. Resolves to: `2001-01-01 13:00:00`
2018-01-08 10:55:48 -05:00
`now-1h`:: `now` in milliseconds minus one hour. Resolves to: `2001-01-01 11:00:00`
2019-02-20 04:37:15 -05:00
`now-1h/d`:: `now` in milliseconds minus one hour, rounded down to UTC 00:00. Resolves to: `2001-01-01 00:00:00`
2018-03-06 09:45:43 -05:00
`2001.02.01\|\|+1M/d`:: `2001-02-01` in milliseconds plus one month. Resolves to: `2001-03-01 00:00:00`
2015-08-06 11:24:29 -04:00
2015-05-05 08:11:05 -04:00
[float]
2016-10-18 11:56:18 -04:00
[[common-options-response-filtering]]
2019-07-19 14:35:36 -04:00
==== Response Filtering
2015-05-05 08:11:05 -04:00
All REST APIs accept a `filter_path` parameter that can be used to reduce
2017-11-29 03:44:25 -05:00
the response returned by Elasticsearch. This parameter takes a comma
2015-05-05 08:11:05 -04:00
separated list of filters expressed with the dot notation:
2019-09-09 13:38:14 -04:00
[source,console]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
GET /_search?q=elasticsearch&filter_path=took,hits.hits._id,hits.hits._score
--------------------------------------------------
// TEST[setup:twitter]
Responds:
2019-09-06 16:09:09 -04:00
[source,console-result]
2015-05-05 08:11:05 -04:00
--------------------------------------------------
{
"took" : 3,
"hits" : {
"hits" : [
{
2016-09-20 00:12:17 -04:00
"_id" : "0",
"_score" : 1.6375021
2015-05-05 08:11:05 -04:00
}
]
}
}
--------------------------------------------------
2016-09-20 00:12:17 -04:00
// TESTRESPONSE[s/"took" : 3/"took" : $body.took/]
2016-09-20 13:53:07 -04:00
// TESTRESPONSE[s/1.6375021/$body.hits.hits.0._score/]
2015-05-05 08:11:05 -04:00
It also supports the `*` wildcard character to match any field or part
of a field's name:
2019-09-09 13:38:14 -04:00
[source,console]
2015-05-05 08:11:05 -04:00
--------------------------------------------------
2016-09-20 00:12:17 -04:00
GET /_cluster/state?filter_path=metadata.indices.*.stat*
--------------------------------------------------
// TEST[s/^/PUT twitter\n/]
Responds:
2019-09-06 09:22:08 -04:00
[source,console-result]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
2015-05-05 08:11:05 -04:00
{
2016-09-20 00:12:17 -04:00
"metadata" : {
"indices" : {
"twitter": {"state": "open"}
2015-05-05 08:11:05 -04:00
}
}
}
--------------------------------------------------
And the `**` wildcard can be used to include fields without knowing the
exact path of the field. For example, we can return the Lucene version
of every segment with this request:
2019-09-09 13:38:14 -04:00
[source,console]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
GET /_cluster/state?filter_path=routing_table.indices.**.state
--------------------------------------------------
// TEST[s/^/PUT twitter\n/]
Responds:
2019-09-06 09:22:08 -04:00
[source,console-result]
2015-05-05 08:11:05 -04:00
--------------------------------------------------
{
2016-09-20 00:12:17 -04:00
"routing_table": {
"indices": {
"twitter": {
"shards": {
2018-05-14 12:22:35 -04:00
"0": [{"state": "STARTED"}, {"state": "UNASSIGNED"}]
2016-09-20 00:12:17 -04:00
}
2015-05-05 08:11:05 -04:00
}
}
}
}
--------------------------------------------------
2016-08-08 05:43:56 -04:00
It is also possible to exclude one or more fields by prefixing the filter with the char `-`:
2019-09-09 13:38:14 -04:00
[source,console]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
GET /_count?filter_path=-_shards
--------------------------------------------------
// TEST[setup:twitter]
Responds:
2019-09-06 09:22:08 -04:00
[source,console-result]
2016-08-08 05:43:56 -04:00
--------------------------------------------------
{
2016-09-20 00:12:17 -04:00
"count" : 5
2016-08-08 05:43:56 -04:00
}
--------------------------------------------------
And for more control, both inclusive and exclusive filters can be combined in the same expression. In
this case, the exclusive filters will be applied first and the result will be filtered again using the
inclusive filters:
2019-09-09 13:38:14 -04:00
[source,console]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
GET /_cluster/state?filter_path=metadata.indices.*.state,-metadata.indices.logstash-*
--------------------------------------------------
// TEST[s/^/PUT index-1\nPUT index-2\nPUT index-3\nPUT logstash-2016.01\n/]
Responds:
2019-09-06 09:22:08 -04:00
[source,console-result]
2016-08-08 05:43:56 -04:00
--------------------------------------------------
{
"metadata" : {
"indices" : {
2016-09-20 00:12:17 -04:00
"index-1" : {"state" : "open"},
"index-2" : {"state" : "open"},
"index-3" : {"state" : "open"}
2016-08-08 05:43:56 -04:00
}
}
2016-09-20 00:12:17 -04:00
}
2016-08-08 05:43:56 -04:00
--------------------------------------------------
2017-11-29 03:44:25 -05:00
Note that Elasticsearch sometimes returns directly the raw value of a field,
2015-08-06 11:24:29 -04:00
like the `_source` field. If you want to filter `_source` fields, you should
2015-05-05 08:11:05 -04:00
consider combining the already existing `_source` parameter (see
<<get-source-filtering,Get API>> for more details) with the `filter_path`
2015-08-06 11:24:29 -04:00
parameter like this:
2015-05-05 08:11:05 -04:00
2019-09-09 13:38:14 -04:00
[source,console]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
POST /library/book?refresh
{"title": "Book #1", "rating": 200.1}
POST /library/book?refresh
{"title": "Book #2", "rating": 1.7}
POST /library/book?refresh
{"title": "Book #3", "rating": 0.1}
GET /_search?filter_path=hits.hits._source&_source=title&sort=rating:desc
--------------------------------------------------
2019-09-06 09:22:08 -04:00
[source,console-result]
2015-05-05 08:11:05 -04:00
--------------------------------------------------
{
"hits" : {
"hits" : [ {
"_source":{"title":"Book #1"}
2016-09-20 00:12:17 -04:00
}, {
"_source":{"title":"Book #2"}
2015-05-05 08:11:05 -04:00
}, {
"_source":{"title":"Book #3"}
} ]
}
}
--------------------------------------------------
2014-01-06 11:50:57 -05:00
[float]
2019-07-19 14:35:36 -04:00
==== Flat Settings
2014-01-06 11:50:57 -05:00
2020-03-20 09:04:33 -04:00
The `flat_settings` flag affects rendering of the lists of settings. When the
2019-02-20 04:37:15 -05:00
`flat_settings` flag is `true`, settings are returned in a flat format:
2014-01-06 11:50:57 -05:00
2019-09-09 13:38:14 -04:00
[source,console]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
GET twitter/_settings?flat_settings=true
--------------------------------------------------
// TEST[setup:twitter]
Returns:
2019-09-06 16:09:09 -04:00
[source,console-result]
2014-01-06 11:50:57 -05:00
--------------------------------------------------
{
2016-09-20 00:12:17 -04:00
"twitter" : {
"settings": {
"index.number_of_replicas": "1",
"index.number_of_shards": "1",
"index.creation_date": "1474389951325",
"index.uuid": "n6gzFZTgS664GUfx0Xrpjw",
2016-10-03 10:52:33 -04:00
"index.version.created": ...,
"index.provided_name" : "twitter"
2016-09-20 00:12:17 -04:00
}
2014-01-06 11:50:57 -05:00
}
}
--------------------------------------------------
2016-09-20 00:12:17 -04:00
// TESTRESPONSE[s/1474389951325/$body.twitter.settings.index\\\\.creation_date/]
// TESTRESPONSE[s/n6gzFZTgS664GUfx0Xrpjw/$body.twitter.settings.index\\\\.uuid/]
2016-09-20 13:53:07 -04:00
// TESTRESPONSE[s/"index.version.created": \.\.\./"index.version.created": $body.twitter.settings.index\\\\.version\\\\.created/]
2014-01-06 11:50:57 -05:00
2019-02-20 04:37:15 -05:00
When the `flat_settings` flag is `false`, settings are returned in a more
2014-01-06 11:50:57 -05:00
human readable structured format:
2019-09-09 13:38:14 -04:00
[source,console]
2016-09-20 00:12:17 -04:00
--------------------------------------------------
GET twitter/_settings?flat_settings=false
--------------------------------------------------
// TEST[setup:twitter]
Returns:
2019-09-06 16:09:09 -04:00
[source,console-result]
2014-01-06 11:50:57 -05:00
--------------------------------------------------
{
2016-09-20 00:12:17 -04:00
"twitter" : {
"settings" : {
"index" : {
"number_of_replicas": "1",
"number_of_shards": "1",
"creation_date": "1474389951325",
"uuid": "n6gzFZTgS664GUfx0Xrpjw",
"version": {
2016-09-20 13:53:07 -04:00
"created": ...
2016-10-03 10:52:33 -04:00
},
"provided_name" : "twitter"
2014-01-06 11:50:57 -05:00
}
}
}
}
--------------------------------------------------
2016-09-20 00:12:17 -04:00
// TESTRESPONSE[s/1474389951325/$body.twitter.settings.index.creation_date/]
// TESTRESPONSE[s/n6gzFZTgS664GUfx0Xrpjw/$body.twitter.settings.index.uuid/]
2016-09-20 13:53:07 -04:00
// TESTRESPONSE[s/"created": \.\.\./"created": $body.twitter.settings.index.version.created/]
2014-01-06 11:50:57 -05:00
2019-02-20 04:37:15 -05:00
By default `flat_settings` is set to `false`.
2014-01-06 11:50:57 -05:00
2013-10-13 08:13:37 -04:00
[float]
2019-07-19 14:35:36 -04:00
==== Parameters
2013-08-28 19:24:34 -04:00
Rest parameters (when using HTTP, map to HTTP URL parameters) follow the
convention of using underscore casing.
2013-10-13 08:13:37 -04:00
[float]
2019-07-19 14:35:36 -04:00
==== Boolean Values
2013-08-28 19:24:34 -04:00
2019-02-20 04:37:15 -05:00
All REST API parameters (both request parameters and JSON body) support
2017-01-19 01:59:18 -05:00
providing boolean "false" as the value `false` and boolean "true" as the
value `true`. All other values will raise an error.
2013-08-28 19:24:34 -04:00
2013-10-13 08:13:37 -04:00
[float]
2019-07-19 14:35:36 -04:00
==== Number Values
2013-08-28 19:24:34 -04:00
All REST APIs support providing numbered parameters as `string` on top
of supporting the native JSON number types.
2014-01-02 10:45:24 -05:00
[[time-units]]
[float]
2019-07-19 14:35:36 -04:00
==== Time units
2014-01-02 10:45:24 -05:00
2016-06-29 17:02:15 -04:00
Whenever durations need to be specified, e.g. for a `timeout` parameter, the duration must specify
the unit, like `2d` for 2 days. The supported units are:
2014-01-02 10:45:24 -05:00
[horizontal]
2019-02-20 04:37:15 -05:00
`d`:: Days
`h`:: Hours
`m`:: Minutes
`s`:: Seconds
`ms`:: Milliseconds
`micros`:: Microseconds
`nanos`:: Nanoseconds
2014-01-02 10:45:24 -05:00
2016-04-15 06:24:54 -04:00
[[byte-units]]
2015-12-10 05:23:48 -05:00
[float]
2019-07-19 14:35:36 -04:00
==== Byte size units
2015-12-10 05:23:48 -05:00
2019-02-20 04:37:15 -05:00
Whenever the byte size of data needs to be specified, e.g. when setting a buffer size
2017-03-16 12:39:45 -04:00
parameter, the value must specify the unit, like `10kb` for 10 kilobytes. Note that
these units use powers of 1024, so `1kb` means 1024 bytes. The supported units are:
2015-12-10 05:23:48 -05:00
[horizontal]
`b`:: Bytes
`kb`:: Kilobytes
`mb`:: Megabytes
`gb`:: Gigabytes
`tb`:: Terabytes
`pb`:: Petabytes
2016-04-15 06:24:54 -04:00
[[size-units]]
[float]
2019-07-19 14:35:36 -04:00
==== Unit-less quantities
2016-04-15 06:24:54 -04:00
Unit-less quantities means that they don't have a "unit" like "bytes" or "Hertz" or "meter" or "long tonne".
If one of these quantities is large we'll print it out like 10m for 10,000,000 or 7k for 7,000. We'll still print 87
when we mean 87 though. These are the supported multipliers:
[horizontal]
`k`:: Kilo
`m`:: Mega
`g`:: Giga
`t`:: Tera
`p`:: Peta
2013-11-08 07:50:40 -05:00
[[distance-units]]
[float]
2019-07-19 14:35:36 -04:00
==== Distance Units
2013-11-08 07:50:40 -05:00
Wherever distances need to be specified, such as the `distance` parameter in
2019-02-20 04:37:15 -05:00
the <<query-dsl-geo-distance-query>>), the default unit is meters if none is specified.
Distances can be specified in other units, such as `"1km"` or
2013-11-08 07:50:40 -05:00
`"2mi"` (2 miles).
The full list of units is listed below:
[horizontal]
Mile:: `mi` or `miles`
Yard:: `yd` or `yards`
2013-12-18 23:52:33 -05:00
Feet:: `ft` or `feet`
2013-11-08 07:50:40 -05:00
Inch:: `in` or `inch`
Kilometer:: `km` or `kilometers`
Meter:: `m` or `meters`
Centimeter:: `cm` or `centimeters`
Millimeter:: `mm` or `millimeters`
2019-02-20 04:37:15 -05:00
Nautical mile:: `NM`, `nmi`, or `nauticalmiles`
2013-11-08 07:50:40 -05:00
2014-01-02 10:45:24 -05:00
[[fuzziness]]
[float]
2019-07-19 14:35:36 -04:00
==== Fuzziness
2014-01-02 10:45:24 -05:00
Some queries and APIs support parameters to allow inexact _fuzzy_ matching,
2016-05-11 04:28:42 -04:00
using the `fuzziness` parameter.
2014-01-02 10:45:24 -05:00
2016-05-11 04:28:42 -04:00
When querying `text` or `keyword` fields, `fuzziness` is interpreted as a
2014-01-02 10:45:24 -05:00
http://en.wikipedia.org/wiki/Levenshtein_distance[Levenshtein Edit Distance]
-- the number of one character changes that need to be made to one string to
make it the same as another string.
The `fuzziness` parameter can be specified as:
2019-02-20 04:37:15 -05:00
[horizontal]
2014-01-02 10:45:24 -05:00
`0`, `1`, `2`::
2019-02-20 04:37:15 -05:00
The maximum allowed Levenshtein Edit Distance (or number of edits)
2014-01-02 10:45:24 -05:00
`AUTO`::
+
--
2019-02-20 04:37:15 -05:00
Generates an edit distance based on the length of the term.
Low and high distance arguments may be optionally provided `AUTO:[low],[high]`. If not specified,
2017-08-21 05:00:20 -04:00
the default values are 3 and 6, equivalent to `AUTO:3,6` that make for lengths:
2014-01-02 10:45:24 -05:00
2019-02-20 04:37:15 -05:00
`0..2`:: Must match exactly
`3..5`:: One edit allowed
`>5`:: Two edits allowed
2014-01-02 10:45:24 -05:00
`AUTO` should generally be the preferred value for `fuzziness`.
2015-07-14 11:33:47 -04:00
--
2014-01-02 10:45:24 -05:00
2013-10-13 08:13:37 -04:00
[float]
2016-11-22 18:50:29 -05:00
[[common-options-error-options]]
2019-07-19 14:35:36 -04:00
==== Enabling stack traces
2013-08-28 19:24:34 -04:00
2016-11-22 18:50:29 -05:00
By default when a request returns an error Elasticsearch doesn't include the
stack trace of the error. You can enable that behavior by setting the
`error_trace` url parameter to `true`. For example, by default when you send an
invalid `size` parameter to the `_search` API:
2019-09-09 13:38:14 -04:00
[source,console]
2016-11-22 18:50:29 -05:00
----------------------------------------------------------------------
POST /twitter/_search?size=surprise_me
----------------------------------------------------------------------
2017-09-14 15:24:03 -04:00
// TEST[s/surprise_me/surprise_me&error_trace=false/ catch:bad_request]
2016-12-15 13:35:14 -05:00
// Since the test system sends error_trace=true by default we have to override
2016-11-22 18:50:29 -05:00
The response looks like:
2019-09-06 09:22:08 -04:00
[source,console-result]
2016-11-22 18:50:29 -05:00
----------------------------------------------------------------------
{
"error" : {
"root_cause" : [
{
"type" : "illegal_argument_exception",
"reason" : "Failed to parse int parameter [size] with value [surprise_me]"
}
],
"type" : "illegal_argument_exception",
"reason" : "Failed to parse int parameter [size] with value [surprise_me]",
"caused_by" : {
"type" : "number_format_exception",
"reason" : "For input string: \"surprise_me\""
}
},
"status" : 400
}
----------------------------------------------------------------------
But if you set `error_trace=true`:
2019-09-09 13:38:14 -04:00
[source,console]
2016-11-22 18:50:29 -05:00
----------------------------------------------------------------------
POST /twitter/_search?size=surprise_me&error_trace=true
----------------------------------------------------------------------
2017-09-14 15:24:03 -04:00
// TEST[catch:bad_request]
2016-11-22 18:50:29 -05:00
The response looks like:
2019-09-06 16:09:09 -04:00
[source,console-result]
2016-11-22 18:50:29 -05:00
----------------------------------------------------------------------
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "Failed to parse int parameter [size] with value [surprise_me]",
"stack_trace": "Failed to parse int parameter [size] with value [surprise_me]]; nested: IllegalArgumentException..."
}
],
"type": "illegal_argument_exception",
"reason": "Failed to parse int parameter [size] with value [surprise_me]",
"stack_trace": "java.lang.IllegalArgumentException: Failed to parse int parameter [size] with value [surprise_me]\n at org.elasticsearch.rest.RestRequest.paramAsInt(RestRequest.java:175)...",
"caused_by": {
"type": "number_format_exception",
"reason": "For input string: \"surprise_me\"",
"stack_trace": "java.lang.NumberFormatException: For input string: \"surprise_me\"\n at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)..."
}
},
"status": 400
}
----------------------------------------------------------------------
// TESTRESPONSE[s/"stack_trace": "Failed to parse int parameter.+\.\.\."/"stack_trace": $body.error.root_cause.0.stack_trace/]
// TESTRESPONSE[s/"stack_trace": "java.lang.IllegalArgum.+\.\.\."/"stack_trace": $body.error.stack_trace/]
// TESTRESPONSE[s/"stack_trace": "java.lang.Number.+\.\.\."/"stack_trace": $body.error.caused_by.stack_trace/]
2013-08-28 19:24:34 -04:00
2013-10-13 08:13:37 -04:00
[float]
2019-07-19 14:35:36 -04:00
==== Request body in query string
2013-08-28 19:24:34 -04:00
For libraries that don't accept a request body for non-POST requests,
you can pass the request body as the `source` query string parameter
2017-02-02 14:07:13 -05:00
instead. When using this method, the `source_content_type` parameter
should also be passed with a media type value that indicates the format
of the source, such as `application/json`.
[float]
2019-07-19 14:35:36 -04:00
==== Content-Type Requirements
2017-02-02 14:07:13 -05:00
2017-02-17 14:45:41 -05:00
The type of the content sent in a request body must be specified using
the `Content-Type` header. The value of this header must map to one of
the supported formats that the API supports. Most APIs support JSON,
YAML, CBOR, and SMILE. The bulk and multi-search APIs support NDJSON,
2019-02-20 04:37:15 -05:00
JSON, and SMILE; other types will result in an error response.
2017-02-02 14:07:13 -05:00
2019-02-20 04:37:15 -05:00
Additionally, when using the `source` query string parameter, the
2017-02-17 14:45:41 -05:00
content type must be specified using the `source_content_type` query
string parameter.
2013-08-28 19:24:34 -04:00
2013-11-27 11:33:09 -05:00
[[url-access-control]]
2019-07-19 14:35:36 -04:00
=== URL-based access control
2013-11-27 11:33:09 -05:00
Many users use a proxy with URL-based access control to secure access to
2013-11-27 11:54:25 -05:00
Elasticsearch indices. For <<search-multi-search,multi-search>>,
2019-02-20 04:37:15 -05:00
<<docs-multi-get,multi-get>>, and <<docs-bulk,bulk>> requests, the user has
2013-11-27 11:54:25 -05:00
the choice of specifying an index in the URL and on each individual request
within the request body. This can make URL-based access control challenging.
2013-11-27 11:33:09 -05:00
To prevent the user from overriding the index which has been specified in the
2017-02-02 14:07:13 -05:00
URL, add this setting to the `elasticsearch.yml` file:
2013-11-27 11:33:09 -05:00
rest.action.multi.allow_explicit_index: false
The default value is `true`, but when set to `false`, Elasticsearch will
reject requests that have an explicit index specified in the request body.