-

This is part of the transcript of a talk I gave at The Developer Conference in Porto Alegre. You can find the deck online

I broke the transcript in several part that can be read independantly:


Scaling your business

David Heinemeier Hansson a.k.a DHH make it clear that he doesn’t like Microservices Architecture in his openning talk at Rails Conf. He thinks this is an over complex architecture compared to the problem it pretends to solve. However, it is important to understand the environment in which DHH works. He is founder & CTO at Basecamp (former 37signals). This company is different from most companies I know. It is a very successful company as its product Basecamp has been used by more 15 million users. Beside the fact that the company is more than 16 years old, it is still a team of 45 programmers, designers, supporters, and sysops. This company isn’t bigger in term of employees because they want to stay small. This is quiete different from most of the companies I am working for. 37signals values are also very different from what I am used to: ASAP is poison, Meetings are toxic, Planning is guessing detailed in REWORK. In the context of a small company that aims to stay small, I agree that Microservices Architecture is over complex and doesn’t make much sense.

However, those values aren’t shared by most of the companies I know. Most companies have growing has a core value. Growing in term of revenue, customers, employees, features, …

Microservices Architecture is primarily to scale people

When you decide to scale in term of people, on a management point of view, you will probably start creating teams with one responsible per team. This is common sense, you divide the group into smaller groups to ease the management of the whole. What you would expect is the more employees you have, more feature you deliver, more customer you manage to attend. Problems happen if you don’t also split the code base teams are working on. In this case changes made by one team will affect teams. That’s why they need to schedule meetings to agree on how each part of the code base will interact. This coupling at the software level create a huge time overhead managing changes into the code base. The bigger the code base, the worst it gets. At some point, adding people just slows the release process.

In one of my previous project.

Previous project teams

We were using a SOA architecture, and teams were created. They weren’t working on the same code base. There was: * one team for the UI * one team for the services * one team for the data layer

Even though teams aren’t working on the same code base, they have inter-dependencies: UI cannot release a feature until services have release their feature. As most features depend on data stored in the data layer, services weren’t able to release until data layer team release. It forces teams to synchronize feature, create stubs to start developping before the other team is done developing its part. At the end of the day, your release frequency is bounded by the slowest team. As we still have the need to synchronize every team, we still have meeting overheads which slows down the development pipeline.

Scaling teams

Ideal project teams

That’s why microservices architecture advocate for: * each service service has its own ui and its own database * each ui, service, database belongs to one team and one team only

With this seperation in place you guarantee every team will have independant release cycles. With small release cycle, you are giving power to business to experiment things. They don’t need to survey the market to discover what feature it needs. They can put a new feature or enhance an existing one and observe the results right away. They can even deliver feature with different flavours to observe which one is better using client feedback. This feedback can come directly from interviewing with clients as by observing how clients are using the product. Short release cycle is key to power your business and give it the agility the market require.

comments powered by Disqus