You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to implement runtime persistence plugin configuration for pekko-projection I ran into an issue where PersistenceTestKitReadJournal does not implement EventsByTagQuery, so it cannot be used to implement tests. Real persistence layers, like Cassandra, JDBC and Leveldb of course do implement EventsByTagQuery, but it would be quite useful if testkit was able to provide this behavior too. From a quick look it looks to me like an implementation similar to EventsByPersistenceIdStage should not be too complicated to do.
This is related to #1513 - need to have both EventSourcedBehavior and EventSourcedProvider be able to take configs at runtime to enable building typical applications using this functionality.
I could work on this feature if it were to be accepted.
The text was updated successfully, but these errors were encountered:
When attempting to implement runtime persistence plugin configuration for pekko-projection I ran into an issue where
PersistenceTestKitReadJournal
does not implementEventsByTagQuery
, so it cannot be used to implement tests. Real persistence layers, like Cassandra, JDBC and Leveldb of course do implementEventsByTagQuery
, but it would be quite useful if testkit was able to provide this behavior too. From a quick look it looks to me like an implementation similar to EventsByPersistenceIdStage should not be too complicated to do.This is related to #1513 - need to have both
EventSourcedBehavior
andEventSourcedProvider
be able to take configs at runtime to enable building typical applications using this functionality.I could work on this feature if it were to be accepted.
The text was updated successfully, but these errors were encountered: