pjfanning opened a new pull request, #1423:
URL: https://github.com/apache/pekko/pull/1423

   See #1421 
   
   This is WIP and needs more tests. I'm opening this to give a preview of what 
I am proposing.
   
   The docs in 
https://cwiki.apache.org/confluence/display/PEKKO/Pekko+Akka+Compatibility can 
be updated when this or its equivalent are ready for release.
   
   The issue is that the 'manifest' value saved with the snapshot includes the 
class name of the serializer which can be 'akka' or 'org.apache.pekko' 
prefixed. 
   
   The idea is that the new config 
`pekko.persistence.snapshot-store.migrate-manifest-to` supports 3 values:
   * "pekko" is the default and is the existing behaviour in Pekko 1.0.3 and 
1.1.0-M0 - this supports reading Pekko and Akka snapshots and saving them with 
Pekko serializer name
   * "akka" is a new support that still supports reading Pekko and Akka 
snapshots but saves them with an Akka serializer name 
     * this is useful if you have a mixed cluster of Akka and Pekko nodes - the 
Akka nodes will not be able to handle if a Pekko serializer class name appears 
in the snapshot data
   * "ignore" is new support to basically not support old snapshots saved with 
Akka - this is more performant because we get to skip some checks when 
reading/writing snapshot data
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to