This is cutting it close to say microservice, it’s just two services and they don’t fan out or have a lot of the complexity that causes the down sides; such as fan outs that require tracing to debug, requires too many services to startup on your laptop for dev, load testing and tuning, common libraries that cause systemic failures or require world rebuilds when modified, service to service authentication...
Faster, cheaper, and better: A story of breaking a monolith
31–40 of 48 posts
Re: Faster, cheaper, and better: A story of breaking a monolith
#32Earlier quoted context omitted.
How is it easier to on-board new engineers? You mentioned but did not explain this point.
Easier to on-board in the sense of limiting what new engineers can see, only giving them smaller pieces of access. Otherwise it's probably the opposite, takes a lot longer for new engineers to understand the full system. Perhaps even reduces the bus factor, since less people understand all the moving parts.
Re: Faster, cheaper, and better: A story of breaking a monolith
#33Earlier quoted context omitted.
Not sure if I agree with you regarding the agile part. If each team owns their "micro-service", then they can have their own "sprints".
Yes in very large systems that's true. But in the other systems, there's huge overheads which restrict systems from changing. - Multiple execution environments - Complexity in communication between services - Managing the versioning of each service and it's dependent services. Although services are easily to scale and change independently, they are hard to reconfigure globally , which means the application as a whole…
Often switching to microservices means reducing the complexity of communication between teams at the expense of increasing the complexity of communication between services.
Re: Faster, cheaper, and better: A story of breaking a monolith
#34Re: Faster, cheaper, and better: A story of breaking a monolith
#35Can you view Microservices in the same light as multiple companies? Just like when your monolith calls on a third party API that does the payment for you - ain't that also a microservices that happens to involves 2 different individual companies?
Re: Faster, cheaper, and better: A story of breaking a monolith
#36Re: Faster, cheaper, and better: A story of breaking a monolith
#37I’d be interested to know how long this all took and how many developers were involved.
Re: Faster, cheaper, and better: A story of breaking a monolith
#38Why is microservices so much more popular right now than, say, distributed processing via the actor model? It feels like splitting things up with HTTP boundaries is a lot of work, less flexible and precludes a lot of re-use. Is it just because of advances in tooling lately like Kubernetes and docker?
Re: Faster, cheaper, and better: A story of breaking a monolith
#39Good read, thanks! I’d be interested to know how long this all took and how many developers were involved.
Re: Faster, cheaper, and better: A story of breaking a monolith
#40Different teams should have enough room to not step on each other toes.
Soft boundaries tend to be overruled over time, because of human laziness.