From b3539de125360fd774769ea74389a8dda72b5685 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Tue, 11 Feb 2020 15:03:24 +0100 Subject: [PATCH] note about rolling update when changing transport --- akka-docs/src/main/paradox/additional/rolling-updates.md | 4 ++++ akka-docs/src/main/paradox/remoting-artery.md | 9 +++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/akka-docs/src/main/paradox/additional/rolling-updates.md b/akka-docs/src/main/paradox/additional/rolling-updates.md index 41c07c96ba..3f50c6b81b 100644 --- a/akka-docs/src/main/paradox/additional/rolling-updates.md +++ b/akka-docs/src/main/paradox/additional/rolling-updates.md @@ -154,6 +154,10 @@ which has a completely different protocol, a rolling update is not supported. For more details on this migration see @ref:[the migration guide](../project/migration-guide-2.5.x-2.6.x.md#migrating-from-classic-remoting-to-artery). +### Changing remoting transport + +Rolling update is not supported when @ref:[changing the remoting transport](../remoting-artery.md#selecting-a-transport). + ### Migrating from Classic Sharding to Typed Sharding If you have been using classic sharding it is possible to do a rolling upgrade to typed sharding using a 3 step procedure. diff --git a/akka-docs/src/main/paradox/remoting-artery.md b/akka-docs/src/main/paradox/remoting-artery.md index 4c2c283403..9647f7674e 100644 --- a/akka-docs/src/main/paradox/remoting-artery.md +++ b/akka-docs/src/main/paradox/remoting-artery.md @@ -133,12 +133,13 @@ It has very good performance (high throughput and low latency) but latency at hi might not be as good as the Aeron transport. It has less operational complexity than the Aeron transport and less risk of trouble in container environments. -@@@ note - Aeron requires 64bit JVM to work reliably and is only officially supported on Linux, Mac and Windows. It may work on other Unixes e.g. Solaris but insufficient testing has taken place for it to be -officially supported. If you're on a Big Endian processor, such as Sparc, it is recommended to use - TCP. +officially supported. If you're on a Big Endian processor, such as Sparc, it is recommended to use TCP. + +@@@ note + +@ref:[Rolling update](additional/rolling-updates.md) is not supported when changing from one transport to another. @@@