-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle akka FQCNs #12
Comments
I don't think any of those cases applies. Akka/Pekko are using protobuf for serialization of internal messages, our library is used to serialize application specific messages which typically shouldn't be in the Akka or Pekko package. And it is not recommended to use Kryo serialization for persistent data in general, as Kryo does not guarantee any backwards compatibility. |
Agree - I also don't see a valid/existing straight forward usecase. |
I took a look at it. We have custom serializer for
It then comes down to the
|
Nice. @nvollmar wdyt? |
That one could also provide a We should also create a serialized sample with akka-kryo-serialization to test in pekko-kryo-serialization-akka-compat |
@pjfanning I have a working prototype where I can deserialize a sample message with an Akka ActorRef in a Pekko system (assuming the message has the same FQCN (or mapping id) and parameter list in both systems). One detail that is important for the final implementation is whether the Pekko system will use "pekko://" or will to be configured to use "akka://" for the migration. For the former the serializer would need to do a search replace of the protocol. |
org.apache.pekko
prefix, it may also be useful to do the equivalent in https://github.com/altoo-ag/akka-kryo-serializationThe text was updated successfully, but these errors were encountered: