Skip to content

Commit df1283a

Browse files
Fix typos in previous release notes and sources
1 parent 685c554 commit df1283a

File tree

2 files changed

+32
-38
lines changed

2 files changed

+32
-38
lines changed

docs/release-notes/changelog-bundles/9.1.0.yml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,11 @@ changelogs:
669669
area: Machine Learning
670670
type: enhancement
671671
issues: []
672+
- pr: 2831
673+
summary: Track memory used in the hierarchical results normalizer
674+
area: Machine Learning
675+
type: enhancement
676+
issues: []
672677
- pr: 125520
673678
summary: Add `FailedShardEntry` info to shard-failed task source string
674679
area: Allocation
@@ -1060,7 +1065,7 @@ changelogs:
10601065
notable: true
10611066
title: Upgrade `repository-s3` to AWS SDK v2
10621067
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.
10641069
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.
10651070
pr: 126843
10661071
- pr: 126856
@@ -1119,8 +1124,7 @@ changelogs:
11191124
new data streams by specifying it in the new `data_stream_options` field
11201125
inside of a component or index template:
11211126
1122-
[source,yaml]
1123-
----
1127+
```yaml
11241128
PUT _index_template/my-template
11251129
{
11261130
"index_patterns": ["logs-test-*"],
@@ -1133,20 +1137,19 @@ changelogs:
11331137
}
11341138
}
11351139
}'
1136-
----
1140+
```
11371141
11381142
Existing data streams can be configured with the new data stream
11391143
`_options` endpoint:
11401144
1141-
[source,yaml]
1142-
----
1145+
```yaml
11431146
PUT _data_stream/logs-test-apache/_options
11441147
{
11451148
"failure_store": {
11461149
"enabled": "true"
11471150
}
11481151
}
1149-
----
1152+
```
11501153
11511154
When redirection is enabled, any ingestion related failures will be
11521155
captured in the failure store if the cluster is able to, along with the
@@ -1158,26 +1161,24 @@ changelogs:
11581161
stream data. In order to retrieve the failures, we use the `_search` API
11591162
along with a new bit of index pattern syntax, the `::` selector.
11601163
1161-
[source,yaml]
1162-
----
1164+
```yaml
11631165
POST logs-test-apache::failures/_search
1164-
----
1166+
```
11651167
11661168
This index syntax informs the search operation to target the indices in
11671169
its failure store instead of its backing indices. It can be mixed in a
11681170
number of ways with other index patterns to include their failure store
11691171
indices in the search operation:
11701172
1171-
[source,yaml]
1172-
----
1173+
```yaml
11731174
POST logs-*::failures/_search
11741175
POST logs-*,logs-*::failures/_search
11751176
POST *::failures/_search
11761177
POST _query
11771178
{
11781179
"query": "FROM my_data_stream*::failures"
11791180
}
1180-
----
1181+
```
11811182
pr: 126973
11821183
- pr: 127006
11831184
summary: Correctly handle non-integers in nested paths in the remove processor
@@ -1887,24 +1888,22 @@ changelogs:
18871888
18881889
Example:
18891890
1890-
[source,yaml]
1891-
----------------------------
1891+
```yaml
18921892
FROM test
18931893
| FORK
18941894
( WHERE content:"fox" )
18951895
( WHERE content:"dog" )
18961896
| SORT _fork
1897-
----------------------------
1897+
```
18981898
18991899
The FORK command add a discriminator column called `_fork`:
19001900
1901-
[source,yaml]
1902-
----------------------------
1901+
```yaml
19031902
| id | content | _fork |
19041903
|-----|-----------|-------|
19051904
| 3 | brown fox | fork1 |
19061905
| 4 | white dog | fork2 |
1907-
----------------------------
1906+
```
19081907
pr: 129606
19091908
- pr: 129647
19101909
summary: Fix `PushQueriesIT.testLike()` fails

docs/release-notes/index.md

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ This caused unintended timeouts or cancellations during subsequent phases under
127127
### Highlights [elasticsearch-9.1.0-highlights]
128128

129129
::::{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.
131131
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.
132132
::::
133133

@@ -153,8 +153,7 @@ Users can enable redirection of ingest failures to the failure store on
153153
new data streams by specifying it in the new `data_stream_options` field
154154
inside of a component or index template:
155155

156-
[source,yaml]
157-
----
156+
```yaml
158157
PUT _index_template/my-template
159158
{
160159
"index_patterns": ["logs-test-*"],
@@ -167,20 +166,19 @@ PUT _index_template/my-template
167166
}
168167
}
169168
}'
170-
----
169+
```
171170

172171
Existing data streams can be configured with the new data stream
173172
`_options` endpoint:
174173

175-
[source,yaml]
176-
----
174+
```yaml
177175
PUT _data_stream/logs-test-apache/_options
178176
{
179177
"failure_store": {
180178
"enabled": "true"
181179
}
182180
}
183-
----
181+
```
184182

185183
When redirection is enabled, any ingestion related failures will be
186184
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
192190
stream data. In order to retrieve the failures, we use the `_search` API
193191
along with a new bit of index pattern syntax, the `::` selector.
194192

195-
[source,yaml]
196-
----
193+
```yaml
197194
POST logs-test-apache::failures/_search
198-
----
195+
```
199196

200197
This index syntax informs the search operation to target the indices in
201198
its failure store instead of its backing indices. It can be mixed in a
202199
number of ways with other index patterns to include their failure store
203200
indices in the search operation:
204201

205-
[source,yaml]
206-
----
202+
```yaml
207203
POST logs-*::failures/_search
208204
POST logs-*,logs-*::failures/_search
209205
POST *::failures/_search
210206
POST _query
211207
{
212208
"query": "FROM my_data_stream*::failures"
213209
}
214-
----
210+
```
215211
::::
216212

217213
::::{dropdown} Mark Token Pruning for Sparse Vector as GA
@@ -234,24 +230,22 @@ Conceptually, fork is:
234230

235231
Example:
236232

237-
[source,yaml]
238-
----------------------------
233+
```yaml
239234
FROM test
240235
| FORK
241236
( WHERE content:"fox" )
242237
( WHERE content:"dog" )
243238
| SORT _fork
244-
----------------------------
239+
```
245240

246241
The FORK command add a discriminator column called `_fork`:
247242

248-
[source,yaml]
249-
----------------------------
243+
```yaml
250244
| id | content | _fork |
251245
|-----|-----------|-------|
252246
| 3 | brown fox | fork1 |
253247
| 4 | white dog | fork2 |
254-
----------------------------
248+
```
255249
::::
256250

257251
::::{dropdown} ES|QL cross-cluster querying is now generally available
@@ -468,6 +462,7 @@ Machine Learning:
468462
* Mark token pruning for sparse vector as GA [#128854](https://github.com/elastic/elasticsearch/pull/128854)
469463
* Move to the Cohere V2 API for new inference endpoints [#129884](https://github.com/elastic/elasticsearch/pull/129884)
470464
* 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)
471466
* Upgrade AWS v2 SDK to 2.30.38 [#124738](https://github.com/elastic/elasticsearch/pull/124738)
472467
* [Inference API] Propagate product use case http header to EIS [#124025](https://github.com/elastic/elasticsearch/pull/124025)
473468
* [ML] Add HuggingFace Chat Completion support to the Inference Plugin [#127254](https://github.com/elastic/elasticsearch/pull/127254)

0 commit comments

Comments
 (0)