Skip to content

Commit

Permalink
Add known issue docs for #75598 (#79221)
Browse files Browse the repository at this point in the history
Adds a description of #75598, and the mitigation, to the release notes
of versions 7.13.2 through 7.14.0.
  • Loading branch information
DaveCTurner committed Oct 15, 2021
1 parent 922b743 commit fecc105
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
43 changes: 43 additions & 0 deletions docs/reference/release-notes/7.13.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ information, such as {es} documents or authentication details. All versions of
this issue. You must upgrade to {es} version 7.13.4 to obtain the fix.
https://cve.mitre.org/cgi-bin/cvename.cgi?name=2021-22145[CVE-2021-22145]

[[known-issues-7.13.4]]
[discrete]
=== Known issues

include::7.13.asciidoc[tag=snapshot-repo-corruption-75598-known-issue]

[[bug-7.13.4]]
[float]
=== Bug fixes
Expand Down Expand Up @@ -43,6 +49,11 @@ All versions of {es} prior to 7.13.3 are affected by this flaw.
You must upgrade to {es} version 7.13.3 to obtain the fix.
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22144[CVE-2021-22144]

[[known-issues-7.13.3]]
[discrete]
=== Known issues

include::7.13.asciidoc[tag=snapshot-repo-corruption-75598-known-issue]

[[bug-7.13.3]]
[float]
Expand Down Expand Up @@ -91,6 +102,12 @@ Transform::

Also see <<breaking-changes-7.13,Breaking changes in 7.13>>.

[[known-issues-7.13.2]]
[discrete]
=== Known issues

include::7.13.asciidoc[tag=snapshot-repo-corruption-75598-known-issue]

[[bug-7.13.2]]
[float]
=== Bug fixes
Expand Down Expand Up @@ -125,6 +142,32 @@ Monitoring::

Also see <<breaking-changes-7.13,Breaking changes in 7.13>>.

[[known-issues-7.13.1]]
[discrete]
=== Known issues

// tag::snapshot-repo-corruption-75598-known-issue[]
* Snapshot and restore: If a running snapshot is cancelled while a
previously-started snapshot is still ongoing and a later snapshot is enqueued
then there is a risk that some shard data may be lost from the repository. This
will cause future restore operations to fail. To mitigate this problem, set
`snapshot.max_concurrent_operations: 1` to prevent concurrent snapshot
operations:
+
[source,console]
----
PUT _cluster/settings
{
"persistent" : {
"snapshot.max_concurrent_operations" : 1
}
}
----
+
This issue is fixed in {es} versions 7.14.1 and later. For more details, see
{es-issue}75598[#75598].
// end::snapshot-repo-corruption-75598-known-issue[]

[[bug-7.13.1]]
[discrete]
=== Bug fixes
Expand Down
2 changes: 2 additions & 0 deletions docs/reference/release-notes/7.14.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ Also see <<breaking-changes-7.14,Breaking changes in 7.14>>.

include::7.14.asciidoc[tag=ccs-agg-mem-known-issue]

include::7.13.asciidoc[tag=snapshot-repo-corruption-75598-known-issue]

[[breaking-7.14.0]]
[float]
=== Breaking changes
Expand Down

0 comments on commit fecc105

Please sign in to comment.