You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes/changelog-bundles/9.1.0.yml
+18-19Lines changed: 18 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -669,6 +669,11 @@ changelogs:
669
669
area: Machine Learning
670
670
type: enhancement
671
671
issues: []
672
+
- pr: 2831
673
+
summary: Track memory used in the hierarchical results normalizer
674
+
area: Machine Learning
675
+
type: enhancement
676
+
issues: []
672
677
- pr: 125520
673
678
summary: Add `FailedShardEntry` info to shard-failed task source string
674
679
area: Allocation
@@ -1060,7 +1065,7 @@ changelogs:
1060
1065
notable: true
1061
1066
title: Upgrade `repository-s3` to AWS SDK v2
1062
1067
body: |-
1063
-
In earlier versions of {es} the `repository-s3` plugin was based on the AWS SDK v1. AWS will withdraw support for this SDK before the end of the life of {es} {minor-version} so we have migrated this plugin to the newer AWS SDK v2.
1068
+
In earlier versions of {{es}} the `repository-s3` plugin was based on the AWS SDK v1. AWS will withdraw support for this SDK before the end of the life of {{es}} 9.1 so we have migrated this plugin to the newer AWS SDK v2.
1064
1069
The two SDKs are not quite compatible, so please check the breaking changes documentation and test the new version thoroughly before upgrading any production workloads.
1065
1070
pr: 126843
1066
1071
- pr: 126856
@@ -1119,8 +1124,7 @@ changelogs:
1119
1124
new data streams by specifying it in the new `data_stream_options` field
1120
1125
inside of a component or index template:
1121
1126
1122
-
[source,yaml]
1123
-
----
1127
+
```yaml
1124
1128
PUT _index_template/my-template
1125
1129
{
1126
1130
"index_patterns": ["logs-test-*"],
@@ -1133,20 +1137,19 @@ changelogs:
1133
1137
}
1134
1138
}
1135
1139
}'
1136
-
----
1140
+
```
1137
1141
1138
1142
Existing data streams can be configured with the new data stream
1139
1143
`_options` endpoint:
1140
1144
1141
-
[source,yaml]
1142
-
----
1145
+
```yaml
1143
1146
PUT _data_stream/logs-test-apache/_options
1144
1147
{
1145
1148
"failure_store": {
1146
1149
"enabled": "true"
1147
1150
}
1148
1151
}
1149
-
----
1152
+
```
1150
1153
1151
1154
When redirection is enabled, any ingestion related failures will be
1152
1155
captured in the failure store if the cluster is able to, along with the
@@ -1158,26 +1161,24 @@ changelogs:
1158
1161
stream data. In order to retrieve the failures, we use the `_search` API
1159
1162
along with a new bit of index pattern syntax, the `::` selector.
1160
1163
1161
-
[source,yaml]
1162
-
----
1164
+
```yaml
1163
1165
POST logs-test-apache::failures/_search
1164
-
----
1166
+
```
1165
1167
1166
1168
This index syntax informs the search operation to target the indices in
1167
1169
its failure store instead of its backing indices. It can be mixed in a
1168
1170
number of ways with other index patterns to include their failure store
1169
1171
indices in the search operation:
1170
1172
1171
-
[source,yaml]
1172
-
----
1173
+
```yaml
1173
1174
POST logs-*::failures/_search
1174
1175
POST logs-*,logs-*::failures/_search
1175
1176
POST *::failures/_search
1176
1177
POST _query
1177
1178
{
1178
1179
"query": "FROM my_data_stream*::failures"
1179
1180
}
1180
-
----
1181
+
```
1181
1182
pr: 126973
1182
1183
- pr: 127006
1183
1184
summary: Correctly handle non-integers in nested paths in the remove processor
@@ -1887,24 +1888,22 @@ changelogs:
1887
1888
1888
1889
Example:
1889
1890
1890
-
[source,yaml]
1891
-
----------------------------
1891
+
```yaml
1892
1892
FROM test
1893
1893
| FORK
1894
1894
( WHERE content:"fox" )
1895
1895
( WHERE content:"dog" )
1896
1896
| SORT _fork
1897
-
----------------------------
1897
+
```
1898
1898
1899
1899
The FORK command add a discriminator column called `_fork`:
Copy file name to clipboardExpand all lines: docs/release-notes/index.md
+14-19Lines changed: 14 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@ This caused unintended timeouts or cancellations during subsequent phases under
127
127
### Highlights [elasticsearch-9.1.0-highlights]
128
128
129
129
::::{dropdown} Upgrade `repository-s3` to AWS SDK v2
130
-
In earlier versions of {es} the `repository-s3` plugin was based on the AWS SDK v1. AWS will withdraw support for this SDK before the end of the life of {es} {minor-version} so we have migrated this plugin to the newer AWS SDK v2.
130
+
In earlier versions of {{es}} the `repository-s3` plugin was based on the AWS SDK v1. AWS will withdraw support for this SDK before the end of the life of {{es}} 9.1 so we have migrated this plugin to the newer AWS SDK v2.
131
131
The two SDKs are not quite compatible, so please check the breaking changes documentation and test the new version thoroughly before upgrading any production workloads.
132
132
::::
133
133
@@ -153,8 +153,7 @@ Users can enable redirection of ingest failures to the failure store on
153
153
new data streams by specifying it in the new `data_stream_options` field
154
154
inside of a component or index template:
155
155
156
-
[source,yaml]
157
-
----
156
+
```yaml
158
157
PUT _index_template/my-template
159
158
{
160
159
"index_patterns": ["logs-test-*"],
@@ -167,20 +166,19 @@ PUT _index_template/my-template
167
166
}
168
167
}
169
168
}'
170
-
----
169
+
```
171
170
172
171
Existing data streams can be configured with the new data stream
173
172
`_options` endpoint:
174
173
175
-
[source,yaml]
176
-
----
174
+
```yaml
177
175
PUT _data_stream/logs-test-apache/_options
178
176
{
179
177
"failure_store": {
180
178
"enabled": "true"
181
179
}
182
180
}
183
-
----
181
+
```
184
182
185
183
When redirection is enabled, any ingestion related failures will be
186
184
captured in the failure store if the cluster is able to, along with the
@@ -192,26 +190,24 @@ default as they are stored in different indices than the normal data
192
190
stream data. In order to retrieve the failures, we use the `_search` API
193
191
along with a new bit of index pattern syntax, the `::` selector.
194
192
195
-
[source,yaml]
196
-
----
193
+
```yaml
197
194
POST logs-test-apache::failures/_search
198
-
----
195
+
```
199
196
200
197
This index syntax informs the search operation to target the indices in
201
198
its failure store instead of its backing indices. It can be mixed in a
202
199
number of ways with other index patterns to include their failure store
203
200
indices in the search operation:
204
201
205
-
[source,yaml]
206
-
----
202
+
```yaml
207
203
POST logs-*::failures/_search
208
204
POST logs-*,logs-*::failures/_search
209
205
POST *::failures/_search
210
206
POST _query
211
207
{
212
208
"query": "FROM my_data_stream*::failures"
213
209
}
214
-
----
210
+
```
215
211
::::
216
212
217
213
::::{dropdown} Mark Token Pruning for Sparse Vector as GA
@@ -234,24 +230,22 @@ Conceptually, fork is:
234
230
235
231
Example:
236
232
237
-
[source,yaml]
238
-
----------------------------
233
+
```yaml
239
234
FROM test
240
235
| FORK
241
236
( WHERE content:"fox" )
242
237
( WHERE content:"dog" )
243
238
| SORT _fork
244
-
----------------------------
239
+
```
245
240
246
241
The FORK command add a discriminator column called `_fork`:
247
242
248
-
[source,yaml]
249
-
----------------------------
243
+
```yaml
250
244
| id | content | _fork |
251
245
|-----|-----------|-------|
252
246
| 3 | brown fox | fork1 |
253
247
| 4 | white dog | fork2 |
254
-
----------------------------
248
+
```
255
249
::::
256
250
257
251
::::{dropdown} ES|QL cross-cluster querying is now generally available
@@ -468,6 +462,7 @@ Machine Learning:
468
462
* Mark token pruning for sparse vector as GA [#128854](https://github.com/elastic/elasticsearch/pull/128854)
469
463
* Move to the Cohere V2 API for new inference endpoints [#129884](https://github.com/elastic/elasticsearch/pull/129884)
470
464
* Semantic Text Chunking Indexing Pressure [#125517](https://github.com/elastic/elasticsearch/pull/125517)
465
+
* Track memory used in the hierarchical results normalizer [#2831](https://github.com/elastic/ml-cpp/pull/2831)
471
466
* Upgrade AWS v2 SDK to 2.30.38 [#124738](https://github.com/elastic/elasticsearch/pull/124738)
472
467
*[Inference API] Propagate product use case http header to EIS [#124025](https://github.com/elastic/elasticsearch/pull/124025)
473
468
*[ML] Add HuggingFace Chat Completion support to the Inference Plugin [#127254](https://github.com/elastic/elasticsearch/pull/127254)
0 commit comments