logstash/docs/static/upgrading.asciidoc

137 lines
5.7 KiB
Text

[[upgrading-logstash]]
== Upgrading Logstash
[IMPORTANT]
===========================================
Before upgrading Logstash:
* Consult the <<breaking-changes,breaking changes>> docs.
* Read the <<releasenotes>>.
* Test upgrades in a development environment before upgrading your production cluster.
While upgrading Logstash:
* If you use monitoring, you must re-use the data directory when you
upgrade Logstash. Otherwise, the Logstash node is assigned a new persistent UUID
and becomes a new node in the monitoring data.
===========================================
If you're upgrading other products in the stack, also read the
{stack-ref}/index.html[Elastic Stack Installation and Upgrade Guide].
See the following topics for information about upgrading Logstash:
* <<upgrading-using-package-managers>>
* <<upgrading-using-direct-download>>
* <<upgrading-minor-versions>>
* <<upgrading-logstash-8.0>>
[discrete]
==== When to upgrade
Fresh installations can and should start with the same version across the Elastic Stack.
Elasticsearch 8.0 does not require Logstash 8.0. An Elasticsearch 8.0 cluster
will happily receive data from earlier versions of Logstash via the default
HTTP communication layer. This provides some flexibility to decide when to
upgrade Logstash relative to an Elasticsearch upgrade. It may or may not be
convenient for you to upgrade them together, and it is not required to be done
at the same time as long as Elasticsearch is upgraded first.
You should upgrade in a timely manner to get the performance improvements that
come with Logstash 8.0, but do so in the way that makes the most sense for your
environment.
[discrete]
==== When not to upgrade
If any Logstash plugin that you require is not compatible with Logstash 8.0, then you should wait until it is ready
before upgrading.
Although we make great efforts to ensure compatibility, Logstash 8.0 is not completely backwards compatible.
As noted in the Elastic Stack upgrade guide, you should not upgrade Logstash 8.0 before you upgrade Elasticsearch 8.0.
This is both
practical and because some Logstash 8.0 plugins may attempt to use features of Elasticsearch 8.0 that did not exist
in earlier versions.
For example, if you attempt to send the 8.x template to a cluster before
Elasticsearch 8.0, then all indexing likely fail.
If you use your own custom template with Logstash, then this issue can be ignored.
[[upgrading-using-package-managers]]
=== Upgrading using package managers
This procedure uses <<package-repositories,package managers>> to upgrade Logstash.
. Shut down your Logstash pipeline, including any inputs that send events to Logstash.
. Using the directions in the <<package-repositories>> section, update your repository
links to point to the 8.x repositories.
. Run the `apt-get upgrade logstash` or `yum update logstash` command as appropriate for your operating system.
. Test your configuration file with the `logstash --config.test_and_exit -f <configuration-file>` command. Configuration options for
some Logstash plugins have changed in the 8.x release.
. Restart your Logstash pipeline after you have updated your configuration file.
[[upgrading-using-direct-download]]
=== Upgrading using a direct download
This procedure downloads the relevant Logstash binaries directly from Elastic.
. Shut down your Logstash pipeline, including any inputs that send events to Logstash.
. Download the https://www.elastic.co/downloads/logstash[Logstash installation file] that matches your host environment.
. Backup your `config/` and `data/` folders in a temporary space.
. Delete your Logstash directory.
. Unpack the installation file into the folder that contained the Logstash directory that you just deleted.
. Restore the `config/` and `data/` folders that were previously saved, overwriting the folders created during the unpack operation.
. Test your configuration file with the `logstash --config.test_and_exit -f <configuration-file>` command.
Configuration options for
some Logstash plugins have changed.
. Restart your Logstash pipeline after updating your configuration file.
[[upgrading-minor-versions]]
=== Upgrading between minor versions
As a general rule, you can upgrade between minor versions (for example, 8.x to
8.y, where x < y) by simply installing the new release and restarting {ls}.
{ls} typically maintains backwards compatibility for configuration
settings and exported fields. Please review the
<<releasenotes,release notes>> for potential exceptions.
Upgrading between non-consecutive major versions (6.x to 8.x, for example) is
not supported.
[[upgrading-logstash-8.0]]
=== Upgrading Logstash to 8.0
Before upgrading Logstash:
* Read the <<releasenotes>>.
* Read the <<breaking-changes,breaking changes>> docs.
+
There you can find info on these topics and more:
** <<bc-ecs-compatibility,Elastic Common Schema (ECS) compatibility on by default>>
** <<security-on-8.0,Secure communication with Elasticsearch>>
** <<bc-field-ref-parser,Field parser is more strict>>
If you are installing Logstash with other components in the Elastic Stack, also see the
{stack-ref}/index.html[Elastic Stack installation and upgrade documentation].
NOTE: Upgrading between non-consecutive major versions (6.x to 8.x, for example) is not supported.
We recommend that you upgrade to {prev-major-last}, and then upgrade to 8.0.
[discrete]
[[upgrade-to-previous]]
==== Upgrade to {ls} {prev-major-last} before upgrading to 8.0
If you haven't already, upgrade to version {prev-major-last} before you upgrade to 8.0. If
you're using other products in the {stack}, upgrade {ls} as part of the
{stack-ref}/upgrading-elastic-stack.html[{stack} upgrade process].
TIP: Upgrading to {ls} {prev-major-last} gives you a head-start on new 8.0 features.
This step helps reduce risk and makes roll backs easier if you hit
a snag.