Simplify your system debugging by introducing event store linking
Last week I was dealing with an interesting bug. In our system, there was a user that didn’t belong to any tenant. And a tenant that didn’t have any users. It’s a situation that shouldn’t happen in our application.
Debugging that issue was quite simple because of the linking feature of RailsEventStore that we use in our application to correlate all events related to a user in a single stream. By linking to such a user stream you get the possibility to see all events that are related to that certain user account.
Check out my favourite usage of linking below 👇
https://blog.arkency.com/simplify-your-system-debugging-by-introducing-event-store-linking/
Post a comment