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/reference/migration/migrate_8_18.asciidoc
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,20 @@ Before this change, in case of shard failures, EQL queries always returned an er
81
81
EQL queries that would previously fail due to shard failures, will now succeed and return partial results. The previous defaults can be restored by setting `xpack.eql.default_allow_partial_results` cluster setting to `false` or setting with `allow_partial_search_results` to `false` in the query request.
.Limit the scope of the skip_unavailable setting for remote clusters
90
+
[%collapsible]
91
+
====
92
+
*Details* +
93
+
Before this change, ES|QL would honor the skip_unavailable setting for nonmatching indices errors at planning time, meaning that when a query with a concrete (non-wildcarded) index was issued to a cluster where skip_unavailable=true, the index would be skipped, allowing the query to proceed on any other specified clusters rather than returning an error.
94
+
95
+
*Impact* +
96
+
Remote clusters, regardless of their skip_unavailable setting, will now use the same logic as the local cluster for index expression analysis at plan time. As a result, any missing concrete index in your index expression will return an error rather than partial results.
Copy file name to clipboardExpand all lines: docs/reference/release-notes/highlights.asciidoc
+96-6Lines changed: 96 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,12 +33,102 @@ Other versions:
33
33
34
34
endif::[]
35
35
36
-
// The notable-highlights tag marks entries that
37
-
// should be featured in the Stack Installation and Upgrade Guide:
38
36
// tag::notable-highlights[]
39
-
// [discrete]
40
-
// === Heading
41
-
//
42
-
// Description.
37
+
38
+
[discrete]
39
+
[[upgrade_repository_s3_to_aws_sdk_v2]]
40
+
=== Upgrade `repository-s3` to AWS SDK v2
41
+
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.
42
+
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.
0 commit comments