There are days when each discussion after some time leans toward Agile methods, and it doesn't matter whether it has started with music gig, lunch place idea or recently published book :) - the end is inevitable. Today, I feel like past two weeks consisted only of those days - that freaks me out a bit & now I'm a bit reluctant to ask my 2yo daughter how was her day: she may show me her Kanban board and that would be too much. Nevertheless, there's one strictly Agile topic I feel an urgent desire to write about, because recently I've spoken with several people who have treated it very lightly (too lightly IMHO):

Splitting large apps between many Agile teams

Hey, in theory it's helluva simple - you just distinguish the products, identify the owners, assign teams & here you go. But the problem is that sometimes it's not that easy to identify "products" - overall system architecture may be extremely tangled & historical responsibility split may be against all the logic. That's why you have to start with imperfect split, just to have things started (even if you know that it has its flaws and adjustments will have to be made) - that's the moment when you may face the dillemma:

  • each team takes tier (or part of a tier)
  • each team takes a spike that goes through all the tiers

Tier?

Before I dive into the details - what's tier and how does it differ from layer? Tier is a horizontal / same level "layer" in physical (deployment) architecture - stuff that may be deployed (and usually is) separately from the other tiers.

On the other hand, layer is pretty much the same, but in logical (component) architecture - it's visible & distinguishable when you consider the hierarchy of method calls, etc. but all the layers within tiers are deployed together as one application / service / etc.

Whipped cream for Mary, puff pastry for John, cherry for Bob, ...

Tier-based split may make most sense at the first glance: in many cases (especially the legacy ones) each tier may use different set of technologies, so it requires different, specialized skills & knowledge. Keeping people capable of these altogether may help them develop those skills further & simplifies the deployment (team cares only about their tier(s)).

But it's wrong ...

Just ask yourselves these questions:

  1. Can you envelop any user-facing / value-adding user story within one tier?
  2. Can you have two independent backlogs for two teams responsible for different tiers? Would it make sense?
  3. Can you independently test your code within one tier?
  4. If no users use your tier directly & all it expose is low-level, highly specialized programming API, will you be able to find a product owner able to drive its development towards high value for organization?

Spikes, on the other hand, represent complete end-to-end scenarios & each of them goes through all the necessary layers. The idea of spikes' independence is quite delusional, but the level of coupling is much lower, especially if you set some reasonable ground rules. What's really important about spikes:

  • they represent typical user stories
  • thinking with spikes help you to keep functional domain model cleaner, because your forced to build the horizontal split into separate "modules" -> even if you start with a mess, quite likely it will get more & more tidy with time
  • as the dependency level is lower, teams aren't bottlenecked (because tier below didn't publish their service yet ...)
  • it's far easier to find a Business Product Owner, if the area represents a bounded functional subdomain and ...
  • ... it's far, far easier to recognize & confirm the added business value, because the interaction & outcome of the user story is not hidden within bowels of the back-end system

Yeah, it's a no-brainer: team's supposed to be cross-functional & able to deliver full end-to-end scenario on their own with as few external dependencies as possible.

Share this post