forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into threadpool-merge-scheduler-sort-all-merges
- Loading branch information
Showing
270 changed files
with
9,527 additions
and
3,112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 118122 | ||
summary: "ES|QL: Partial result on demand for async queries" | ||
area: ES|QL | ||
type: enhancement | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
pr: 119072 | ||
summary: Turn `_source` meta fieldmapper's mode attribute into a no-op | ||
area: Mapping | ||
type: breaking | ||
issues: | ||
- 118596 | ||
breaking: | ||
title: Turn `_source` meta fieldmapper's mode attribute into a no-op | ||
area: Mapping | ||
details: The `mode` mapping attribute of `_source` metadata field mapper has been turned into a no-op. Instead the `index.mapping.source.mode` index setting should be used to configure source mode. | ||
impact: Configuring the `mode` attribute for the `_source` meta field mapper will have no effect on indices created with Elasticsearch 9.0.0 or later. Note that `_source.mode` configured on indices before upgrading to 9.0.0 or later will remain efficive after upgrading. | ||
notable: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
pr: 120256 | ||
summary: Improve memory aspects of enrich cache | ||
area: Ingest Node | ||
type: enhancement | ||
issues: | ||
- 96050 | ||
- 120021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 120645 | ||
summary: Esql Support date nanos on date diff function | ||
area: ES|QL | ||
type: enhancement | ||
issues: | ||
- 109999 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 120722 | ||
summary: Migrate stream to core error parsing | ||
area: Machine Learning | ||
type: enhancement | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[[esql-async-query-stop-api]] | ||
=== {esql} async query stop API | ||
++++ | ||
<titleabbrev>{esql} async query stop API</titleabbrev> | ||
++++ | ||
|
||
.New API reference | ||
[sidebar] | ||
-- | ||
For the most up-to-date API details, refer to {api-es}/group/endpoint-esql[ES|QL APIs]. | ||
-- | ||
|
||
The <<esql,{esql}>> async query stop API is used to manually stop an async query. Once the stop command is issued, | ||
the query stops processing new data and returns the results that have been already processed. Note that due to the pipelined | ||
nature of {esql} queries, the stop operation is not immediate and may take time to return results. | ||
|
||
The results are returned in <<esql-query-api-response-body,the same format>> as the | ||
<<esql-async-query-get-api,{esql} async query get API>>. | ||
If the query has been finished by the time the stop command is issued, the results are returned immediately. | ||
|
||
If the query processing has not finished by the time the stop command is issued, the response will have the `is_partial` | ||
field set to `true`. | ||
|
||
[source,console] | ||
---- | ||
POST /query/async/FkpMRkJGS1gzVDRlM3g4ZzMyRGlLbkEaTXlJZHdNT09TU2VTZVBoNDM3cFZMUToxMDM=/stop | ||
---- | ||
// TEST[skip: no access to query ID] | ||
|
||
[[esql-async-query-stop-api-request]] | ||
==== {api-request-title} | ||
|
||
`POST /_query/async/<query_id>/stop` | ||
|
||
[[esql-async-query-stop-api-prereqs]] | ||
==== {api-prereq-title} | ||
|
||
* If the {es} {security-features} are enabled, only the authenticated user that submitted the original query request | ||
can stop the query. | ||
|
||
[[esql-async-query-stop-api-path-params]] | ||
==== {api-path-parms-title} | ||
|
||
`<query_id>`:: | ||
(Required, string) | ||
Identifier for the query to stop. | ||
+ | ||
A query ID is provided in the <<esql-async-query-api,{esql} async query API>>'s | ||
response for a query that does not complete in the awaited time. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.