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
+19-20Lines changed: 19 additions & 20 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-*"],
@@ -1132,21 +1136,20 @@ changelogs:
1132
1136
}
1133
1137
}
1134
1138
}
1135
-
}'
1136
-
----
1139
+
}
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`:
0 commit comments