api-conventions.asciidoc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. [[api-conventions]]
  2. = API conventions
  3. [partintro]
  4. --
  5. The *Elasticsearch* REST APIs are exposed using <<modules-http,JSON over HTTP>>.
  6. The conventions listed in this chapter can be applied throughout the REST
  7. API, unless otherwise specified.
  8. * <<multi-index>>
  9. * <<date-math-index-names>>
  10. * <<common-options>>
  11. * <<url-access-control>>
  12. --
  13. [[multi-index]]
  14. == Multiple Indices
  15. Most APIs that refer to an `index` parameter support execution across multiple indices,
  16. using simple `test1,test2,test3` notation (or `_all` for all indices). It also
  17. supports wildcards, for example: `test*` or `*test` or `te*t` or `*test*`, and the
  18. ability to "exclude" (`-`), for example: `test*,-test3`.
  19. All multi indices APIs support the following url query string parameters:
  20. [horizontal]
  21. `ignore_unavailable`::
  22. Controls whether to ignore if any specified indices are unavailable,
  23. including indices that don't exist or closed indices. Either `true` or `false`
  24. can be specified.
  25. `allow_no_indices`::
  26. Controls whether to fail if a wildcard indices expression results in no
  27. concrete indices. Either `true` or `false` can be specified. For example if
  28. the wildcard expression `foo*` is specified and no indices are available that
  29. start with `foo`, then depending on this setting the request will fail. This
  30. setting is also applicable when `_all`, `*`, or no index has been specified. This
  31. settings also applies for aliases, in case an alias points to a closed index.
  32. `expand_wildcards`::
  33. Controls what kind of concrete indices that wildcard indices expressions can expand
  34. to. If `open` is specified then the wildcard expression is expanded to only
  35. open indices. If `closed` is specified then the wildcard expression is
  36. expanded only to closed indices. Also both values (`open,closed`) can be
  37. specified to expand to all indices.
  38. +
  39. If `none` is specified then wildcard expansion will be disabled. If `all`
  40. is specified, wildcard expressions will expand to all indices (this is equivalent
  41. to specifying `open,closed`).
  42. The defaults settings for the above parameters depend on the API being used.
  43. NOTE: Single index APIs such as the <<docs>> and the
  44. <<indices-aliases,single-index `alias` APIs>> do not support multiple indices.
  45. [[date-math-index-names]]
  46. == Date math support in index names
  47. Date math index name resolution enables you to search a range of time-series indices, rather
  48. than searching all of your time-series indices and filtering the results or maintaining aliases.
  49. Limiting the number of indices that are searched reduces the load on the cluster and improves
  50. execution performance. For example, if you are searching for errors in your
  51. daily logs, you can use a date math name template to restrict the search to the past
  52. two days.
  53. Almost all APIs that have an `index` parameter support date math in the `index` parameter
  54. value.
  55. A date math index name takes the following form:
  56. [source,txt]
  57. ----------------------------------------------------------------------
  58. <static_name{date_math_expr{date_format|time_zone}}>
  59. ----------------------------------------------------------------------
  60. Where:
  61. [horizontal]
  62. `static_name`:: is the static text part of the name
  63. `date_math_expr`:: is a dynamic date math expression that computes the date dynamically
  64. `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
  65. `time_zone`:: is the optional time zone. Defaults to `utc`.
  66. NOTE: Pay attention to the usage of small vs capital letters used in the `date_format`. For example:
  67. `mm` denotes minute of hour, while `MM` denotes month of year. Similarly `hh` denotes the hour in the
  68. `1-12` range in combination with `AM/PM`, while `HH` denotes the hour in the `0-23` 24-hour range.
  69. Date math expressions are resolved locale-independent. Consequently, it is not possible to use any other
  70. calendars than the Gregorian calendar.
  71. You must enclose date math index name expressions within angle brackets, and
  72. all special characters should be URI encoded. For example:
  73. [source,js]
  74. ----------------------------------------------------------------------
  75. # GET /<logstash-{now/d}>/_search
  76. GET /%3Clogstash-%7Bnow%2Fd%7D%3E/_search
  77. {
  78. "query" : {
  79. "match": {
  80. "test": "data"
  81. }
  82. }
  83. }
  84. ----------------------------------------------------------------------
  85. // CONSOLE
  86. // TEST[s/^/PUT logstash-2016.09.20\n/]
  87. // TEST[s/now/2016.09.20||/]
  88. [NOTE]
  89. .Percent encoding of date math characters
  90. ======================================================
  91. The special characters used for date rounding must be URI encoded as follows:
  92. [horizontal]
  93. `<`:: `%3C`
  94. `>`:: `%3E`
  95. `/`:: `%2F`
  96. `{`:: `%7B`
  97. `}`:: `%7D`
  98. `|`:: `%7C`
  99. `+`:: `%2B`
  100. `:`:: `%3A`
  101. `,`:: `%2C`
  102. ======================================================
  103. The following example shows different forms of date math index names and the final index names
  104. they resolve to given the current time is 22nd March 2024 noon utc.
  105. [options="header"]
  106. |======
  107. | Expression |Resolves to
  108. | `<logstash-{now/d}>` | `logstash-2024.03.22`
  109. | `<logstash-{now/M}>` | `logstash-2024.03.01`
  110. | `<logstash-{now/M{yyyy.MM}}>` | `logstash-2024.03`
  111. | `<logstash-{now/M-1M{yyyy.MM}}>` | `logstash-2024.02`
  112. | `<logstash-{now/d{yyyy.MM.dd\|+12:00}}>` | `logstash-2024.03.23`
  113. |======
  114. To use the characters `{` and `}` in the static part of an index name template, escape them
  115. with a backslash `\`, for example:
  116. * `<elastic\\{ON\\}-{now/M}>` resolves to `elastic{ON}-2024.03.01`
  117. The following example shows a search request that searches the Logstash indices for the past
  118. three days, assuming the indices use the default Logstash index name format,
  119. `logstash-YYYY.MM.dd`.
  120. [source,js]
  121. ----------------------------------------------------------------------
  122. # GET /<logstash-{now/d-2d}>,<logstash-{now/d-1d}>,<logstash-{now/d}>/_search
  123. GET /%3Clogstash-%7Bnow%2Fd-2d%7D%3E%2C%3Clogstash-%7Bnow%2Fd-1d%7D%3E%2C%3Clogstash-%7Bnow%2Fd%7D%3E/_search
  124. {
  125. "query" : {
  126. "match": {
  127. "test": "data"
  128. }
  129. }
  130. }
  131. ----------------------------------------------------------------------
  132. // CONSOLE
  133. // TEST[s/^/PUT logstash-2016.09.20\nPUT logstash-2016.09.19\nPUT logstash-2016.09.18\n/]
  134. // TEST[s/now/2016.09.20||/]
  135. [[common-options]]
  136. == Common options
  137. The following options can be applied to all of the REST APIs.
  138. [float]
  139. === Pretty Results
  140. When appending `?pretty=true` to any request made, the JSON returned
  141. will be pretty formatted (use it for debugging only!). Another option is
  142. to set `?format=yaml` which will cause the result to be returned in the
  143. (sometimes) more readable yaml format.
  144. [float]
  145. === Human readable output
  146. Statistics are returned in a format suitable for humans
  147. (e.g. `"exists_time": "1h"` or `"size": "1kb"`) and for computers
  148. (e.g. `"exists_time_in_millis": 3600000` or `"size_in_bytes": 1024`).
  149. The human readable values can be turned off by adding `?human=false`
  150. to the query string. This makes sense when the stats results are
  151. being consumed by a monitoring tool, rather than intended for human
  152. consumption. The default for the `human` flag is
  153. `false`.
  154. [[date-math]]
  155. [float]
  156. === Date Math
  157. Most parameters which accept a formatted date value -- such as `gt` and `lt`
  158. in <<query-dsl-range-query,`range` queries>>, or `from` and `to`
  159. in <<search-aggregations-bucket-daterange-aggregation,`daterange`
  160. aggregations>> -- understand date maths.
  161. The expression starts with an anchor date, which can either be `now`, or a
  162. date string ending with `||`. This anchor date can optionally be followed by
  163. one or more maths expressions:
  164. * `+1h`: Add one hour
  165. * `-1d`: Subtract one day
  166. * `/d`: Round down to the nearest day
  167. The supported time units differ from those supported by <<time-units, time units>> for durations.
  168. The supported units are:
  169. [horizontal]
  170. `y`:: Years
  171. `M`:: Months
  172. `w`:: Weeks
  173. `d`:: Days
  174. `h`:: Hours
  175. `H`:: Hours
  176. `m`:: Minutes
  177. `s`:: Seconds
  178. Assuming `now` is `2001-01-01 12:00:00`, some examples are:
  179. [horizontal]
  180. `now+1h`:: `now` in milliseconds plus one hour. Resolves to: `2001-01-01 13:00:00`
  181. `now-1h`:: `now` in milliseconds minus one hour. Resolves to: `2001-01-01 11:00:00`
  182. `now-1h/d`:: `now` in milliseconds minus one hour, rounded down to UTC 00:00. Resolves to: `2001-01-01 00:00:00`
  183. `2001.02.01\|\|+1M/d`:: `2001-02-01` in milliseconds plus one month. Resolves to: `2001-03-01 00:00:00`
  184. [float]
  185. [[common-options-response-filtering]]
  186. === Response Filtering
  187. All REST APIs accept a `filter_path` parameter that can be used to reduce
  188. the response returned by Elasticsearch. This parameter takes a comma
  189. separated list of filters expressed with the dot notation:
  190. [source,js]
  191. --------------------------------------------------
  192. GET /_search?q=elasticsearch&filter_path=took,hits.hits._id,hits.hits._score
  193. --------------------------------------------------
  194. // CONSOLE
  195. // TEST[setup:twitter]
  196. Responds:
  197. [source,js]
  198. --------------------------------------------------
  199. {
  200. "took" : 3,
  201. "hits" : {
  202. "hits" : [
  203. {
  204. "_id" : "0",
  205. "_score" : 1.6375021
  206. }
  207. ]
  208. }
  209. }
  210. --------------------------------------------------
  211. // TESTRESPONSE[s/"took" : 3/"took" : $body.took/]
  212. // TESTRESPONSE[s/1.6375021/$body.hits.hits.0._score/]
  213. It also supports the `*` wildcard character to match any field or part
  214. of a field's name:
  215. [source,sh]
  216. --------------------------------------------------
  217. GET /_cluster/state?filter_path=metadata.indices.*.stat*
  218. --------------------------------------------------
  219. // CONSOLE
  220. // TEST[s/^/PUT twitter\n/]
  221. Responds:
  222. [source,sh]
  223. --------------------------------------------------
  224. {
  225. "metadata" : {
  226. "indices" : {
  227. "twitter": {"state": "open"}
  228. }
  229. }
  230. }
  231. --------------------------------------------------
  232. // TESTRESPONSE
  233. And the `**` wildcard can be used to include fields without knowing the
  234. exact path of the field. For example, we can return the Lucene version
  235. of every segment with this request:
  236. [source,js]
  237. --------------------------------------------------
  238. GET /_cluster/state?filter_path=routing_table.indices.**.state
  239. --------------------------------------------------
  240. // CONSOLE
  241. // TEST[s/^/PUT twitter\n/]
  242. Responds:
  243. [source,js]
  244. --------------------------------------------------
  245. {
  246. "routing_table": {
  247. "indices": {
  248. "twitter": {
  249. "shards": {
  250. "0": [{"state": "STARTED"}, {"state": "UNASSIGNED"}]
  251. }
  252. }
  253. }
  254. }
  255. }
  256. --------------------------------------------------
  257. // TESTRESPONSE
  258. It is also possible to exclude one or more fields by prefixing the filter with the char `-`:
  259. [source,js]
  260. --------------------------------------------------
  261. GET /_count?filter_path=-_shards
  262. --------------------------------------------------
  263. // CONSOLE
  264. // TEST[setup:twitter]
  265. Responds:
  266. [source,js]
  267. --------------------------------------------------
  268. {
  269. "count" : 5
  270. }
  271. --------------------------------------------------
  272. // TESTRESPONSE
  273. And for more control, both inclusive and exclusive filters can be combined in the same expression. In
  274. this case, the exclusive filters will be applied first and the result will be filtered again using the
  275. inclusive filters:
  276. [source,js]
  277. --------------------------------------------------
  278. GET /_cluster/state?filter_path=metadata.indices.*.state,-metadata.indices.logstash-*
  279. --------------------------------------------------
  280. // CONSOLE
  281. // TEST[s/^/PUT index-1\nPUT index-2\nPUT index-3\nPUT logstash-2016.01\n/]
  282. Responds:
  283. [source,js]
  284. --------------------------------------------------
  285. {
  286. "metadata" : {
  287. "indices" : {
  288. "index-1" : {"state" : "open"},
  289. "index-2" : {"state" : "open"},
  290. "index-3" : {"state" : "open"}
  291. }
  292. }
  293. }
  294. --------------------------------------------------
  295. // TESTRESPONSE
  296. Note that Elasticsearch sometimes returns directly the raw value of a field,
  297. like the `_source` field. If you want to filter `_source` fields, you should
  298. consider combining the already existing `_source` parameter (see
  299. <<get-source-filtering,Get API>> for more details) with the `filter_path`
  300. parameter like this:
  301. [source,js]
  302. --------------------------------------------------
  303. POST /library/book?refresh
  304. {"title": "Book #1", "rating": 200.1}
  305. POST /library/book?refresh
  306. {"title": "Book #2", "rating": 1.7}
  307. POST /library/book?refresh
  308. {"title": "Book #3", "rating": 0.1}
  309. GET /_search?filter_path=hits.hits._source&_source=title&sort=rating:desc
  310. --------------------------------------------------
  311. // CONSOLE
  312. [source,js]
  313. --------------------------------------------------
  314. {
  315. "hits" : {
  316. "hits" : [ {
  317. "_source":{"title":"Book #1"}
  318. }, {
  319. "_source":{"title":"Book #2"}
  320. }, {
  321. "_source":{"title":"Book #3"}
  322. } ]
  323. }
  324. }
  325. --------------------------------------------------
  326. // TESTRESPONSE
  327. [float]
  328. === Flat Settings
  329. The `flat_settings` flag affects rendering of the lists of settings. When the
  330. `flat_settings` flag is `true`, settings are returned in a flat format:
  331. [source,js]
  332. --------------------------------------------------
  333. GET twitter/_settings?flat_settings=true
  334. --------------------------------------------------
  335. // CONSOLE
  336. // TEST[setup:twitter]
  337. Returns:
  338. [source,js]
  339. --------------------------------------------------
  340. {
  341. "twitter" : {
  342. "settings": {
  343. "index.number_of_replicas": "1",
  344. "index.number_of_shards": "1",
  345. "index.creation_date": "1474389951325",
  346. "index.uuid": "n6gzFZTgS664GUfx0Xrpjw",
  347. "index.version.created": ...,
  348. "index.provided_name" : "twitter"
  349. }
  350. }
  351. }
  352. --------------------------------------------------
  353. // TESTRESPONSE[s/1474389951325/$body.twitter.settings.index\\\\.creation_date/]
  354. // TESTRESPONSE[s/n6gzFZTgS664GUfx0Xrpjw/$body.twitter.settings.index\\\\.uuid/]
  355. // TESTRESPONSE[s/"index.version.created": \.\.\./"index.version.created": $body.twitter.settings.index\\\\.version\\\\.created/]
  356. When the `flat_settings` flag is `false`, settings are returned in a more
  357. human readable structured format:
  358. [source,js]
  359. --------------------------------------------------
  360. GET twitter/_settings?flat_settings=false
  361. --------------------------------------------------
  362. // CONSOLE
  363. // TEST[setup:twitter]
  364. Returns:
  365. [source,js]
  366. --------------------------------------------------
  367. {
  368. "twitter" : {
  369. "settings" : {
  370. "index" : {
  371. "number_of_replicas": "1",
  372. "number_of_shards": "1",
  373. "creation_date": "1474389951325",
  374. "uuid": "n6gzFZTgS664GUfx0Xrpjw",
  375. "version": {
  376. "created": ...
  377. },
  378. "provided_name" : "twitter"
  379. }
  380. }
  381. }
  382. }
  383. --------------------------------------------------
  384. // TESTRESPONSE[s/1474389951325/$body.twitter.settings.index.creation_date/]
  385. // TESTRESPONSE[s/n6gzFZTgS664GUfx0Xrpjw/$body.twitter.settings.index.uuid/]
  386. // TESTRESPONSE[s/"created": \.\.\./"created": $body.twitter.settings.index.version.created/]
  387. By default `flat_settings` is set to `false`.
  388. [float]
  389. === Parameters
  390. Rest parameters (when using HTTP, map to HTTP URL parameters) follow the
  391. convention of using underscore casing.
  392. [float]
  393. === Boolean Values
  394. All REST API parameters (both request parameters and JSON body) support
  395. providing boolean "false" as the value `false` and boolean "true" as the
  396. value `true`. All other values will raise an error.
  397. [float]
  398. === Number Values
  399. All REST APIs support providing numbered parameters as `string` on top
  400. of supporting the native JSON number types.
  401. [[time-units]]
  402. [float]
  403. === Time units
  404. Whenever durations need to be specified, e.g. for a `timeout` parameter, the duration must specify
  405. the unit, like `2d` for 2 days. The supported units are:
  406. [horizontal]
  407. `d`:: Days
  408. `h`:: Hours
  409. `m`:: Minutes
  410. `s`:: Seconds
  411. `ms`:: Milliseconds
  412. `micros`:: Microseconds
  413. `nanos`:: Nanoseconds
  414. [[byte-units]]
  415. [float]
  416. === Byte size units
  417. Whenever the byte size of data needs to be specified, e.g. when setting a buffer size
  418. parameter, the value must specify the unit, like `10kb` for 10 kilobytes. Note that
  419. these units use powers of 1024, so `1kb` means 1024 bytes. The supported units are:
  420. [horizontal]
  421. `b`:: Bytes
  422. `kb`:: Kilobytes
  423. `mb`:: Megabytes
  424. `gb`:: Gigabytes
  425. `tb`:: Terabytes
  426. `pb`:: Petabytes
  427. [[size-units]]
  428. [float]
  429. === Unit-less quantities
  430. Unit-less quantities means that they don't have a "unit" like "bytes" or "Hertz" or "meter" or "long tonne".
  431. 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
  432. when we mean 87 though. These are the supported multipliers:
  433. [horizontal]
  434. `k`:: Kilo
  435. `m`:: Mega
  436. `g`:: Giga
  437. `t`:: Tera
  438. `p`:: Peta
  439. [[distance-units]]
  440. [float]
  441. === Distance Units
  442. Wherever distances need to be specified, such as the `distance` parameter in
  443. the <<query-dsl-geo-distance-query>>), the default unit is meters if none is specified.
  444. Distances can be specified in other units, such as `"1km"` or
  445. `"2mi"` (2 miles).
  446. The full list of units is listed below:
  447. [horizontal]
  448. Mile:: `mi` or `miles`
  449. Yard:: `yd` or `yards`
  450. Feet:: `ft` or `feet`
  451. Inch:: `in` or `inch`
  452. Kilometer:: `km` or `kilometers`
  453. Meter:: `m` or `meters`
  454. Centimeter:: `cm` or `centimeters`
  455. Millimeter:: `mm` or `millimeters`
  456. Nautical mile:: `NM`, `nmi`, or `nauticalmiles`
  457. [[fuzziness]]
  458. [float]
  459. === Fuzziness
  460. Some queries and APIs support parameters to allow inexact _fuzzy_ matching,
  461. using the `fuzziness` parameter.
  462. When querying `text` or `keyword` fields, `fuzziness` is interpreted as a
  463. http://en.wikipedia.org/wiki/Levenshtein_distance[Levenshtein Edit Distance]
  464. -- the number of one character changes that need to be made to one string to
  465. make it the same as another string.
  466. The `fuzziness` parameter can be specified as:
  467. [horizontal]
  468. `0`, `1`, `2`::
  469. The maximum allowed Levenshtein Edit Distance (or number of edits)
  470. `AUTO`::
  471. +
  472. --
  473. Generates an edit distance based on the length of the term.
  474. Low and high distance arguments may be optionally provided `AUTO:[low],[high]`. If not specified,
  475. the default values are 3 and 6, equivalent to `AUTO:3,6` that make for lengths:
  476. `0..2`:: Must match exactly
  477. `3..5`:: One edit allowed
  478. `>5`:: Two edits allowed
  479. `AUTO` should generally be the preferred value for `fuzziness`.
  480. --
  481. [float]
  482. [[common-options-error-options]]
  483. === Enabling stack traces
  484. By default when a request returns an error Elasticsearch doesn't include the
  485. stack trace of the error. You can enable that behavior by setting the
  486. `error_trace` url parameter to `true`. For example, by default when you send an
  487. invalid `size` parameter to the `_search` API:
  488. [source,js]
  489. ----------------------------------------------------------------------
  490. POST /twitter/_search?size=surprise_me
  491. ----------------------------------------------------------------------
  492. // CONSOLE
  493. // TEST[s/surprise_me/surprise_me&error_trace=false/ catch:bad_request]
  494. // Since the test system sends error_trace=true by default we have to override
  495. The response looks like:
  496. [source,js]
  497. ----------------------------------------------------------------------
  498. {
  499. "error" : {
  500. "root_cause" : [
  501. {
  502. "type" : "illegal_argument_exception",
  503. "reason" : "Failed to parse int parameter [size] with value [surprise_me]"
  504. }
  505. ],
  506. "type" : "illegal_argument_exception",
  507. "reason" : "Failed to parse int parameter [size] with value [surprise_me]",
  508. "caused_by" : {
  509. "type" : "number_format_exception",
  510. "reason" : "For input string: \"surprise_me\""
  511. }
  512. },
  513. "status" : 400
  514. }
  515. ----------------------------------------------------------------------
  516. // TESTRESPONSE
  517. But if you set `error_trace=true`:
  518. [source,js]
  519. ----------------------------------------------------------------------
  520. POST /twitter/_search?size=surprise_me&error_trace=true
  521. ----------------------------------------------------------------------
  522. // CONSOLE
  523. // TEST[catch:bad_request]
  524. The response looks like:
  525. [source,js]
  526. ----------------------------------------------------------------------
  527. {
  528. "error": {
  529. "root_cause": [
  530. {
  531. "type": "illegal_argument_exception",
  532. "reason": "Failed to parse int parameter [size] with value [surprise_me]",
  533. "stack_trace": "Failed to parse int parameter [size] with value [surprise_me]]; nested: IllegalArgumentException..."
  534. }
  535. ],
  536. "type": "illegal_argument_exception",
  537. "reason": "Failed to parse int parameter [size] with value [surprise_me]",
  538. "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)...",
  539. "caused_by": {
  540. "type": "number_format_exception",
  541. "reason": "For input string: \"surprise_me\"",
  542. "stack_trace": "java.lang.NumberFormatException: For input string: \"surprise_me\"\n at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)..."
  543. }
  544. },
  545. "status": 400
  546. }
  547. ----------------------------------------------------------------------
  548. // TESTRESPONSE[s/"stack_trace": "Failed to parse int parameter.+\.\.\."/"stack_trace": $body.error.root_cause.0.stack_trace/]
  549. // TESTRESPONSE[s/"stack_trace": "java.lang.IllegalArgum.+\.\.\."/"stack_trace": $body.error.stack_trace/]
  550. // TESTRESPONSE[s/"stack_trace": "java.lang.Number.+\.\.\."/"stack_trace": $body.error.caused_by.stack_trace/]
  551. [float]
  552. === Request body in query string
  553. For libraries that don't accept a request body for non-POST requests,
  554. you can pass the request body as the `source` query string parameter
  555. instead. When using this method, the `source_content_type` parameter
  556. should also be passed with a media type value that indicates the format
  557. of the source, such as `application/json`.
  558. [float]
  559. === Content-Type Requirements
  560. The type of the content sent in a request body must be specified using
  561. the `Content-Type` header. The value of this header must map to one of
  562. the supported formats that the API supports. Most APIs support JSON,
  563. YAML, CBOR, and SMILE. The bulk and multi-search APIs support NDJSON,
  564. JSON, and SMILE; other types will result in an error response.
  565. Additionally, when using the `source` query string parameter, the
  566. content type must be specified using the `source_content_type` query
  567. string parameter.
  568. [[url-access-control]]
  569. == URL-based access control
  570. Many users use a proxy with URL-based access control to secure access to
  571. Elasticsearch indices. For <<search-multi-search,multi-search>>,
  572. <<docs-multi-get,multi-get>>, and <<docs-bulk,bulk>> requests, the user has
  573. the choice of specifying an index in the URL and on each individual request
  574. within the request body. This can make URL-based access control challenging.
  575. To prevent the user from overriding the index which has been specified in the
  576. URL, add this setting to the `elasticsearch.yml` file:
  577. rest.action.multi.allow_explicit_index: false
  578. The default value is `true`, but when set to `false`, Elasticsearch will
  579. reject requests that have an explicit index specified in the request body.