Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions docs/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ To check for security updates, go to [Security announcements for the Elastic sta

::::{important}

Do not upgrade to Logstash 9.3.0 if you are running on `aarch64` with the bundled JDK and are not using Docker.
Do not upgrade to Logstash 9.3.0 if you are running on `aarch64` or Windows with the bundled JDK and are not using Docker.

For more details please see the associated [known issue](/release-notes/known-issues.md#logstash-ki-9.3.0).

::::


### Features and enhancements [logstash-9.3.0-features-enhancements]

#### Wait for status feature added to Logstash API [logstash-9.3.0-wait-status]
Expand Down Expand Up @@ -99,11 +99,10 @@ Related:

## 9.2.5 [logstash-9.2.5-release-notes]


::::{important}

Do not upgrade to Logstash 9.2.5 if you need to run Logstash on `aarch64` architectures using the bundled JDK, and are
not running on Docker.
Do not upgrade to Logstash 9.2.5 if you are running on `aarch64` or Windows with the bundled JDK and are not using Docker.

For more details please see the associated [known issue](/release-notes/known-issues.md#logstash-ki-9.2.5).

::::
Expand Down
66 changes: 56 additions & 10 deletions docs/release-notes/known-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,77 @@ Review known issues to help you make informed decisions, such as upgrading to a

## 9.3.0 [logstash-ki-9.3.0]

**Logstash will not start with bundled JDK on aarch64 downloaded artifacts**
**Logstash will not start with bundled JDK on aarch64 Linux/MacOs and x86_64 Windows**

Applies to: {{ls}} 9.3.0

::::{dropdown} Details

On `aarch64`, {{ls}} 9.3.0 fails to start when installed from .deb, .rpm, or .tar packages and using the bundled JDK.
This is due to an incorrect JDK version being included in those packages.

Using a JDK provided via `LS_JAVA_HOME` works as expected. Docker images and non-`aarch64` architectures are not affected.
All {{ls}} 9.3.0 artifacts were bundled with Linux x86_64 JDK due to a bug in artifact generation.
Starting {{ls}} on Windows or aarch64 Linux/MacOS with 9.3.0 artifacts results in an fatal error as the bundled JDK is not compatible with those platforms.

This issue affects:
* logstash-9.3.0-linux-aarch64.tar.gz
* logstash-9.3.0-darwin-aarch64.tar.gz
* logstash-9.3.0-windows-x86_64.zip
* logstash-9.3.0-arm64.deb
* logstash-9.3.0-aarch64.rpm
* logstash-oss-9.3.0-linux-aarch64.tar.gz
* logstash-oss-9.3.0-darwin-aarch64.tar.gz
* logstash-oss-9.3.0-windows-x86_64.zip
* logstash-oss-9.3.0-arm64.deb
* logstash-oss-9.3.0-aarch64.rpm

This issue does NOT affect:
* logstash-9.3.0-linux-x86_64.tar.gz
* logstash-9.3.0-x86_64.deb
* logstash-9.3.0-x86_64.rpm
* logstash-oss-9.3.0-linux-x86_64.tar.gz
* logstash-oss-9.3.0-x86_64.deb
* logstash-oss-9.3.0-x86_64.rpm
* Docker images

For this reason the download links to the affected artifacts have been removed from the [{{ls}} Download page](https://www.elastic.co/downloads/logstash) for version 9.3.0.

As a workaround, users can provide an external and compatible JDK via the `LS_JAVA_HOME` environment variable.

::::

## 9.2.5 [logstash-ki-9.2.5]

**Logstash will not start with bundled JDK on aarch64 downloaded artifacts**
**Logstash does not start with bundled JDK on aarch64 Linux and x86_64 Windows**

Applies to: {{ls}} 9.2.5

::::{dropdown} Details

On `aarch64`,{{ls}} 9.2.5 fails to start when installed from .deb, .rpm, or .tar packages and using the bundled JDK.
This is due to an incorrect JDK version being included in those packages.

Using a JDK provided via `LS_JAVA_HOME` works as expected. Docker images and non-`aarch64` architectures are not affected.
All {{ls}} 9.2.5 artifacts were bundled with Linux x86_64 JDK due to a bug in artifact generation.
Starting {{ls}} on Windows or aarch64 Linux/MacOS with 9.2.5 artifacts results in an fatal error as the bundled JDK is not compatible with those platforms.

This issue affects:
* logstash-9.2.5-linux-aarch64.tar.gz
* logstash-9.2.5-darwin-aarch64.tar.gz
* logstash-9.2.5-windows-x86_64.zip
* logstash-9.2.5-arm64.deb
* logstash-9.2.5-aarch64.rpm
* logstash-oss-9.2.5-linux-aarch64.tar.gz
* logstash-oss-9.2.5-darwin-aarch64.tar.gz
* logstash-oss-9.2.5-windows-x86_64.zip
* logstash-oss-9.2.5-arm64.deb
* logstash-oss-9.2.5-aarch64.rpm

This issue does NOT affect:
* logstash-9.2.5-linux-x86_64.tar.gz
* logstash-9.2.5-x86_64.deb
* logstash-9.2.5-x86_64.rpm
* logstash-oss-9.2.5-linux-x86_64.tar.gz
* logstash-oss-9.2.5-x86_64.deb
* logstash-oss-9.2.5-x86_64.rpm
* Docker images

For this reason the download links to the affected artifacts have been removed from the [{{ls}} Download page](https://www.elastic.co/downloads/logstash) for version 9.2.5.

As a workaround, users can provide an external and compatible JDK using the `LS_JAVA_HOME` environment variable.

::::

Expand Down
Loading