Fix index compatibility table header#7186
Open
yetanothertw wants to merge 5 commits into
Open
Conversation
Contributor
Elastic Docs AI PR menuCheck the box to run an AI review for this pull request.
Powered by GitHub Agentic Workflows and docs-actions. For more information, reach out to the docs team. |
Contributor
🔍 Preview links for changed docs |
Contributor
Elastic Docs Style Checker (Vale)Summary: 1 warning found
|
| File | Line | Rule | Message |
|---|---|---|---|
| deploy-manage/tools/snapshot-and-restore.md | 161 | Elastic.DirectionalLanguage | Don't use directional language. Use 'the label of the element' instead of 'in the left'. |
The Vale linter checks documentation changes against the Elastic Docs style guide. To use Vale locally or report issues, refer to Elastic style guide for Vale.
sabarasaba
approved these changes
Jul 6, 2026
sabarasaba
left a comment
Member
There was a problem hiding this comment.
I think it makes sense and it matches what we discussed over slack
jloleysens
approved these changes
Jul 6, 2026
|
|
||
| | | | | | | | | | ||
| |-----------------------|-----|--------|-------|----------|---------|-----| | ||
| | | Cluster version (restore target) <br> {{version.stack.base}}–{{version.stack}} | 8.3–8.19 | 8.0–8.2 | 7.2–7.17 | 7.0–7.1 | 6.8 | |
Contributor
There was a problem hiding this comment.
I think this change makes sense. I often call it "stack" version to imply Kibana, Elasticsearch and everything else, but if "cluster" is consistent language then let's stick with that.
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 #6819 which reports:
Fix for the 1st problem
The PRs linked on the issue added a guard (that's present in the current Kibana main and here) the minimum version seems to be hardcoded here.
After restoring a snapshot from an 8.1.0 cluster, .kibana still has aliases like .kibana_8.1.0. Kibana 9.2.4 sees that, compares it to 8.18.0, and fails fatally before migrations run.
PREVIEW AVAILABLE HERE
Why snapshot restore fails here
My friend Claude reckons:
Snapshot/restore can move Elasticsearch data, but it does not replace the required Kibana upgrade path:
Elasticsearch version compatibility for data indices is separate from Kibana saved-object migration compatibility. A restore that ES accepts can still fail when Kibana starts.
What the user should do instead
NEEDS TO BE VALIDATED by Eng:
Supported path:
Alternatively:
If the user only needs data and not the Kibana state:
Fix for the 2nd problem
The table is correct but ambiguous: since both axes use version numbers, but only one axis was named, I'm adding another row to name both dimensions. This matches an existing docs pattern (in the CCS table). This should reduce transpose misreads without changing the underlying compatibility data.
Unfortunately, there's tooling limitation we need to work around as cell merging is not possible, which is why I chose this option.
PREVIEW AVAILABLE HERE
This is one option:
This is another option (currently on this branch):
Both are quite similar. Not sure which one is clearer.
Generative AI disclosure