Skip to content

Commit ba6340b

Browse files
authored
Merge branch '8.19' into automated/rest-api-spec-update-8.x
2 parents 9635cbf + 44081a8 commit ba6340b

File tree

6 files changed

+20
-14
lines changed

6 files changed

+20
-14
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/esql/async_query/AsyncQueryRequest.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ export interface Request extends RequestBase {
4040
query_parameters: {
4141
/**
4242
* If `true`, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
43-
* @server_default false
43+
* If `false`, the query will fail if there are any failures.
44+
*
45+
* To override the default behavior, you can set the `esql.query.allow_partial_results` cluster setting to `false`.
46+
* @server_default true
4447
*/
4548
allow_partial_results?: boolean
4649
/**

specification/esql/query/QueryRequest.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ export interface Request extends RequestBase {
5757
drop_null_columns?: boolean
5858
/**
5959
* If `true`, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
60-
* @server_default false
60+
* If `false`, the query will fail if there are any failures.
61+
*
62+
* To override the default behavior, you can set the `esql.query.allow_partial_results` cluster setting to `false`.
63+
* @server_default true
6164
*/
6265
allow_partial_results?: boolean
6366
}

0 commit comments

Comments
 (0)