ES|QL async query delete APIedit

The ES|QL async query delete API is used to manually delete an async query by ID. If the query is still running, the query will be cancelled. Otherwise, the stored results are deleted.

DELETE /query/async/FkpMRkJGS1gzVDRlM3g4ZzMyRGlLbkEaTXlJZHdNT09TU2VTZVBoNDM3cFZMUToxMDM=

Requestedit

DELETE /_query/async/<query_id>

Prerequisitesedit

  • If the Elasticsearch security features are enabled, only the following users can use this API to delete a query:

    • The authenticated user that submitted the original query request
    • Users with the cancel_task cluster privilege

Path parametersedit

<query_id>

(Required, string) Identifier for the query to delete.

A query ID is provided in the ES|QL async query API's response for a query that does not complete in the awaited time. A query ID is also provided if the request’s keep_on_completion parameter is true.