elasticsearch/docs/reference/sql/endpoints/version-compat.asciidoc
James Rodewig adca5b9dc5
[DOCS] SQL: Update client version compatability for 7.17 (#81869)
Replaces a 7.x reference with the `{prev-major-last}` variable, which will use the last minor of the previous major (currently 7.17 for 8.x).

Relates to #70451.
2022-01-13 08:39:43 -05:00

48 lines
1.3 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Your driver must be compatible with your {es} server version.
IMPORTANT: The driver version cannot be newer than the {es} server version.
For example, A 7.10.0 server is not compatible with {version} drivers.
[options="header",cols="1,3a,1"]
|====
| {es} server version
| Compatible driver versions
| Example
ifeval::[ "{major-version}" == "8.x" ]
ifeval::[ "{minor-version}" != "8.0" ]
| 8.0.0{version}
| * The same version
* Any earlier 8.x version
* Any 7.x version after 7.7.0.
| An {version} server is compatible with {version} and earlier 8.x drivers. An
{version} server is also compatible with 7.7.0 and later 7.x drivers.
endif::[]
ifeval::[ "{minor-version}" == "8.0" ]
| 8.0.0
| * The same version
* Any 7.x version after 7.7.0.
| An 8.0.0 server is compatible with 8.0.0 drivers. An 8.0.0 server is also
compatible with 7.7.0 and later 7.x drivers.
endif::[]
| 7.7.1-{prev-major-last}
| * The same version
* An earlier 7.x version, back to 7.7.0.
| A 7.10.0 server is compatible with 7.7.0-7.10.0 drivers.
endif::[]
ifeval::[ "{major-version}" == "7.x" ]
| 7.7.1-{version}
| * The same version
* An earlier 7.x version, back to 7.7.0.
| A 7.10.0 server is compatible with 7.7.0-7.10.0 drivers.
endif::[]
| 7.7.0 and earlier versions
| * The same version.
| A 7.6.1 server is only compatible with 7.6.1 drivers.
|====