Deserializing Persistence Journal Entry

Is there a way to deserialize a Persistence Journal entry queried directly from the table? I can’t use PersistenceQuery because I will use a separate process to track changes in the Akka Persistence Table. Then I need a way to deserialize the events representing those changes.

You can use the Akka serialisation infrastructure directly to deserialise. Use the serializer id column to look up the serializer from the SerializationExtension and then pass the manifest column value together with the payload to the serializer.

Thanks Johan