Skip to content

Commit

Permalink
Merge branch 'main' into remove_DEFALUT_driver
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHegarty committed Sep 14, 2023
2 parents 7b40f84 + 7ad521f commit e306b30
Show file tree
Hide file tree
Showing 38 changed files with 592 additions and 100 deletions.
6 changes: 6 additions & 0 deletions docs/changelog/99480.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 99480
summary: Fix deadlock between Cache.put and Cache.invalidateAll
area: Infra/Core
type: bug
issues:
- 99326
5 changes: 5 additions & 0 deletions docs/changelog/99515.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 99515
summary: Add `IndexVersion` to node info
area: Infra/REST API
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/99567.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 99567
summary: Make tsdb settings public in Serverless
area: TSDB
type: bug
issues:
- 99563
7 changes: 7 additions & 0 deletions docs/reference/cluster/nodes-info.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=node-id]
`transport_version`::
The most recent transport version that this node can communicate with.

`index_version`::
The most recent index version that this node can read.

The `os` flag can be set to retrieve information that concern the operating
system:

Expand Down Expand Up @@ -232,6 +235,7 @@ The API returns the following response:
"ip": "192.168.17",
"version": "{version}",
"transport_version": 100000298,
"index_version": 100000074,
"build_flavor": "default",
"build_type": "{build_type}",
"build_hash": "587409e",
Expand Down Expand Up @@ -271,6 +275,7 @@ The API returns the following response:
// TESTRESPONSE[s/"host": "node-0.elastic.co"/"host": $body.$_path/]
// TESTRESPONSE[s/"ip": "192.168.17"/"ip": $body.$_path/]
// TESTRESPONSE[s/"transport_version": 100000298/"transport_version": $body.$_path/]
// TESTRESPONSE[s/"index_version": 100000074/"index_version": $body.$_path/]
// TESTRESPONSE[s/"build_hash": "587409e"/"build_hash": $body.$_path/]
// TESTRESPONSE[s/"roles": \[[^\]]*\]/"roles": $body.$_path/]
// TESTRESPONSE[s/"attributes": \{[^\}]*\}/"attributes": $body.$_path/]
Expand Down Expand Up @@ -305,6 +310,7 @@ The API returns the following response:
"ip": "192.168.17",
"version": "{version}",
"transport_version": 100000298,
"index_version": 100000074,
"build_flavor": "default",
"build_type": "{build_type}",
"build_hash": "587409e",
Expand Down Expand Up @@ -368,6 +374,7 @@ The API returns the following response:
// TESTRESPONSE[s/"host": "node-0.elastic.co"/"host": $body.$_path/]
// TESTRESPONSE[s/"ip": "192.168.17"/"ip": $body.$_path/]
// TESTRESPONSE[s/"transport_version": 100000298/"transport_version": $body.$_path/]
// TESTRESPONSE[s/"index_version": 100000074/"index_version": $body.$_path/]
// TESTRESPONSE[s/"build_hash": "587409e"/"build_hash": $body.$_path/]
// TESTRESPONSE[s/"roles": \[[^\]]*\]/"roles": $body.$_path/]
// TESTRESPONSE[s/"attributes": \{[^\}]*\}/"attributes": $body.$_path/]
Expand Down
78 changes: 74 additions & 4 deletions docs/reference/migration/migrate_8_10.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,81 @@ your application to {es} 8.10.

See also <<release-highlights>> and <<es-release-notes>>.

coming::[8.10.0]


[discrete]
[[breaking-changes-8.10]]
=== Breaking changes

There are no breaking changes in {es} 8.10.
The following changes in {es} 8.10 might affect your applications
and prevent them from operating normally.
Before upgrading to 8.10, review these changes and take the described steps
to mitigate the impact.


There are no notable breaking changes in {es} 8.10.
But there are some less critical breaking changes.

[discrete]
[[breaking_810_cluster_and_node_setting_changes]]
==== Cluster and node setting changes

[[remove_unused_executor_builder_for_vector_tile_plugin]]
.Remove the unused executor builder for vector tile plugin
[%collapsible]
====
*Details* +
The threadpool called `vectortile` is a left over from the original development of the vector tile search end point and it is used nowhere. It can still be a breaking change if it is configured on the elasticsearch yml file, for example by changing the threadpool size `thread_pool.vectortile.size=8`'
*Impact* +
In the case the threadpool appears on the yaml file, Elasticsearch will not start until those lines are removed.
====

[discrete]
[[breaking_810_java_api_changes]]
==== Java API changes

[[change_pre_configured_cached_analyzer_components_to_use_indexversion_instead_of_version-highlight]]
.Change pre-configured and cached analyzer components to use IndexVersion instead of Version
[%collapsible]
====
*Details* +
This PR changes the types used to obtain pre-configured components from Version to IndexVersion,
with corresponding changes to method names.
Prior to 8.10, there is a one-to-one mapping between node version and index version, with corresponding constants
in the IndexVersion class.
Starting in 8.10, IndexVersion is versioned independently of node version, and will be a simple incrementing number.
For more information on how to use IndexVersion and other version types, please see the contributing guide.
*Impact* +
Analysis components now take IndexVersion instead of Version
====


[discrete]
[[deprecated-8.10]]
=== Deprecations

The following functionality has been deprecated in {es} 8.10
and will be removed in a future version.
While this won't have an immediate impact on your applications,
we strongly encourage you to take the described steps to update your code
after upgrading to 8.10.

To find out if you are using any deprecated functionality,
enable <<deprecation-logging, deprecation logging>>.

[discrete]
[[deprecations_810_authorization]]
==== Authorization deprecations

[[mark_apm_user_for_removal_in_future_major_release]]
.Mark `apm_user` for removal in a future major release
[%collapsible]
====
*Details* +
The `apm_user` role has been deprecated and will be removed in a future major release. Users should migrate to `editor` and `viewer` roles
*Impact* +
Users will have to migrate to `editor` and `viewer` roles
====

Loading

0 comments on commit e306b30

Please sign in to comment.