common-parms.asciidoc 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348
  1. tag::actions[]
  2. `actions`::
  3. +
  4. --
  5. (Optional, string)
  6. Comma-separated list or wildcard expression
  7. of actions used to limit the request.
  8. Omit this parameter to return all actions.
  9. --
  10. end::actions[]
  11. tag::active-only[]
  12. `active_only`::
  13. (Optional, Boolean)
  14. If `true`,
  15. the response only includes ongoing shard recoveries.
  16. Defaults to `false`.
  17. end::active-only[]
  18. tag::allow-no-indices[]
  19. `allow_no_indices`::
  20. (Optional, Boolean)
  21. If `false`, the request returns an error if any wildcard expression,
  22. <<aliases,index alias>>, or `_all` value targets only missing or closed indices.
  23. This behavior applies even if the request targets other open indices. For
  24. example, a request targeting `foo*,bar*` returns an error if an index starts
  25. with `foo` but no index starts with `bar`.
  26. end::allow-no-indices[]
  27. tag::allow-no-match-transforms1[]
  28. Specifies what to do when the request:
  29. +
  30. --
  31. * Contains wildcard expressions and there are no {transforms} that match.
  32. * Contains the `_all` string or no identifiers and there are no matches.
  33. * Contains wildcard expressions and there are only partial matches.
  34. The default value is `true`, which returns an empty `transforms` array when
  35. there are no matches and the subset of results when there are partial matches.
  36. If this parameter is `false`, the request returns a `404` status code when there
  37. are no matches or only partial matches.
  38. --
  39. end::allow-no-match-transforms1[]
  40. tag::allow-no-match-transforms2[]
  41. Specifies what to do when the request:
  42. +
  43. --
  44. * Contains wildcard expressions and there are no {transforms} that match.
  45. * Contains the `_all` string or no identifiers and there are no matches.
  46. * Contains wildcard expressions and there are only partial matches.
  47. The default value is `true`, which returns a successful acknowledgement message
  48. when there are no matches. When there are only partial matches, the API stops
  49. the appropriate {transforms}. For example, if the request contains
  50. `test-id1*,test-id2*` as the identifiers and there are no {transforms}
  51. that match `test-id2*`, the API nonetheless stops the {transforms}
  52. that match `test-id1*`.
  53. If this parameter is `false`, the request returns a `404` status code when there
  54. are no matches or only partial matches.
  55. --
  56. end::allow-no-match-transforms2[]
  57. tag::analyzer[]
  58. `analyzer`::
  59. (Optional, string) Analyzer to use for the query string.
  60. +
  61. This parameter can only be used when the `q` query string parameter is
  62. specified.
  63. end::analyzer[]
  64. tag::analyze_wildcard[]
  65. `analyze_wildcard`::
  66. (Optional, Boolean) If `true`, wildcard and prefix queries are analyzed.
  67. Defaults to `false`.
  68. +
  69. This parameter can only be used when the `q` query string parameter is
  70. specified.
  71. end::analyze_wildcard[]
  72. tag::bulk-id[]
  73. `_id`::
  74. (Optional, string)
  75. The document ID.
  76. If no ID is specified, a document ID is automatically generated.
  77. end::bulk-id[]
  78. tag::bulk-index[]
  79. `_index`::
  80. (Optional, string)
  81. Name of the index or index alias to perform the action on. This
  82. parameter is required if a `<target>` is not specified in the request path.
  83. end::bulk-index[]
  84. tag::bulk-index-ds[]
  85. `_index`::
  86. (Optional, string)
  87. Name of the data stream, index, or index alias to perform the action on. This
  88. parameter is required if a `<target>` is not specified in the request path.
  89. end::bulk-index-ds[]
  90. tag::bytes[]
  91. `bytes`::
  92. (Optional, <<byte-units,byte size units>>) Unit used to display byte values.
  93. end::bytes[]
  94. tag::cat-h[]
  95. `h`::
  96. (Optional, string) Comma-separated list of column names to display.
  97. end::cat-h[]
  98. tag::checkpointing-changes-last-detected-at[]
  99. The timestamp when changes were last detected in the source indices.
  100. end::checkpointing-changes-last-detected-at[]
  101. tag::checkpointing-last-search-time[]
  102. The timestamp of the last search in the source indices. This field is only
  103. shown if the transform is running.
  104. end::checkpointing-last-search-time[]
  105. tag::cluster-health-status[]
  106. (string)
  107. Health status of the cluster, based on the state of its primary and replica
  108. shards. Statuses are:
  109. * `green`:
  110. All shards are assigned.
  111. * `yellow`:
  112. All primary shards are assigned, but one or more replica shards are
  113. unassigned. If a node in the cluster fails, some data could be unavailable
  114. until that node is repaired.
  115. * `red`:
  116. One or more primary shards are unassigned, so some data is unavailable. This
  117. can occur briefly during cluster startup as primary shards are assigned.
  118. end::cluster-health-status[]
  119. tag::committed[]
  120. If `true`,
  121. the segments is synced to disk. Segments that are synced can survive a hard reboot.
  122. +
  123. If `false`,
  124. the data from uncommitted segments is also stored in
  125. the transaction log so that Elasticsearch is able to replay
  126. changes on the next start.
  127. end::committed[]
  128. tag::completion-fields[]
  129. `completion_fields`::
  130. (Optional, string)
  131. Comma-separated list or wildcard expressions of fields
  132. to include in `fielddata` and `suggest` statistics.
  133. end::completion-fields[]
  134. tag::component-template[]
  135. `<component-template>`::
  136. (Required, string)
  137. Comma-separated list or wildcard expression of component template names
  138. used to limit the request.
  139. end::component-template[]
  140. tag::delete-time-ms[]
  141. The amount of time spent deleting, in milliseconds.
  142. end::delete-time-ms[]
  143. tag::default_operator[]
  144. `default_operator`::
  145. (Optional, string) The default operator for query string query: AND or OR.
  146. Defaults to `OR`.
  147. +
  148. This parameter can only be used when the `q` query string parameter is
  149. specified.
  150. end::default_operator[]
  151. tag::dest[]
  152. The destination for the {transform}.
  153. end::dest[]
  154. tag::dest-index[]
  155. The _destination index_ for the {transform}.
  156. In the case of a `pivot` transform, the mappings of the destination
  157. index are deduced based on the source fields when possible. If alternate
  158. mappings are required, use the <<indices-create-index,Create index API>>
  159. prior to starting the {transform}.
  160. In the case of a `latest` transform, the mappings are never deduced. If dynamic
  161. mappings for the destination index are undesirable, use the
  162. <<indices-create-index,Create index API>> prior to starting the {transform}.
  163. end::dest-index[]
  164. tag::dest-aliases[]
  165. The aliases that the destination index for the {transform} should have.
  166. Aliases are manipulated using the stored credentials of the transform, which means the secondary credentials supplied
  167. at creation time (if both primary and secondary credentials are specified).
  168. The destination index is added to the aliases regardless whether the destination
  169. index was created by the transform or pre-created by the user.
  170. end::dest-aliases[]
  171. tag::dest-aliases-alias[]
  172. The name of the alias.
  173. end::dest-aliases-alias[]
  174. tag::dest-aliases-move-on-creation[]
  175. Whether or not the destination index should be the **only** index in this alias.
  176. If `true`, all the other indices will be removed from this alias before adding the destination index to this alias.
  177. Defaults to `false`.
  178. end::dest-aliases-move-on-creation[]
  179. tag::dest-pipeline[]
  180. The unique identifier for an <<ingest,ingest pipeline>>.
  181. end::dest-pipeline[]
  182. tag::detailed[]
  183. `detailed`::
  184. (Optional, Boolean)
  185. If `true`,
  186. the response includes detailed information about shard recoveries.
  187. Defaults to `false`.
  188. end::detailed[]
  189. tag::df[]
  190. `df`::
  191. (Optional, string) Field to use as default where no field prefix is given in the
  192. query string.
  193. +
  194. This parameter can only be used when the `q` query string parameter is
  195. specified.
  196. end::df[]
  197. tag::docs-count[]
  198. The number of documents as reported by Lucene. This excludes deleted documents
  199. and counts any <<nested,nested documents>> separately from their parents. It
  200. also excludes documents which were indexed recently and do not yet belong to a
  201. segment.
  202. end::docs-count[]
  203. tag::docs-deleted[]
  204. The number of deleted documents as reported by Lucene, which may be higher or
  205. lower than the number of delete operations you have performed. This number
  206. excludes deletes that were performed recently and do not yet belong to a
  207. segment. Deleted documents are cleaned up by the
  208. <<index-modules-merge,automatic merge process>> if it makes sense to do so.
  209. Also, {es} creates extra deleted documents to internally track the recent
  210. history of operations on a shard.
  211. end::docs-deleted[]
  212. tag::docs-deleted-transform[]
  213. The number of documents that have been deleted from the destination index due to
  214. the retention policy for this {transform}.
  215. end::docs-deleted-transform[]
  216. tag::docs-indexed[]
  217. The number of documents that have been indexed into the destination index
  218. for the {transform}.
  219. end::docs-indexed[]
  220. tag::docs-processed[]
  221. The number of documents that have been processed from the source index of
  222. the {transform}.
  223. end::docs-processed[]
  224. tag::ds-expand-wildcards[]
  225. `expand_wildcards`::
  226. +
  227. --
  228. (Optional, string)
  229. Type of data stream that wildcard patterns can match. Supports
  230. comma-separated values, such as `open,hidden`. Valid values are:
  231. `all`, `hidden`::
  232. Match any data stream, including <<multi-hidden,hidden>> ones.
  233. `open`, `closed`::
  234. Matches any non-hidden data stream. Data streams cannot be closed.
  235. `none`::
  236. Wildcard patterns are not accepted.
  237. --
  238. end::ds-expand-wildcards[]
  239. tag::expand-wildcards[]
  240. `expand_wildcards`::
  241. +
  242. --
  243. (Optional, string)
  244. Type of index that wildcard patterns can match. If the request can target data
  245. streams, this argument determines whether wildcard expressions match hidden data
  246. streams. Supports comma-separated values, such as `open,hidden`. Valid values
  247. are:
  248. `all`::
  249. Match any data stream or index, including <<multi-hidden,hidden>> ones.
  250. `open`::
  251. Match open, non-hidden indices. Also matches any non-hidden data stream.
  252. `closed`::
  253. Match closed, non-hidden indices. Also matches any non-hidden data stream. Data
  254. streams cannot be closed.
  255. `hidden`::
  256. Match hidden data streams and hidden indices. Must be combined with `open`,
  257. `closed`, or both.
  258. `none`::
  259. Wildcard patterns are not accepted.
  260. --
  261. end::expand-wildcards[]
  262. tag::exponential-avg-checkpoint-duration-ms[]
  263. Exponential moving average of the duration of the checkpoint, in milliseconds.
  264. end::exponential-avg-checkpoint-duration-ms[]
  265. tag::exponential-avg-documents-indexed[]
  266. Exponential moving average of the number of new documents that have been
  267. indexed.
  268. end::exponential-avg-documents-indexed[]
  269. tag::exponential-avg-documents-processed[]
  270. Exponential moving average of the number of documents that have been
  271. processed.
  272. end::exponential-avg-documents-processed[]
  273. tag::field_statistics[]
  274. `field_statistics`::
  275. (Optional, Boolean) If `true`, the response includes the document count, sum of document frequencies,
  276. and sum of total term frequencies.
  277. Defaults to `true`.
  278. end::field_statistics[]
  279. tag::fielddata-fields[]
  280. `fielddata_fields`::
  281. (Optional, string)
  282. Comma-separated list or wildcard expressions of fields
  283. to include in `fielddata` statistics.
  284. end::fielddata-fields[]
  285. tag::fields[]
  286. `fields`::
  287. +
  288. --
  289. (Optional, string)
  290. Comma-separated list or wildcard expressions of fields
  291. to include in the statistics.
  292. Used as the default list
  293. unless a specific field list is provided
  294. in the `completion_fields` or `fielddata_fields` parameters.
  295. --
  296. end::fields[]
  297. tag::flat-settings[]
  298. `flat_settings`::
  299. (Optional, Boolean) If `true`, returns settings in flat format. Defaults to
  300. `false`.
  301. end::flat-settings[]
  302. tag::http-format[]
  303. `format`::
  304. (Optional, string) Short version of the
  305. https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html[HTTP accept header].
  306. Valid values include JSON, YAML, etc.
  307. end::http-format[]
  308. tag::frequency[]
  309. The interval between checks for changes in the source indices when the
  310. {transform} is running continuously. The minimum value is `1s` and the maximum
  311. is `1h`. The default value is `1m`.
  312. end::frequency[]
  313. tag::from[]
  314. `from`::
  315. (Optional, integer) Starting document offset. Needs to be non-negative and defaults to `0`.
  316. end::from[]
  317. tag::from-transforms[]
  318. Skips the specified number of {transforms}. The default value is `0`.
  319. end::from-transforms[]
  320. tag::generation[]
  321. Generation number, such as `0`. {es} increments this generation number
  322. for each segment written. {es} then uses this number to derive the segment name.
  323. end::generation[]
  324. tag::group-by[]
  325. `group_by`::
  326. +
  327. --
  328. (Optional, string)
  329. Key used to group tasks in the response.
  330. Possible values are:
  331. `nodes`::
  332. (Default)
  333. Node ID
  334. `parents`::
  335. Parent task ID
  336. `none`::
  337. Do not group tasks.
  338. --
  339. end::group-by[]
  340. tag::groups[]
  341. `groups`::
  342. (Optional, string)
  343. Comma-separated list of search groups
  344. to include in the `search` statistics.
  345. end::groups[]
  346. tag::help[]
  347. `help`::
  348. (Optional, Boolean) If `true`, the response includes help information. Defaults
  349. to `false`.
  350. end::help[]
  351. tag::if_primary_term[]
  352. `if_primary_term`::
  353. (Optional, integer) Only perform the operation if the document has
  354. this primary term. See <<optimistic-concurrency-control-index>>.
  355. end::if_primary_term[]
  356. tag::if_seq_no[]
  357. `if_seq_no`::
  358. (Optional, integer) Only perform the operation if the document has this
  359. sequence number. See <<optimistic-concurrency-control-index>>.
  360. end::if_seq_no[]
  361. tag::ignore_throttled[]
  362. `ignore_throttled`::
  363. (Optional, Boolean) If `true`, concrete, expanded or aliased indices are
  364. ignored when frozen. Defaults to `true`.
  365. +
  366. deprecated:[7.16.0]
  367. end::ignore_throttled[]
  368. tag::index-ignore-unavailable[]
  369. `ignore_unavailable`::
  370. (Optional, Boolean) If `false`, the request returns an error if it targets a
  371. missing or closed index. Defaults to `false`.
  372. end::index-ignore-unavailable[]
  373. tag::include-defaults[]
  374. `include_defaults`::
  375. (Optional, Boolean) If `true`, return all default settings in the response.
  376. Defaults to `false`.
  377. end::include-defaults[]
  378. tag::include-segment-file-sizes[]
  379. `include_segment_file_sizes`::
  380. (Optional, Boolean)
  381. If `true`, the call reports the aggregated disk usage of
  382. each one of the Lucene index files (only applies if segment stats are
  383. requested). Defaults to `false`.
  384. end::include-segment-file-sizes[]
  385. tag::include-unloaded-segments[]
  386. `include_unloaded_segments`::
  387. (Optional, Boolean) If `true`, the response includes information from segments
  388. that are **not** loaded into memory. Defaults to `false`.
  389. end::include-unloaded-segments[]
  390. tag::index-query-parm[]
  391. `index`::
  392. (Optional, string)
  393. Comma-separated list or wildcard expression of index names
  394. used to limit the request.
  395. end::index-query-parm[]
  396. tag::index[]
  397. `<index>`::
  398. (Optional, string) Comma-separated list or wildcard expression of index names
  399. used to limit the request.
  400. end::index[]
  401. tag::index-failures[]
  402. The number of indexing failures.
  403. end::index-failures[]
  404. tag::index-time-ms[]
  405. The amount of time spent indexing, in milliseconds.
  406. end::index-time-ms[]
  407. tag::index-total[]
  408. The number of index operations.
  409. end::index-total[]
  410. tag::index-metric[]
  411. `<index-metric>`::
  412. +
  413. --
  414. (Optional, string)
  415. Comma-separated list of metrics used to limit the request.
  416. Supported metrics are:
  417. `_all`::
  418. Return all statistics.
  419. `completion`::
  420. <<completion-suggester,Completion suggester>> statistics.
  421. `dense_vector`::
  422. Total number of dense vectors indexed.
  423. <<indices-refresh,Index refreshes>> can affect this statistic.
  424. `docs`::
  425. Number of documents, number of deleted docs which have not yet merged out, and total size in bytes.
  426. <<indices-refresh,Index refreshes>> can affect this statistic.
  427. `fielddata`::
  428. <<fielddata-mapping-param,Fielddata>> statistics.
  429. `flush`::
  430. <<indices-flush,Flush>> statistics.
  431. `get`::
  432. Get statistics,
  433. including missing stats.
  434. `indexing`::
  435. <<docs-index_,Indexing>> statistics.
  436. `merge`::
  437. <<index-modules-merge,Merge>> statistics.
  438. `query_cache`::
  439. <<query-cache,Query cache>> statistics.
  440. `refresh`::
  441. <<indices-refresh,Refresh>> statistics.
  442. `request_cache`::
  443. <<shard-request-cache,Shard request cache>> statistics.
  444. `search`::
  445. Search statistics including suggest statistics.
  446. You can include statistics for custom groups
  447. by adding an extra `groups` parameter
  448. (search operations can be associated with one or more groups).
  449. The `groups` parameter accepts a comma separated list of group names.
  450. Use `_all` to return statistics for all groups.
  451. `segments`::
  452. Memory use of all open segments.
  453. +
  454. If the `include_segment_file_sizes` parameter is `true`,
  455. this metric includes the aggregated disk usage
  456. of each Lucene index file.
  457. `sparse_vector`::
  458. Total number of sparse vectors indexed.
  459. <<indices-refresh,Index refreshes>> can affect this statistic.
  460. `store`::
  461. Size of the index in <<byte-units, byte units>>.
  462. `translog`::
  463. <<index-modules-translog,Translog>> statistics.
  464. --
  465. end::index-metric[]
  466. tag::index-template[]
  467. `<index-template>`::
  468. (Required, string)
  469. Comma-separated list of index template names used to limit the request. Wildcard
  470. (`*`) expressions are supported.
  471. end::index-template[]
  472. tag::knn[]
  473. Defines the <<approximate-knn,kNN>> query to run.
  474. end::knn[]
  475. tag::knn-field[]
  476. The name of the vector field to search against. Must be a
  477. <<index-vectors-knn-search, `dense_vector` field with indexing enabled>>.
  478. end::knn-field[]
  479. tag::knn-filter[]
  480. Query to filter the documents that can match. The kNN search will return the top
  481. `k` documents that also match this filter. The value can be a single query or a
  482. list of queries. If `filter` is not provided, all documents are allowed to
  483. match.
  484. end::knn-filter[]
  485. tag::knn-k[]
  486. Number of nearest neighbors to return as top hits. This value must be less than
  487. or equal to `num_candidates`. Defaults to `size`.
  488. end::knn-k[]
  489. tag::knn-num-candidates[]
  490. The number of nearest neighbor candidates to consider per shard.
  491. Needs to be greater than `k`, or `size` if `k` is omitted, and cannot exceed 10,000.
  492. {es} collects `num_candidates` results from each shard, then merges them
  493. to find the top `k` results. Increasing `num_candidates` tends to improve the
  494. accuracy of the final `k` results. Defaults to `Math.min(1.5 * k, 10_000)`.
  495. end::knn-num-candidates[]
  496. tag::knn-query-vector[]
  497. Query vector. Must have the same number of dimensions as the vector field you
  498. are searching against. Must be either an array of floats or a hex-encoded byte vector.
  499. end::knn-query-vector[]
  500. tag::knn-query-vector-builder[]
  501. A configuration object indicating how to build a query_vector before executing
  502. the request. You must provide either a `query_vector_builder` or `query_vector`,
  503. but not both. Refer to <<knn-semantic-search>> to learn more.
  504. end::knn-query-vector-builder[]
  505. tag::knn-similarity[]
  506. The minimum similarity required for a document to be considered a match. The similarity
  507. value calculated relates to the raw <<dense-vector-similarity, `similarity`>> used. Not the
  508. document score. The matched documents are then scored according to <<dense-vector-similarity, `similarity`>>
  509. and the provided `boost` is applied.
  510. +
  511. --
  512. The `similarity` parameter is the direct vector similarity calculation.
  513. * `l2_norm`: also known as Euclidean, will include documents where the vector is within
  514. the `dims` dimensional hypersphere with radius `similarity` with origin at `query_vector`.
  515. * `cosine`, `dot_product`, and `max_inner_product`: Only return vectors where the cosine similarity or dot-product are at least the provided
  516. `similarity`.
  517. --
  518. Read more here: <<knn-similarity-search, knn similarity search>>
  519. end::knn-similarity[]
  520. tag::lenient[]
  521. `lenient`::
  522. (Optional, Boolean) If `true`, format-based query failures (such as providing
  523. text to a numeric field) in the query string will be ignored. Defaults to
  524. `false`.
  525. +
  526. This parameter can only be used when the `q` query string parameter is
  527. specified.
  528. end::lenient[]
  529. tag::level[]
  530. `level`::
  531. +
  532. --
  533. (Optional, string)
  534. Indicates whether statistics are aggregated at the cluster, index, or shard level.
  535. If the shards level is requested, some additional
  536. <<cluster-nodes-stats,shard-specific statistics>> are shown.
  537. Valid values are:
  538. * `cluster`
  539. * `indices`
  540. * `shards`
  541. --
  542. end::level[]
  543. tag::local[]
  544. `local`::
  545. (Optional, Boolean) If `true`, the request retrieves information from the local
  546. node only. Defaults to `false`, which means information is retrieved from
  547. the master node.
  548. end::local[]
  549. tag::mappings[]
  550. `mappings`::
  551. +
  552. --
  553. (Optional, <<mapping,mapping object>>) Mapping for fields in the index. If
  554. specified, this mapping can include:
  555. * Field names
  556. * <<mapping-types,Field data types>>
  557. * <<mapping-params,Mapping parameters>>
  558. See <<mapping>>.
  559. --
  560. end::mappings[]
  561. tag::max_docs[]
  562. `max_docs`::
  563. (Optional, integer) Maximum number of documents to process. Defaults to all
  564. documents. When set to a value less then or equal to `scroll_size` then a
  565. scroll will not be used to retrieve the results for the operation.
  566. end::max_docs[]
  567. tag::memory[]
  568. Bytes of segment data stored in memory for efficient search,
  569. such as `1264`.
  570. +
  571. A value of `-1` indicates {es} was unable to compute this number.
  572. end::memory[]
  573. tag::bulk-require-alias[]
  574. `require_alias`::
  575. (Optional, Boolean)
  576. If `true`, the action must target an <<aliases,index alias>>. Defaults to
  577. `false`.
  578. end::bulk-require-alias[]
  579. tag::require-alias[]
  580. `require_alias`::
  581. (Optional, Boolean) If `true`, the destination must be an <<aliases,index alias>>.
  582. Defaults to `false`.
  583. end::require-alias[]
  584. tag::bulk-list-executed-pipelines[]
  585. `list_executed_pipelines`::
  586. (Optional, Boolean) If `true`, the response will include the ingest pipelines that
  587. were executed. Defaults to `false`.
  588. end::bulk-list-executed-pipelines[]
  589. tag::bulk-dynamic-templates[]
  590. `dynamic_templates`::
  591. (Optional, map)
  592. A map from the full name of fields to the name of <<dynamic-templates,dynamic templates>>.
  593. Defaults to an empty map. If a name matches a dynamic template, then that template will be
  594. applied regardless of other match predicates defined in the template. And if a field is
  595. already defined in the mapping, then this parameter won't be used.
  596. end::bulk-dynamic-templates[]
  597. tag::node-filter[]
  598. `<node_filter>`::
  599. (Optional, string)
  600. Comma-separated list of <<cluster-nodes,node filters>> used to limit returned
  601. information. Defaults to all nodes in the cluster.
  602. end::node-filter[]
  603. tag::node-id[]
  604. `<node_id>`::
  605. (Optional, string) Comma-separated list of node IDs or names used to limit
  606. returned information.
  607. end::node-id[]
  608. tag::nodes[]
  609. `nodes`::
  610. (Optional, string) Comma-separated list of node IDs or names used to limit
  611. returned information.
  612. end::nodes[]
  613. tag::offsets[]
  614. `<offsets>`::
  615. (Optional, Boolean) If `true`, the response includes term offsets.
  616. Defaults to `true`.
  617. end::offsets[]
  618. tag::parent-task-id[]
  619. `parent_task_id`::
  620. +
  621. --
  622. (Optional, string)
  623. Parent task ID
  624. used to limit returned information.
  625. To return all tasks,
  626. omit this parameter
  627. or use a value of `-1`.
  628. --
  629. end::parent-task-id[]
  630. tag::payloads[]
  631. `payloads`::
  632. (Optional, Boolean) If `true`, the response includes term payloads.
  633. Defaults to `true`.
  634. end::payloads[]
  635. tag::pipeline[]
  636. `pipeline`::
  637. (Optional, string) ID of the pipeline to use to preprocess incoming documents. If the index has a
  638. default ingest pipeline specified, then setting the value to `_none` disables the default ingest
  639. pipeline for this request. If a final pipeline is configured it will always run, regardless of the
  640. value of this parameter.
  641. end::pipeline[]
  642. tag::pages-processed[]
  643. The number of search or bulk index operations processed. Documents are
  644. processed in batches instead of individually.
  645. end::pages-processed[]
  646. tag::pivot[]
  647. The `pivot` method transforms the data by aggregating and grouping it. These
  648. objects define the `group by` fields and the aggregation to reduce the data.
  649. end::pivot[]
  650. tag::pivot-aggs[]
  651. Defines how to aggregate the grouped data. The following aggregations are
  652. currently supported:
  653. +
  654. --
  655. * <<search-aggregations-metrics-avg-aggregation,Average>>
  656. * <<search-aggregations-metrics-boxplot-aggregation,Boxplot>>
  657. * <<search-aggregations-pipeline-bucket-script-aggregation,Bucket script>>
  658. * <<search-aggregations-pipeline-bucket-selector-aggregation,Bucket selector>>
  659. * <<search-aggregations-metrics-cardinality-aggregation,Cardinality>>
  660. * <<search-aggregations-bucket-filter-aggregation,Filter>>
  661. * <<search-aggregations-metrics-geobounds-aggregation,Geo bounds>>
  662. * <<search-aggregations-metrics-geocentroid-aggregation,Geo centroid>>
  663. * <<search-aggregations-metrics-geo-line,Geo line>>
  664. * <<search-aggregations-metrics-cartesian-bounds-aggregation,Cartesian bounds>>
  665. * <<search-aggregations-metrics-cartesian-centroid-aggregation,Cartesian centroid>>
  666. * <<search-aggregations-metrics-max-aggregation,Max>>
  667. * <<search-aggregations-metrics-median-absolute-deviation-aggregation,Median absolute deviation>>
  668. * <<search-aggregations-metrics-min-aggregation,Min>>
  669. * <<search-aggregations-bucket-missing-aggregation,Missing>>
  670. * <<search-aggregations-metrics-percentile-aggregation,Percentiles>>
  671. * <<search-aggregations-bucket-range-aggregation,Range>>
  672. * <<search-aggregations-bucket-rare-terms-aggregation, Rare Terms>>
  673. * <<search-aggregations-metrics-scripted-metric-aggregation,Scripted metric>>
  674. * <<search-aggregations-metrics-stats-aggregation,Stats>>
  675. * <<search-aggregations-metrics-sum-aggregation,Sum>>
  676. * <<search-aggregations-bucket-terms-aggregation, Terms>>
  677. * <<search-aggregations-metrics-top-metrics,Top Metrics>>
  678. * <<search-aggregations-metrics-valuecount-aggregation,Value count>>
  679. * <<search-aggregations-metrics-weight-avg-aggregation,Weighted average>>
  680. --
  681. end::pivot-aggs[]
  682. tag::pivot-group-by[]
  683. Defines how to group the data. More than one grouping can be defined per pivot.
  684. The following groupings are currently supported:
  685. +
  686. --
  687. * <<_date_histogram,Date histogram>>
  688. * <<_geotile_grid,Geotile Grid>>
  689. * <<_histogram,Histogram>>
  690. * <<_terms,Terms>>
  691. The grouping properties can optionally have a `missing_bucket` property. If
  692. it's `true`, documents without a value in the respective `group_by` field are
  693. included. Defaults to `false`.
  694. --
  695. end::pivot-group-by[]
  696. tag::positions[]
  697. `positions`::
  698. (Optional, Boolean) If `true`, the response includes term positions.
  699. Defaults to `true`.
  700. end::positions[]
  701. tag::preference[]
  702. `preference`::
  703. (Optional, string) Specifies the node or shard the operation should be
  704. performed on. Random by default.
  705. end::preference[]
  706. tag::processing-time-ms[]
  707. The amount of time spent processing results, in milliseconds.
  708. end::processing-time-ms[]
  709. tag::processing-total[]
  710. The number of processing operations.
  711. end::processing-total[]
  712. tag::search-q[]
  713. `q`::
  714. (Optional, string) Query in the Lucene query string syntax.
  715. end::search-q[]
  716. tag::query[]
  717. `query`::
  718. (Optional, <<query-dsl,query object>>) Defines the search definition using the
  719. <<query-dsl,Query DSL>>.
  720. end::query[]
  721. tag::realtime[]
  722. `realtime`::
  723. (Optional, Boolean) If `true`, the request is real-time as opposed to near-real-time.
  724. Defaults to `true`. See <<realtime>>.
  725. end::realtime[]
  726. tag::refresh[]
  727. `refresh`::
  728. (Optional, enum) If `true`, {es} refreshes the affected shards to make this
  729. operation visible to search, if `wait_for` then wait for a refresh to make
  730. this operation visible to search, if `false` do nothing with refreshes.
  731. Valid values: `true`, `false`, `wait_for`. Default: `false`.
  732. end::refresh[]
  733. tag::request_cache[]
  734. `request_cache`::
  735. (Optional, Boolean) If `true`, the request cache is used for this request.
  736. Defaults to the index-level setting.
  737. end::request_cache[]
  738. tag::requests_per_second[]
  739. `requests_per_second`::
  740. (Optional, integer) The throttle for this request in sub-requests per second.
  741. Defaults to `-1` (no throttle).
  742. end::requests_per_second[]
  743. tag::routing[]
  744. `routing`::
  745. (Optional, string)
  746. Custom value used to route operations to a specific shard.
  747. end::routing[]
  748. tag::cat-s[]
  749. `s`::
  750. (Optional, string) Comma-separated list of column names or column aliases used
  751. to sort the response.
  752. end::cat-s[]
  753. tag::scroll[]
  754. `scroll`::
  755. (Optional, <<time-units, time units>>) Specifies how long a consistent view of
  756. the index should be maintained for scrolled search.
  757. end::scroll[]
  758. tag::scroll_size[]
  759. `scroll_size`::
  760. (Optional, integer) Size of the scroll request that powers the operation.
  761. Defaults to 1000.
  762. end::scroll_size[]
  763. tag::search-failures[]
  764. The number of search failures.
  765. end::search-failures[]
  766. tag::search-time-ms[]
  767. The amount of time spent searching, in milliseconds.
  768. end::search-time-ms[]
  769. tag::search-total[]
  770. The number of search operations on the source index for the {transform}.
  771. end::search-total[]
  772. tag::search_type[]
  773. `search_type`::
  774. (Optional, string) The type of the search operation. Available options:
  775. * `query_then_fetch`
  776. * `dfs_query_then_fetch`
  777. end::search_type[]
  778. tag::segment[]
  779. Name of the segment, such as `_0`. The segment name is derived from
  780. the segment generation and used internally to create file names in the directory
  781. of the shard.
  782. end::segment[]
  783. tag::segment-search[]
  784. If `true`,
  785. the segment is searchable.
  786. +
  787. If `false`,
  788. the segment has most likely been written to disk
  789. but needs a <<indices-refresh,refresh>> to be searchable.
  790. end::segment-search[]
  791. tag::segment-size[]
  792. Disk space used by the segment, such as `50kb`.
  793. end::segment-size[]
  794. tag::settings[]
  795. `settings`::
  796. (Optional, <<index-modules-settings,index setting object>>) Configuration
  797. options for the index. See <<index-modules-settings>>.
  798. end::settings[]
  799. tag::target-index-settings[]
  800. `settings`::
  801. (Optional, <<index-modules-settings,index setting object>>)
  802. Configuration options for the target index.
  803. See <<index-modules-settings>>.
  804. end::target-index-settings[]
  805. tag::size-transforms[]
  806. Specifies the maximum number of {transforms} to obtain. The default value is
  807. `100`.
  808. end::size-transforms[]
  809. tag::slices[]
  810. `slices`::
  811. (Optional, integer) The number of slices this task should be divided into.
  812. Defaults to 1 meaning the task isn't sliced into subtasks.
  813. end::slices[]
  814. tag::sort[]
  815. `sort`::
  816. (Optional, string) A comma-separated list of <field>:<direction> pairs.
  817. end::sort[]
  818. tag::source[]
  819. `_source`::
  820. (Optional, string) True or false to return the `_source` field or not, or a
  821. list of fields to return.
  822. end::source[]
  823. tag::source_excludes[]
  824. `_source_excludes`::
  825. (Optional, string)
  826. A comma-separated list of <<mapping-source-field,source fields>> to exclude from
  827. the response.
  828. +
  829. You can also use this parameter to exclude fields from the subset specified in
  830. `_source_includes` query parameter.
  831. +
  832. If the `_source` parameter is `false`, this parameter is ignored.
  833. end::source_excludes[]
  834. tag::source_includes[]
  835. `_source_includes`::
  836. (Optional, string)
  837. A comma-separated list of <<mapping-source-field,source fields>> to
  838. include in the response.
  839. +
  840. If this parameter is specified, only these source fields are returned. You can
  841. exclude fields from this subset using the `_source_excludes` query parameter.
  842. +
  843. If the `_source` parameter is `false`, this parameter is ignored.
  844. end::source_includes[]
  845. tag::source-transforms[]
  846. The source of the data for the {transform}.
  847. end::source-transforms[]
  848. tag::source-index-transforms[]
  849. The _source indices_ for the {transform}. It can be a single index, an index
  850. pattern (for example, `"my-index-*"`), an array of indices (for example,
  851. `["my-index-000001", "my-index-000002"]`), or an array of index patterns (for
  852. example, `["my-index-*", "my-other-index-*"]`. For remote indices use the syntax
  853. `"remote_name:index_name"`.
  854. +
  855. --
  856. NOTE: If any indices are in remote clusters then the master node and at least
  857. one transform node must have the `remote_cluster_client` node role.
  858. --
  859. end::source-index-transforms[]
  860. tag::source-query-transforms[]
  861. A query clause that retrieves a subset of data from the source index. See
  862. <<query-dsl>>.
  863. end::source-query-transforms[]
  864. tag::source-runtime-mappings-transforms[]
  865. Definitions of search-time runtime fields that can be used by the transform. For
  866. search runtime fields all data nodes, including remote nodes, must be 7.12 or
  867. later.
  868. end::source-runtime-mappings-transforms[]
  869. tag::state-transform[]
  870. The status of the {transform}, which can be one of the following values:
  871. +
  872. --
  873. * `aborting`: The {transform} is aborting.
  874. * `failed`: The {transform} failed. For more information about the failure,
  875. check the reason field.
  876. * `indexing`: The {transform} is actively processing data and creating new
  877. documents.
  878. * `started`: The {transform} is running but not actively indexing data.
  879. * `stopped`: The {transform} is stopped.
  880. * `stopping`: The {transform} is stopping.
  881. --
  882. end::state-transform[]
  883. tag::state-transform-reason[]
  884. If a {transform} has a `failed` state, this property provides details about the
  885. reason for the failure.
  886. end::state-transform-reason[]
  887. tag::stats[]
  888. `stats`::
  889. (Optional, string) Specific `tag` of the request for logging and statistical
  890. purposes.
  891. end::stats[]
  892. tag::stored_fields[]
  893. `stored_fields`::
  894. (Optional, string)
  895. A comma-separated list of <<mapping-store,`stored fields`>> to include in the response.
  896. end::stored_fields[]
  897. tag::sync[]
  898. Defines the properties {transforms} require to run continuously.
  899. end::sync[]
  900. tag::sync-time[]
  901. Specifies that the {transform} uses a time field to synchronize the source and
  902. destination indices.
  903. end::sync-time[]
  904. tag::sync-time-field[]
  905. The date field that is used to identify new documents in the source.
  906. end::sync-time-field[]
  907. tag::sync-time-delay[]
  908. The time delay between the current time and the latest input data time. The
  909. default value is `60s`.
  910. end::sync-time-delay[]
  911. tag::transform-latest[]
  912. The `latest` method transforms the data by finding the latest document for each
  913. unique key.
  914. end::transform-latest[]
  915. tag::transform-metadata[]
  916. Defines optional {transform} metadata.
  917. end::transform-metadata[]
  918. tag::transform-retention[]
  919. Defines a retention policy for the {transform}. Data that meets the defined
  920. criteria is deleted from the destination index.
  921. end::transform-retention[]
  922. tag::transform-retention-time[]
  923. Specifies that the {transform} uses a time field to set the retention policy.
  924. Data is deleted if `time.field` for the retention policy exists and contains
  925. data older than `max.age`.
  926. end::transform-retention-time[]
  927. tag::transform-retention-time-field[]
  928. The date field that is used to calculate the age of the document. Set
  929. `time.field` to an existing date field.
  930. end::transform-retention-time-field[]
  931. tag::transform-retention-time-max-age[]
  932. Specifies the maximum age of a document in the destination index. Documents that
  933. are older than the configured value are removed from the destination index.
  934. end::transform-retention-time-max-age[]
  935. tag::transform-settings[]
  936. Defines optional {transform} settings.
  937. end::transform-settings[]
  938. tag::transform-settings-dates-as-epoch-milli[]
  939. Defines if dates in the output should be written as ISO formatted string (default)
  940. or as millis since epoch. `epoch_millis` has been the default for transforms created
  941. before version `7.11`. For compatible output set this to `true`.
  942. The default value is `false`.
  943. end::transform-settings-dates-as-epoch-milli[]
  944. tag::transform-settings-docs-per-second[]
  945. Specifies a limit on the number of input documents per second. This setting
  946. throttles the {transform} by adding a wait time between search requests. The
  947. default value is `null`, which disables throttling.
  948. end::transform-settings-docs-per-second[]
  949. tag::transform-settings-align-checkpoints[]
  950. Specifies whether the transform checkpoint ranges should be optimized for performance.
  951. Such optimization can align checkpoint ranges with date histogram interval when date histogram
  952. is specified as a group source in the transform config. As an effect, less document updates in the
  953. destination index will be performed thus improving overall performance.
  954. The default value is `true`, which means the checkpoint ranges will be optimized if possible.
  955. end::transform-settings-align-checkpoints[]
  956. tag::transform-settings-deduce-mappings[]
  957. Specifies whether the transform should deduce the destination index mappings from the transform config.
  958. The default value is `true`, which means the destination index mappings will be deduced if possible.
  959. end::transform-settings-deduce-mappings[]
  960. tag::transform-settings-max-page-search-size[]
  961. Defines the initial page size to use for the composite aggregation for each
  962. checkpoint. If circuit breaker exceptions occur, the page size is dynamically
  963. adjusted to a lower value. The minimum value is `10` and the maximum is `65,536`.
  964. The default value is `500`.
  965. end::transform-settings-max-page-search-size[]
  966. tag::transform-settings-num-failure-retries[]
  967. Defines the number of retries on a recoverable failure before the {transform} task is marked as `failed`.
  968. The minimum value is `0` and the maximum is `100`.
  969. `-1` can be used to denote infinity. In this case, the {transform} never gives up on retrying a recoverable failure.
  970. The default value is the cluster-level setting `num_transform_failure_retries`.
  971. end::transform-settings-num-failure-retries[]
  972. tag::transform-settings-unattended[]
  973. If `true`, the {transform} runs in unattended mode. In unattended mode, the
  974. {transform} retries indefinitely in case of an error which means the {transform}
  975. never fails. Setting the number of retries other than infinite fails in
  976. validation. Defaults to `false`.
  977. end::transform-settings-unattended[]
  978. tag::transform-sort[]
  979. Specifies the date field that is used to identify the latest documents.
  980. end::transform-sort[]
  981. tag::transform-unique-key[]
  982. Specifies an array of one or more fields that are used to group the data.
  983. end::transform-unique-key[]
  984. tag::target-index[]
  985. `<target-index>`::
  986. +
  987. --
  988. (Required, string)
  989. Name of the target index to create.
  990. include::{es-ref-dir}/indices/create-index.asciidoc[tag=index-name-reqs]
  991. --
  992. end::target-index[]
  993. tag::task-id[]
  994. `<task_id>`::
  995. (Optional, string) ID of the task to return
  996. (`node_id:task_number`).
  997. end::task-id[]
  998. tag::term_statistics[]
  999. `term_statistics`::
  1000. (Optional, Boolean) If `true`, the response includes term frequency and document frequency.
  1001. Defaults to `false`.
  1002. end::term_statistics[]
  1003. tag::terminate_after[]
  1004. `terminate_after`::
  1005. (Optional, integer) Maximum number of documents to collect for each shard. If a
  1006. query reaches this limit, {es} terminates the query early. {es} collects
  1007. documents before sorting.
  1008. +
  1009. IMPORTANT: Use with caution. {es} applies this parameter to each shard handling
  1010. the request. When possible, let {es} perform early termination automatically.
  1011. Avoid specifying this parameter for requests that target data streams with
  1012. backing indices across multiple data tiers.
  1013. end::terminate_after[]
  1014. tag::time[]
  1015. `time`::
  1016. (Optional, <<time-units,time units>>)
  1017. Unit used to display time values.
  1018. end::time[]
  1019. tag::timeoutparms[]
  1020. tag::master-timeout[]
  1021. `master_timeout`::
  1022. (Optional, <<time-units, time units>>)
  1023. Period to wait for the master node. If the master node is not available before
  1024. the timeout expires, the request fails and returns an error. Defaults to `30s`.
  1025. Can also be set to `-1` to indicate that the request should never timeout.
  1026. end::master-timeout[]
  1027. `timeout`::
  1028. (Optional, <<time-units, time units>>) Period to wait for a response from all relevant nodes in the cluster after updating the cluster metadata.
  1029. If no response is received before the timeout expires, the cluster metadata update still applies but the response will indicate that it was not completely acknowledged.
  1030. Defaults to `30s`.
  1031. Can also be set to `-1` to indicate that the request should never timeout.
  1032. end::timeoutparms[]
  1033. tag::timeout-nodes-request[]
  1034. `timeout`::
  1035. (Optional, <<time-units, time units>>)
  1036. Period to wait for each node to respond. If a node does not respond before its
  1037. timeout expires, the response does not include its information. However, timed out
  1038. nodes are included in the response's `_nodes.failed` property. Defaults to no
  1039. timeout.
  1040. end::timeout-nodes-request[]
  1041. tag::transform-id[]
  1042. Identifier for the {transform}.
  1043. end::transform-id[]
  1044. tag::transform-id-wildcard[]
  1045. Identifier for the {transform}. It can be a {transform} identifier or a wildcard
  1046. expression. If you do not specify one of these options, the API returns
  1047. information for all {transforms}.
  1048. end::transform-id-wildcard[]
  1049. tag::trigger-count[]
  1050. The number of times the {transform} has been triggered by the scheduler. For
  1051. example, the scheduler triggers the {transform} indexer to check for updates
  1052. or ingest new data at an interval specified in the
  1053. <<put-transform-request-body,`frequency` property>>.
  1054. end::trigger-count[]
  1055. tag::cat-v[]
  1056. `v`::
  1057. (Optional, Boolean) If `true`, the response includes column headings.
  1058. Defaults to `false`.
  1059. end::cat-v[]
  1060. tag::version[]
  1061. `version`::
  1062. (Optional, Boolean) If `true`, returns the document version as part of a hit.
  1063. end::version[]
  1064. tag::doc-version[]
  1065. `version`::
  1066. (Optional, integer) Explicit version number for concurrency control.
  1067. The specified version must match the current version of the document for the
  1068. request to succeed.
  1069. end::doc-version[]
  1070. tag::segment-version[]
  1071. Version of Lucene used to write the segment.
  1072. end::segment-version[]
  1073. tag::version_type[]
  1074. `version_type`::
  1075. (Optional, enum) Specific version type: `external`,
  1076. `external_gte`.
  1077. end::version_type[]
  1078. tag::wait_for_active_shards[]
  1079. `wait_for_active_shards`::
  1080. +
  1081. --
  1082. (Optional, string) The number of copies of each shard that must be active
  1083. before proceeding with the operation. Set to `all` or any non-negative integer
  1084. up to the total number of copies of each shard in the index
  1085. (`number_of_replicas+1`). Defaults to `1`, meaning to wait just for each
  1086. primary shard to be active.
  1087. See <<index-wait-for-active-shards>>.
  1088. --
  1089. end::wait_for_active_shards[]
  1090. tag::rrf-retrievers[]
  1091. `retrievers`::
  1092. (Required, array of retriever objects)
  1093. +
  1094. A list of child retrievers to specify which sets of returned top documents
  1095. will have the RRF formula applied to them. Each child retriever carries an
  1096. equal weight as part of the RRF formula. Two or more child retrievers are
  1097. required.
  1098. end::rrf-retrievers[]
  1099. tag::rrf-rank-constant[]
  1100. `rank_constant`::
  1101. (Optional, integer)
  1102. +
  1103. This value determines how much influence documents in individual
  1104. result sets per query have over the final ranked result set. A higher value indicates
  1105. that lower ranked documents have more influence. This value must be greater than or
  1106. equal to `1`. Defaults to `60`.
  1107. end::rrf-rank-constant[]
  1108. tag::rrf-rank-window-size[]
  1109. `rank_window_size`::
  1110. (Optional, integer)
  1111. +
  1112. This value determines the size of the individual result sets per
  1113. query. A higher value will improve result relevance at the cost of performance. The final
  1114. ranked result set is pruned down to the search request's <<search-size-param, size>>.
  1115. `rank_window_size` must be greater than or equal to `size` and greater than or equal to `1`.
  1116. Defaults to the `size` parameter.
  1117. end::rrf-rank-window-size[]
  1118. tag::rrf-filter[]
  1119. `filter`::
  1120. (Optional, <<query-dsl, query object or list of query objects>>)
  1121. +
  1122. Applies the specified <<query-dsl-bool-query, boolean query filter>> to all of the specified sub-retrievers,
  1123. according to each retriever's specifications.
  1124. end::rrf-filter[]