I am trying to evaluate GES for implementing CQRS with Eventsourcing.
For Read Side subscription of the events, I am using catchup subscription with checkpoints being managed in the persistence on the Readside, as indicated in the following documentation.
https://eventstore.org/docs/introduction/4.0.0/competing-consumers/
https://groups.google.com/forum/#!topic/event-store/2p_StvzAhSg
However, for the Write side when there are aggregates that need to subscribe to the events that happen in other aggregate, is there a recommended approach to be taken with/without GES for overall architecture?