OpenCQRS
OpenCQRS copied to clipboard
Replay a stream
At the moment we are using https://eventstore.org/ we are making using the default projects. This means that we can replay a stream by
Event Store ships with four built in projections.
By Category ($by_category) By Event Type ($by_event_type) By Correlation ID ($by_correlation_id) Stream by Category ($stream_by_category) Streams ($streams)
example: $ce-Customer This will contain all the events. $et-CustomerCreated This stream will only contain that type of event Customer-12345 This stream will contain the events only for that customer
We heavily rely on replaying streams as other microservices react to other events. We are doing CQRS ES
It's not something that is supported out of the box at the moment but thanks for the input, I'll add it as future improvements.