Skip to content

Commit

Permalink
Merge branch 'main' into ml-inference-client-task-type-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-buttner authored Jan 28, 2025
2 parents 1bf0253 + e1467c2 commit 0695f3f
Show file tree
Hide file tree
Showing 103 changed files with 5,614 additions and 598 deletions.
13 changes: 13 additions & 0 deletions docs/changelog/116026.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
pr: 116026
summary: Change Elasticsearch timeouts to 429 response instead of 5xx
area: Infra/Core
type: breaking
issues: []
breaking:
title: Change most Elasticsearch timeouts to 429 response instead of 5xx
area: REST API
details: When a timeout occurs in most REST requests, whether via a per-request timeout, or a system default, the
request would return a 5xx response code. The response code from those APIs when a timeout occurs is now 429.
impact: Adjust any code relying on retrying on 5xx responses for timeouts to look for a 429 response code and
inspect the response to determine whether a timeout occured.
notable: false
5 changes: 5 additions & 0 deletions docs/changelog/120168.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 120168
summary: Reduce Data Loss in System Indices Migration
area: Infra/Core
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/120222.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 120222
summary: Adding linear retriever to support weighted sums of sub-retrievers
area: "Search"
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/120551.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 120551
summary: Set default reranker for text similarity reranker to Elastic reranker
area: Ranking
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/120842.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 120842
summary: Remove Elastic Inference Service feature flag and deprecated setting
area: Inference
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/120913.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 120913
summary: Automatically rollover legacy .ml-anomalies indices
area: Machine Learning
type: upgrade
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/120974.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 120974
summary: Tweak `copy_to` handling in synthetic `_source` to account for nested objects
area: Mapping
type: bug
issues:
- 120831
5 changes: 5 additions & 0 deletions docs/changelog/121048.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 121048
summary: Updating Inference Update API documentation to have the correct PUT method
area: Machine Learning
type: bug
issues: []
10 changes: 6 additions & 4 deletions docs/reference/alias.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
[[aliases]]
= Aliases

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

You can change the data streams or indices of an alias at any time. If you use
aliases in your application's {es} requests, you can reindex data with no
downtime or changes to your app's code.
Aliases enable you to:

* Query multiple indices/data streams together with a single name
* Change which indices/data streams your application uses in real time
* <<docs-reindex,Reindex>> data without downtime

[discrete]
[[alias-types]]
Expand Down
Loading

0 comments on commit 0695f3f

Please sign in to comment.