Skip to content

Commit 452cae1

Browse files
Merge branch 'main' into StatementParserTests
2 parents 04d010f + e7e1155 commit 452cae1

File tree

67 files changed

+3765
-226
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+3765
-226
lines changed

docs/changelog/116026.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
pr: 116026
2+
summary: Change Elasticsearch timeouts to 429 response instead of 5xx
3+
area: Infra/Core
4+
type: breaking
5+
issues: []
6+
breaking:
7+
title: Change most Elasticsearch timeouts to 429 response instead of 5xx
8+
area: REST API
9+
details: When a timeout occurs in most REST requests, whether via a per-request timeout, or a system default, the
10+
request would return a 5xx response code. The response code from those APIs when a timeout occurs is now 429.
11+
impact: Adjust any code relying on retrying on 5xx responses for timeouts to look for a 429 response code and
12+
inspect the response to determine whether a timeout occured.
13+
notable: false

docs/changelog/120222.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 120222
2+
summary: Adding linear retriever to support weighted sums of sub-retrievers
3+
area: "Search"
4+
type: enhancement
5+
issues: []

docs/changelog/120821.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 120821
2+
summary: "[Deprecation] Add `transform_ids` to outdated index"
3+
area: Transform
4+
type: enhancement
5+
issues: []

docs/reference/alias.asciidoc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
[[aliases]]
33
= Aliases
44

5-
An alias is a secondary name for a group of data streams or indices. Most {es}
5+
An alias points to one or more indices or data streams. Most {es}
66
APIs accept an alias in place of a data stream or index name.
77

8-
You can change the data streams or indices of an alias at any time. If you use
9-
aliases in your application's {es} requests, you can reindex data with no
10-
downtime or changes to your app's code.
8+
Aliases enable you to:
9+
10+
* Query multiple indices/data streams together with a single name
11+
* Change which indices/data streams your application uses in real time
12+
* <<docs-reindex,Reindex>> data without downtime
1113

1214
[discrete]
1315
[[alias-types]]

docs/reference/inference/elastic-infer-service.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ include::inference-shared.asciidoc[tag=chat-completion-docs]
4949
==== {api-request-body-title}
5050

5151

52-
`max_chunking_size`:::
52+
`max_chunk_size`:::
5353
(Optional, integer)
5454
include::inference-shared.asciidoc[tag=chunking-settings-max-chunking-size]
5555

docs/reference/inference/inference-shared.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tag::chunking-settings-overlap[]
4848
Only for `word` chunking strategy.
4949
Specifies the number of overlapping words for chunks.
5050
Defaults to `100`.
51-
This value cannot be higher than the half of `max_chunking_size`.
51+
This value cannot be higher than the half of `max_chunk_size`.
5252
end::chunking-settings-overlap[]
5353

5454
tag::chunking-settings-sentence-overlap[]

docs/reference/inference/service-alibabacloud-ai-search.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Available task types:
4444
(Optional, object)
4545
include::inference-shared.asciidoc[tag=chunking-settings]
4646

47-
`max_chunking_size`:::
47+
`max_chunk_size`:::
4848
(Optional, integer)
4949
include::inference-shared.asciidoc[tag=chunking-settings-max-chunking-size]
5050

docs/reference/inference/service-amazon-bedrock.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Available task types:
4242
(Optional, object)
4343
include::inference-shared.asciidoc[tag=chunking-settings]
4444

45-
`max_chunking_size`:::
45+
`max_chunk_size`:::
4646
(Optional, integer)
4747
include::inference-shared.asciidoc[tag=chunking-settings-max-chunking-size]
4848

docs/reference/inference/service-anthropic.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Available task types:
4242
(Optional, object)
4343
include::inference-shared.asciidoc[tag=chunking-settings]
4444

45-
`max_chunking_size`:::
45+
`max_chunk_size`:::
4646
(Optional, integer)
4747
include::inference-shared.asciidoc[tag=chunking-settings-max-chunking-size]
4848

docs/reference/inference/service-azure-ai-studio.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Available task types:
4343
(Optional, object)
4444
include::inference-shared.asciidoc[tag=chunking-settings]
4545

46-
`max_chunking_size`:::
46+
`max_chunk_size`:::
4747
(Optional, integer)
4848
include::inference-shared.asciidoc[tag=chunking-settings-max-chunking-size]
4949

0 commit comments

Comments
 (0)