Look at removing the custom projections #82
Replies: 1 comment
-
|
Had a look at this not worth the effort for the little gain provided |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently a number of services have projections that build up a specific stream for them to listen on with a persistent subscription.
This has 3 downsides.
The right way of handling this would be all events are sent to the subscriber and it decides what to handle/not handle and silently handle event its not interested in.
I think there is benefit in having 2 projections
EstateAggregator - Build a single stream for all the estate events (useful for rebuilding whole read model and probably the stream to use for the main read model processing)
MerchantAggregator - Build a stream per merchant with all merchant events
The call back stuff needs to be reviewed seperately so leave that for now
Beta Was this translation helpful? Give feedback.
All reactions