Dependencies, teams and microservices

The Candidate LeSS trainers mailing list is a place where passionate people have interesting discussions. This post is a result of one of those discussions.

An assumption in agile community is that scaling agile is mainly about managing and reducing dependencies; either between teams or with others outside of a product group. This is used as a reason to introduce additional structures and roles, such as architecture owner, program / project manager, integration or a system team. These groups will manage dependencies and have overall picture.

An alternative is presented: microservice-driven teams organization. Each team works relatively independently from other teams, and owns set of microservices. Well…let’s see.

Just like embracing instead of managing changes (one of the Agile principles), this post explains why we should embrace dependencies instead of trying to avoid or “manage” them.

Therefore, LeSS doesn’t have roles, structures or architectural solutions to manage or reduce dependencies.

Of course, dependencies do not magically stop to exist in LeSS. There is something else going on. Let’s go through common types of dependencies. 

Dependencies between Product Backlog items

A customer problem is split into Product Backlog items. This act of refinement can introduce dependencies. Especially when split improperly. In other words, from architectural point of view. E.g. a larger item from customer becomes: a change in front-end, change in backend, and change in connectivity.

On the other hand, splitting from a customer point of view reduces dependencies between constituent parts.

Nevertheless, no matter how much we try, items in product backlog are still often interrelated. In fact, this dependency is a good thing. It also says something about coherence as we continuously deliver a single product.

Dependencies in design

At some point, items are small enough to be delivered comfortably by a single team in a single sprint. It sounds as if dependencies are resolved. Each team can deliver one or multiple items independently from other teams.

Well…, not really. There is also something called coherent design or architecture. Having each team independently design own solution is not a good idea unless we talk about localized changes.

Therefore, again, we want our design to be consistent. In other words, reducing dependencies in design activities is not a good idea. Coordination or shared design activities with multiple teams should be encouraged.

Dependency in code

A coder in one team makes changes in the same place as a coder in another team. We used to deal with this by having branches in order to prevent conflicts in code. We have also learned that this “conflict prevention” makes problems bigger later on when we need to merge.

Also cycle time is not going to look good. Every change needs to be followed up by a possible merge, checking, fixing, testing, etc….

Instead, we favor nowadays “trunk-based development”. All teams, regardless of amount of teams, commit code into same trunk and integrate continuously. Therefore, conflicts are not avoided anymore but resolved immediately. Coders talk to each other as soon as conflict occurs. Since each conflict is limited in size, a resolution is relatively easy. It even triggers useful cross-team coordination.

In other words, we want teams to coordinate as much as possible for the purpose of continuously integrating their work into a single potentially shippable increment.

But, what about microservices?

Aren’t microservices solving dependencies problem?

First, we need to mention a misconception about teams and microservices. The idea of each team owning (set of) microservices is NOT driven by microservices architecture, but by a bounded context in customer domain. Team’s focus is a specific part of customer domain that happens to entail number of microservices. There is a clear segregation through interfaces with other bounded contexts. Therefore, one team and nobody else will own and change specific microservices. A big assumption is that there is no shared code or shared services or very limited sharing.

Therefore, a difference with feature team concept is shared ownership of microservices. Sharing is encouraged in feature teams and discouraged in microservices-based teams organization.

scannable-document-on-21-dec-2016-14_00_50

Microservices-driven organization and delivering cross-service features

A customer wants a product that fulfills a need. A customer doesn’t want a microservice. Microservices is a nice architectural approach, but we are making a thinking mistake by somehow equating individual part (a microservice) to the combination of parts (set of microservices that provide together value to a customer). A customer request will cross boundaries of one group of microservices, regardless of how well we design those groups. The question is how do we act in such situation.

“We have resolved this by a better segregation. Our features don’t cross bounded contexts”

No, you most probably started to duplicate code and data in order to avoid coupling between services and creating a big mess in the process. We already need to deal with too many solutions originally defined by a simplistic architecture. Let’s not go that way.

Since delivering a feature has often impact across groups of microservices, it will require multiple teams to deliver it. In such situation, a speed of delivery of a single microservice is not relevant if one needs to wait for other services to be changed anyway.

Second, in large products / in time, microservices and their contexts have rather stable structure, while this can hardly be said for business needs / new requirements. Changing needs will start to mismatch structure of microservices. Also, some areas (groups of microservices) require no change. What do we do with teams that focus only on their own group of microservices?

The main argument against organization according to microservices is that teams who are not bounded by microservices can get stuff done and also limit themselves to a group of microservices for better focus if they want to. At the same time, a microservice-bounded team is limited in capability to deliver. One has the flexibility of both, while the other one does not.

cross-component_teams

Shared ownership of microservices or “shared services model”

Sam Newman in his book “Building Microservices” proposes several solutions as an alternative to what he calls “shared services” model (multiple teams working on a service). These are not literal statements, but summarized by me:

Microservice teams “move on to something else” until their dependency on other microservices is resolved.

This reasoning not only increases overall time to deliver but kills the idea of working on most important. In other words, team invents their own priority.

Shift people between teams in order to speed up development in the bottleneck.

This is a bad suggestion since it not only barely solves anything short term, it messes up the organization of teams, stability and the way of working.

Split request that affects multiple microservices even further until each of them touches only one microservice.

This implies that parts become technical, therefore not meaningful anymore to the customer. Besides, what would you rather have: One team making sure tiny parts are working together, or many teams making sure tiny parts are working together.

Internal Open Source: If above is insufficient or unwanted, then we let teams change any service they need to change where code custodians make sure things are done properly.

In other words: teams are not bounded anymore by a single group of microservices and start to share. 🙂

Nevertheless, if a microservice is truly a business capability, which is not just a for customer meaningless component, then it could be ok that team specializes in one or a limited set of microservices. This is not driven by the idea of microservices, but customer-domain specialization that happens to correlate with microservices. Therefore, it is not a dichotomy of either having microservice or feature (cross-component) teams. It could very well mean the same since a feature team doesn’t deal with all components anyway, especially when product is large.

In LeSS, we like dependencies….euhm, coordination

As concluded from each type, dependencies are not a problem. In contrary, we want and need teams to share work and coordinate, since that makes our products better. This behavior encourages teams to have whole product focus, to deliver fully integrated product instead of only parts.

At the same time, the real challenge is the ways we coordinate. Postponed or asynchronous coordination through intermediate roles, groups and fixed structures is a cause of many problems driving a need for managing or resolving dependencies, while direct, free-flowing and immediate coordination has opposite effect.

LeSS strongly encourages direct cross-team collaboration without any kind of indirection with the goal to create an integrated product. This goal drives focus and exposes potential for improvement. In addition to just talking to each other and several other coordination practices, a number of meetings are shared between teams:

  • Sprint planning One (team representatives with Product Owner)
  • Multi-team Sprint Planning Two (teams discuss and design similar or related features)
  • Overall Product Backlog Refinement (team representatives with Product Owner)
  • Multi-team Product Backlog Refinement (teams or few representatives, subject matter experts)
  • One Sprint Review for all teams
  • Overall Retrospective

This supports cross-team learning, standardization, delivery of a cohesive product, coordination of shared work. Therefore, we don’t call this dependencies since it is something welcomed.

You can find more about this in the book: Large-Scale Scrum by Bas Vodde and Craig Larman.

5 thoughts on “Dependencies, teams and microservices

  1. Stanislav says:

    If we are talking about 10 to 20 people and few microservices, then sharing could be OK. One programmer is able to understand 3-5 bigger microservices (with underlying business logic behind them) in a sufficient quality. So he can make changes to them if necessary. So basically everyone is able to change every microservice (lets say, with a little help from collegues). Ideal world – no bottlenecks.
    But if we are talking about 100 people and dozens of microservices, then it is much more difficult. The programmer is not able to make changes into a microservice which he never seen before (because the developer ho created it has now more important work to do – lets say o another microservice) . When there is a bigger project, then it could be still quiet OK, for him to learn the new microservice (with the underlying business logic). But when we are talking about smaller changes, then it just would not be efficient for him to start to learn the new application/microservice. It would be better to wait (lets say for a week) for someone else(who knows the microservices better), as learning for 2 weeks to be able to make some simple changes(which he forgets, if he will not be working with this microservice for a longer period of time). And the quality will still be questionable.

    What I am trying to say is, that there are many real situations, where the most efficient way is just to wait… If there was some magical solution how to prevent that, I think someone would have already found it 🙂

  2. Hi Stanislav,

    I agree with that. It is indeed not possible for 100 people to share *everything*. At the same time, this does not mean that there is no sharing at all. The larger the group and therefore overall product, the more microservices you will have which are shared and maintained by only one or few teams.

    Do we have a situation where it is better to wait than pick up yourself as a team? Of course! Just like with the previous statement, one does not exclude the other. You want to be able to deliver a request within a sprint or faster as often as possible.

    Is there any rule in this? Definitely not. That is my whole point. Leave up to each individual team to discover how much and how fast team can learn, work cross-microservices and therefore share with other teams.

  3. tomheisterkamp says:

    Hi Viktor,
    Thanks for the great post! I do have a question about this. In a more ‘traditional’ world when a feature is requested there is someone (e.g. an architect) who oversees all the needed or ‘touched’ components by the request. How does this work in a world with microservices (with which I am not very familiar)? Is there someone who oversees the needed or ‘touched’ microservices? Or is this the art of strong communication between the teams?

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.