api-conventions.asciidoc 22 KB

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