Renato Cavalcanti
Renato Cavalcanti
https://app.travis-ci.com/github/akka/akka-samples/jobs/543440376#L920
Did that happen after a second run of that script? The create table has a `IF NOT EXISTS` clause so it's idempotent, but that's not the case for the index....
Yes and no, you can check that part of the akka persistence plugin docs: https://doc.akka.io/docs/akka/current/persistence.html#message-deletion You can call that method with the right seqNr and it will delete it. The...
The same holds. Except that you need to call the equivalente delete message in Akka Typed
@aludwiko, you can delete the events after making a snapshot as described here https://doc.akka.io/docs/akka/current/typed/persistence-snapshot.html#event-deletion There is no functionality to delete all events directly though. Maybe that's what you are looking...
In that case, we should have for all DBs and also for the shared db settings.
About the docs, I think we should add it to the migration guide. Now it's a good moment to do it. We have another [PR](https://github.com/akka/akka-persistence-jdbc/pull/648), less critical, that will also...
> require users to migrate their data That's the problem. We don't have a migration tool yet. That's why we're keep the legacy DAO for now. The is a migration...
I'm afraid this is not supported at the moment. Contributions are welcome of course.
@Tochemey, you may not need to deal with the internals of serialization. At least not at that level. Instead, you can use the existing DAOs to read from one table...