[Upgrade Assistant] Add warning when remote clusters are configured#125138
Merged
alisonelizabeth merged 5 commits intoelastic:7.17from Feb 10, 2022
Merged
[Upgrade Assistant] Add warning when remote clusters are configured#125138alisonelizabeth merged 5 commits intoelastic:7.17from
alisonelizabeth merged 5 commits intoelastic:7.17from
Conversation
alisonelizabeth
commented
Feb 10, 2022
| @@ -0,0 +1,44 @@ | |||
| /* | |||
alisonelizabeth
commented
Feb 10, 2022
| getRemoteClustersDetectedDescription: (remoteClustersCount: number) => | ||
| i18n.translate('xpack.upgradeAssistant.esDeprecations.remoteClustersDetectedDescription', { | ||
| defaultMessage: | ||
| 'You have {remoteClustersCount} {remoteClustersCount, plural, one {remote cluster} other {remote clusters}} configured. If you use cross-cluster search, note that 8.x can only search remote clusters 7.17 or later. If you use cross-cluster replication, a cluster that contains follower indices must run the same or newer version as the remote cluster.', |
Contributor
Author
There was a problem hiding this comment.
@jrodewig do you have bandwidth to review this text?
Contributor
Author
|
@elasticmachine merge upstream |
Contributor
|
Pinging @elastic/platform-deployment-management (Team:Deployment Management) |
Contributor
Author
|
/cc @LeeDr |
yuliacech
approved these changes
Feb 10, 2022
Contributor
yuliacech
left a comment
There was a problem hiding this comment.
Thank you so much for adding this warning, @alisonelizabeth!
Tested locally and all worked as expected, code changes LGTM too 👍
jrodewig
suggested changes
Feb 10, 2022
.../plugins/upgrade_assistant/public/application/components/es_deprecations/es_deprecations.tsx
Outdated
Show resolved
Hide resolved
…/es_deprecations/es_deprecations.tsx Co-authored-by: James Rodewig <james.rodewig@elastic.co>
💛 Build succeeded, but was flaky
Test Failures
Metrics [docs]Module Count
Async chunks
Page load bundle
History
To update your PR or re-run it, just comment with: |
alisonelizabeth
added a commit
to alisonelizabeth/kibana
that referenced
this pull request
Feb 10, 2022
jrodewig
added a commit
to elastic/stack-docs
that referenced
this pull request
Feb 10, 2022
Updates the upgrade guide to clarify BWC for CCS. Based on [the CCS docs](https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-cross-cluster-search.html#ccs-supported-configurations), you can only search back one minor version. This means a local 8.1 cluster can only search remote 8.0+ clusters. Relates to elastic/kibana#125138 and #1970
jrodewig
added a commit
to elastic/stack-docs
that referenced
this pull request
Feb 10, 2022
Updates the upgrade guide to clarify BWC for CCS. Based on [the CCS docs](https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-cross-cluster-search.html#ccs-supported-configurations), you can only search back one minor version. This means a local 8.1 cluster can only search remote 8.0+ clusters. Relates to elastic/kibana#125138 and #1970 (cherry picked from commit 70964c7)
jrodewig
added a commit
to elastic/stack-docs
that referenced
this pull request
Feb 10, 2022
Updates the upgrade guide to clarify BWC for CCS. Based on [the CCS docs](https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-cross-cluster-search.html#ccs-supported-configurations), you can only search back one minor version. This means a local 8.1 cluster can only search remote 8.0+ clusters. Relates to elastic/kibana#125138 and #1970 (cherry picked from commit 70964c7)
alisonelizabeth
added a commit
that referenced
this pull request
Feb 11, 2022
alisonelizabeth
added a commit
to alisonelizabeth/kibana
that referenced
this pull request
Feb 11, 2022
alisonelizabeth
added a commit
to alisonelizabeth/kibana
that referenced
this pull request
Feb 11, 2022
alisonelizabeth
added a commit
that referenced
this pull request
Feb 11, 2022
alisonelizabeth
added a commit
that referenced
this pull request
Feb 11, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #124465
This PR adds a warning to the ES deprecations page if we detect the user has any remote clusters configured. It also adds a locator to the
remote_clustersplugin, so that we can easily link to Remote Clusters from UA.How to test