Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Apache Pekko 1.0.3-M1 is a milestone release and is only meant for testing. Do not attempt to use this Pekko release in production. Ideally, users who want to add Pekko nodes to an Akka cluster with the aim of replacing the Akka nodes with Pekko nodes, should should try this milestone release in a test cluster. We would really like to hear from users who do this to tell us how they get on. 

It is strongly recommended that you read the Pekko Migration Guide. Any Akka ecosystem libs that you use, you will need Pekko equivalents or to migrate the lib yourselves. Migrating Akka code to Pekko is usually very straightforward.

2 new configuration properties are supported and need to be set if you want Akka compatibility.

  • pekko.remote.protocol-name: This defaults to `pekko`. If you want to interact with Akka nodes, change this to `akka`
  • pekko.remote.accept-protocol-names: This is an array and defaults to ["pekko" ]. If you want to interact with Akka nodes, change this to ["akka", "pekko" ].

...