Replies: 3 comments 3 replies
-
I have the same concern. My application will fire hundreds of millions of events and it might not be scalable to store all events in a single table. |
Beta Was this translation helpful? Give feedback.
-
Just to follow up, general table separation was pretty much described here: |
Beta Was this translation helpful? Give feedback.
-
This is what I did. 1. Create a custom
|
Beta Was this translation helpful? Give feedback.
-
Currently all events go to
stored_events
table, and all models, projectors, aggregators are very coupled together.This is fine for simple projects, but in reality - when event sourcing comes into play - there may be a need for some advanced usages like:
I know this may be achieved using patterns like microservices, but the package itself now is pretty much immutable - unless you want to get your hands dirty with heavy custom repository implementations. Unless I'm missing something.
Beta Was this translation helpful? Give feedback.
All reactions