[0] https://web.archive.org/web/20160601000411/http://blog.wix.e... (CTRL-F 'high throughput and low latency' for the query)
The Reactive Monolith – How to Move from CRUD to Event Sourcing
31–40 of 112 posts
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#32I've done a few Tech DDs on companies who have very CRUD-like operations and oddly chose to CQRS. Mind you, these are software companies doing about $3~$10M in revenue after 10 or so years (i.e. not rapid growth, but still valuable). Honestly, my big question is...why? I can find thousands (millions?) of CRUD and MVC developers in pretty much any major language, but how many developers can I find to write CQRS based…
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#33I would like to see answers to the question: why move from Crud to event sourcing. Because I have seen at least 5 moderate projects trying to integrate ES. They all failed in the sense that either people didn't understand the code anymore, huge integration times, performance issues and even complete project cancellation because of all people walking away
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#34I would like to see answers to the question: why move from Crud to event sourcing. Because I have seen at least 5 moderate projects trying to integrate ES. They all failed in the sense that either people didn't understand the code anymore, huge integration times, performance issues and even complete project cancellation because of all people walking away
A couple of months back, a QA review reported a bug - the log system didn’t work. Turns out it’s never worked. Nobody has ever done a rollback either.
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#35I've done a few Tech DDs on companies who have very CRUD-like operations and oddly chose to CQRS. Mind you, these are software companies doing about $3~$10M in revenue after 10 or so years (i.e. not rapid growth, but still valuable). Honestly, my big question is...why? I can find thousands (millions?) of CRUD and MVC developers in pretty much any major language, but how many developers can I find to write CQRS based…
But where it’s really needed, nobody would choose a novice. So novices learn to do event sourcing on systems that don’t need it, and proceed to make a huge mess. Most companies don’t have any kind of architecture review to prevent this happening - they have managers who naively trust the developers.
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#36I've done a few Tech DDs on companies who have very CRUD-like operations and oddly chose to CQRS. Mind you, these are software companies doing about $3~$10M in revenue after 10 or so years (i.e. not rapid growth, but still valuable). Honestly, my big question is...why? I can find thousands (millions?) of CRUD and MVC developers in pretty much any major language, but how many developers can I find to write CQRS based…
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#37As a proponent of Radical Simplicity, I'm always sceptical about event sourcing. There are some benefits (I found it useful to replay events for example), but where I have seen it at work it makes things much more complex, the understanding of the system and the development of new features takes much longer. This already starts with a command framework instead of method calls.
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#38I'm somewhat skeptical of Wix's engineering principles in general. Back in 2015 they released an article[0] about using MySQL as a better NoSQL database and talked about how joins are bad for latency, and then their example of a "fast query" used a subquery which was the same as to joining the two tables. Did they not realise that the queries would be equivalent? [0] https://web.archive.org/web/20160601000411/http://…
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#39I feel bad for anyone who got sucked into event sourcing for general purpose applications. Like... I'm burning a candle for you right now. The event stream stuff makes sense in some specialized use cases (LMAX?) but for general purpose stuff? Oof, no. EDIT: Also, don't hate me folks, but any article that references Fowler should be looked at with just a little bit of suspicion. Not hating the guy but he's blown quite…
> any article that references Fowler should be looked at with just a little bit of suspicion. Not hating the guy but he's blown quite a bit of hot air in his time. I've just started reading some Fowler stuff. What hot air are you referring to? I would like to keep that in mind.
Re: The Reactive Monolith – How to Move from CRUD to Event Sourcing
#40The loop will close as we once again will realise that even though domain is king of software, it is too different a beast from what the enlightened among us (not me) call "Infrastructure", the serf that actually grows the crop. Now of course, you can make the serf bend over backwards to serve the king, and use forks to work the land, because that's how kings roll; but is it really the best way to work the land? If y…