elasticsearch/docs/reference/esql/esql-apis.asciidoc
Stanislav Malyshev f27f74666f
ES|QL async queries: Partial result on demand (#118122)
Add capability to stop async query on demand
The theory:

- User initiates async search request
- User sends the stop request (POST _query/async/<ID>/stop)
- If the async is finished by that time, it's like regular async get
- If it's not finished, the sinks are closed and the request is forcefully finished
2025-01-23 10:21:52 -07:00

31 lines
824 B
Text

[[esql-apis]]
== {esql} APIs
.New API reference
[sidebar]
--
For the most up-to-date API details, refer to {api-es}/group/endpoint-esql[ES|QL APIs].
--
https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-esql-query
The <<esql,{es} Query Language ({esql})>> provides a powerful way to filter, transform,
and analyze data stored in {es}, and in the future in other runtimes. For an
overview of {esql} and related tutorials, see <<esql>>.
* <<esql-query-api>>
* <<esql-async-query-api>>
* <<esql-async-query-get-api>>
* <<esql-async-query-delete-api>>
* <<esql-async-query-stop-api>>
include::esql-query-api.asciidoc[]
include::esql-async-query-api.asciidoc[]
include::esql-async-query-get-api.asciidoc[]
include::esql-async-query-delete-api.asciidoc[]
include::esql-async-query-stop-api.asciidoc[]