elasticsearch
elasticsearch copied to clipboard
Free and Open Source, Distributed, RESTful Search Engine
EQL queries allow to pass a "size" parameter to limit the number of returned results: ``` { "size": 3, "query": "" } ``` This PR adds support for this parameter...
Backports the following commits to 8.4: - Log when repository is marked as corrupted (#89132)
When we introduced "authorization delegation" we piggy backed on the implementation and documentation for "run as". The authorization delegation docs just link to "run as" in order to explain which...
Fixes #40305
### Elasticsearch Version 8.3.1 ### Installed Plugins _No response_ ### Java Version _bundled_ ### OS Version Linux 5.4.196-108.356.amzn2.x86_64 ### Problem Description Elasticsearch in EKS does not honour `eks.amazonaws.com/sts-regional-endpoints=true` for IAM...
Our release builds have been failing because on [startup ES now checks](https://gradle-enterprise.elastic.co/s/yndbpn74kho24/console-log?task=:rest-api-spec:yamlRestTest#L7) to ensure the APM module is present in non-snapshot builds. To remedy this we simply need to ensure...
This PR adds a new `errors` field in the ProfilehasPrivileges response to report detailed errors encountered, including missing UIDs. It also removes the existing `errors_uids` field since this is redundant...
This PR expands existing YAML tests and docs for the new role_descriptors field returned in both Get and Query API key calls. Relates: #89166, #89058
`track_total_hits` has some performance cost, that in many cases can be avoided. This PR sets track_total_hits=false in all cases where the execution plan did not explicitly declare that track_total_hits is...
In Sample query execution, intermediary queries do not need to return all the fields from the retrieved documents: only join keys are needed to for the processing. This PR optimizes...