mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Merge pull request #8296 from elastic/jasper/backport/8294/5.0
[backport] PR #8294 to 5.0 - Add comments and inline docs for visualization saving and editing process.
This commit is contained in:
commit
e87217592e
1 changed files with 12 additions and 10 deletions
22
README.md
22
README.md
|
@ -22,17 +22,19 @@ Kibana is an open source ([Apache Licensed](https://github.com/elastic/kibana/bl
|
|||
|
||||
## Version compatibility with Elasticsearch
|
||||
|
||||
Ideally, you should be running Elasticsearch and Kibana with matching version numbers (💚 in the table below). If your Elasticsearch has an older version number or a newer _major_ number than Kibana, then Kibana will fail to run (🚫). If Elasticsearch has a newer minor or patch number than Kibana, then the Kibana Server will log a warning (⚠️).
|
||||
Ideally, you should be running Elasticsearch and Kibana with matching version numbers. If your Elasticsearch has an older version number or a newer _major_ number than Kibana, then Kibana will fail to run. If Elasticsearch has a newer minor or patch number than Kibana, then the Kibana Server will log a warning.
|
||||
|
||||
| Kibana version | ES version | Outcome | Description |
|
||||
| -------------- | ---------- | ------- | ----------- |
|
||||
| 6.1.2 | 6.1.2 | 💚 | Versions are the same. |
|
||||
| 6.1.2 | 6.1.5 | ⚠️ | ES patch number is newer. |
|
||||
| 6.1.2 | 6.5.0 | ⚠️ | ES minor number is newer. |
|
||||
| 6.1.2 | 7.0.0 | 🚫 | ES major number is newer. |
|
||||
| 6.1.2 | 6.1.0 | 🚫 | ES patch number is older. |
|
||||
| 6.1.2 | 6.0.0 | 🚫 | ES minor number is older. |
|
||||
| 6.1.2 | 5.0.0 | 🚫 | ES major number is older. |
|
||||
_Note: The version numbers below are only examples, meant to illustrate the relationships between different types of version numbers._
|
||||
|
||||
| Situation | Example Kibana version | Example ES version | Outcome |
|
||||
| ------------------------- | -------------------------- |------------------- | ------- |
|
||||
| Versions are the same. | 5.1.2 | 5.1.2 | 💚 OK |
|
||||
| ES patch number is newer. | 5.1.__2__ | 5.1.__5__ | ⚠️ Logged warning |
|
||||
| ES minor number is newer. | 5.__1__.2 | 5.__5__.0 | ⚠️ Logged warning |
|
||||
| ES major number is newer. | __5__.1.2 | __6__.0.0 | 🚫 Fatal error |
|
||||
| ES patch number is older. | 5.1.__2__ | 5.1.__0__ | 🚫 Fatal error |
|
||||
| ES minor number is older. | 5.__1__.2 | 5.__0__.0 | 🚫 Fatal error |
|
||||
| ES major number is older. | __5__.1.2 | __4__.0.0 | 🚫 Fatal error |
|
||||
|
||||
## Quick Start
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue