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
{{ message }}
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
At the moment, the communication between Eventsourced* and EventLog doesn't use timeouts. This shall be changed using an ask-based communication (comparable to the Replicator - EventLog communication). Furthermore, these changes allow an implementation of chunked replay directly in EventsourcedView (by making repeated batch-read requests) so that the ChunkedEventReplay actor can be removed and the storage provider interface for event replay simplified. This is a prerequisite for #173.
The text was updated successfully, but these errors were encountered:
re #176
- Write request timeouts (without using akka.patterns.ask)
- Write replies and Written messages applied in correct order
- Major configuration schema changes (prepeare for load/read timeouts)
fixes#182
- EventsourcedView uses default stash for internal and user stash operations (time-separation: recovery vs. live)
- EventsourcedActor used a hierarchical stash for internal and user stash operations (space-separation: internal vs. user)
closes#176
- Timeout for loading and saving snapshots
- Timeout for event batch replay (pull-based)
- Timeout for Write requests (without using akka.patterns.ask)
- Write replies and Written messages applied in correct order
- Major configuration schema changes
fixes#182
- EventsourcedView uses default stash for internal and user stash operations (time-separation: recovery vs. live)
- EventsourcedActor used a hierarchical stash for internal and user stash operations (space-separation: internal vs. user)
At the moment, the communication between
Eventsourced*
andEventLog
doesn't use timeouts. This shall be changed using anask
-based communication (comparable to theReplicator
-EventLog
communication). Furthermore, these changes allow an implementation of chunked replay directly inEventsourcedView
(by making repeated batch-read requests) so that theChunkedEventReplay
actor can be removed and the storage provider interface for event replay simplified. This is a prerequisite for #173.The text was updated successfully, but these errors were encountered: