mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-24 23:27:25 -04:00
[DOCS] Document PIT security for aliases (#69572)
This commit is contained in:
parent
70b8c4e69a
commit
e432934e82
2 changed files with 24 additions and 0 deletions
|
@ -20,6 +20,9 @@ changes happening between searches are only visible to the more recent point in
|
|||
* If the {es} {security-features} are enabled, you must have the `read`
|
||||
<<privileges-list-indices,index privilege>> for the target data stream, index,
|
||||
or index alias.
|
||||
+
|
||||
To search a <<point-in-time-api,point in time (PIT)>> for an index alias, you
|
||||
must have the `read` index privilege for the alias's concrete indices.
|
||||
|
||||
[[point-in-time-api-example]]
|
||||
==== {api-examples-title}
|
||||
|
|
|
@ -29,6 +29,9 @@ GET /my-index-000001/_search
|
|||
* If the {es} {security-features} are enabled, you must have the `read`
|
||||
<<privileges-list-indices,index privilege>> for the target data stream, index,
|
||||
or index alias. For cross-cluster search, see <<cross-cluster-configuring>>.
|
||||
+
|
||||
To search a <<point-in-time-api,point in time (PIT)>> for an index alias, you
|
||||
must have the `read` index privilege for the alias's concrete indices.
|
||||
|
||||
[[search-search-api-desc]]
|
||||
==== {api-description-title}
|
||||
|
@ -401,6 +404,24 @@ A boost value greater than `1.0` increases the score. A boost value between
|
|||
Minimum <<relevance-scores,`_score`>> for matching documents. Documents with a
|
||||
lower `_score` are not included in the search results.
|
||||
|
||||
`pit`::
|
||||
(Optional, object)
|
||||
Limits the search to a <<point-in-time-api,point in time (PIT)>>. If you provide
|
||||
a `pit`, you cannot specify a `<target>` in the request path.
|
||||
+
|
||||
.Properties of `pit`
|
||||
[%collapsible%open]
|
||||
====
|
||||
`id`::
|
||||
(Required*, string)
|
||||
ID for the PIT to search. If you provide a `pit` object, this parameter is
|
||||
required.
|
||||
|
||||
`keep_alive`::
|
||||
(Optional, <<time-units,time value>>)
|
||||
Period of time used to extend the life of the PIT.
|
||||
====
|
||||
|
||||
[[request-body-search-query]]
|
||||
`query`::
|
||||
(Optional, <<query-dsl,query object>>) Defines the search definition using the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue