api-conventions.asciidoc 21 KB

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