Your platform is a product and your developers are your customers


An increasing number of businesses are creating platform teams to build a solid foundation on which their developers can work. For this to be successful it’s necessary to treat the platform as a product. Here I explore what that means.

What is a platform?

A platform can broadly be described as “APIs, environments, services and practices that allow developers to focus on delivering value.” Really it’s a collection of any tools, templates and processes that allows a developer to get on with developing and not have to worry about Ops.

Why have a platform?

<sodipodi:namedview id=“base” pagecolor="#ffffff" bordercolor="#666666" borderopacity=“1.0” inkscape:pageopacity=“0.0” inkscape:pageshadow=“2” inkscape:zoom=“1.4736829” inkscape:cx=“451.25039” inkscape:cy=“140.70936” inkscape:document-units=“mm” inkscape:current-layer=“g4526-6” showgrid=“false” inkscape:window-width=“1916” inkscape:window-height=“1044” inkscape:window-x=“0” inkscape:window-y=“16” inkscape:window-maximized=“0” inkscape:snap-text-baseline=“false” fit-margin-top=“0” fit-margin-left=“0” fit-margin-right=“0” fit-margin-bottom=“0” /> rdf:RDF <cc:Work rdf:about=""> dc:formatimage/svg+xml</dc:format> <dc:type rdf:resource=“http://purl.org/dc/dcmitype/StillImage" /> dc:title</dc:title> </cc:Work> </rdf:RDF> Traditional Product Dev QA Ops Agile Dev Ops Devops Dev Platform DevOps

Traditional

The traditional way of running a technology team would be to have separate teams for each discipline.

At first glance it seems like this is a nice separation of responsibilities, but in reality it’s a disaster. None of these teams is really working in a silo; every action they take is likely to impact one of the other teams. A delay in Ops is going to directly translate to a delay in every other team. You have “coupled backlogs”.

Agile

The most successful attempt to solve for coupled backlogs was Agile. This brought Product, Dev and QA into the same teams, forcing them to work together on tasks. They now had uncoupled backlogs.

From a feature delivery perspective, one of the main problems with Agile is that Ops remains a separate team and the backlog coupling still exists. In fact, I have seen organisiations where, because they have also made Ops Agile and work in sprints the delay to developers has actually increased as requests might wait a week before entering Ops next sprint.

Devops

Devops tries to solve the problem of coupled backlogs by moving all operations work into the dev team. In theory that sounds great but the execution is normally sub-optimal. Instead of moving operations people into the dev team typically just the work is moved. This means you have developers now doing ops work, which is a completely separate speciality. Some developers are good at it and some become a liability as they unknowingly introduce security holes in the infrastructure as they only really care about getting their apps working.

The other problem with devops is how the value being provided by developers breaks down. Instead of spending half a day writing some code and moving on to the next feature they often find themselves spending an additional 2 days trying to get the infrastructure working.

Platform

At first glance platform appears to be a regression towards Agile. Ops is once again a speciality all on its own. The key difference is that if you have got the platform right then the dev team never need to directly interact with the ops team. Specialised work is once again being done by specialists but with completely uncoupled backlogs.

In practice this will manifest as developers writing minimal config for the infrastructure, e.g. a YAML snippet defining required port openings, and that being automatically provisioned within pre-defined constraints.

The mission statement

To help guide the direction of a platform it’s useful to have a mission statement that describes what you are trying to achieve.

A stable and predictable platform that is the developer’s preferred choice for deploying applications by removing toil and reducing decision making.

There are four key elements to this mission statement that really define what a platform should be.

  1. Stable and predictable - Developers shouldn’t be distracted by a platform having poor availability and they shouldn’t be consistently having to adjust their integrations with the platform.
  2. Preferred choice - Platforms only work best when developers aren’t forced to use them. The platform product manager should need to keep improving the platform to make it so that the development teams choose to use it. There may also be some use cases that as a product team you decide you don’t want to support and it’s OK for developers to look elsewhere for a solution.
  3. Removing toil - Certain tasks are trivial to automate and removing the need for developers to handle them will increase their throughput and accuracy. These may be tasks that are rarely done in any individual team but across the organisation as a whole there’s a lot of repetition, e.g. writing deployments for JavaScript UIs.
  4. Reducing decision making - Developers are frequently asked to make decisions that sit outside of their expertise. “What event bus should I use?”, “How many partitions should my kafka topic have?”. Anything that can be done to move these questions to specialists is an organisational win.

Ensuring individual features add value

While the mission statement gives a good overall direction there is a core set of criteria that all features should be assessed against.

The answer doesn’t need to be yes to all of the questions but if it’s no to any of the questions then there needs to be some other good justification for prioritising is as a feature.

Discovering platform needs

Pain point analysis

One of the simplest ways to discover what you should be adding to the platform is pain point analysis. This is as straight forward as surveying all of your developers to find out what they struggle with on the existing platform. These findings might conflict with metric based prioritisation, but one of the biggest challenges is gaining developer trust. The emotional response to the platform is perhaps the key success driver within an organisation.

This can be monitored with a variant of a net promoter score. Survey developers quarterly on “How likely would you choose this platform for your next project?” and look at the direction of the response scores. If they start going down then that’s a big red flag for developers looking for other platforms.

Developer workflow analysis

The key platform metric for the business is how fast are developers moving from ideation to delivery. The platform should be removing any steps that slow this process down. A product manager should be sitting with other product teams to analyse the journey from a developer starting on an issue and deploying. Measurements should be set up that track this duration, within the context of the type of feature being delivered.

New developer on boarding flow

If it takes a new developer weeks to be able to get to a point of deploying on the platform then there is the potential that a huge amount of productivity is being lost. This is particularly critical in times of rapid scale up. The time from a new developer starting employment to deploying first application should be measured and ideally the product manager should be shadowing developers in each joining cohort.

Platform availability

This is perhaps the most straightforward of the sources for features. The platform needs to be available so any feature that improves that, within the scope of defined SLOs, should be put into the backlog. The more difficult task is to understand when to prioritise more emotion based features ahead of metric driven availability feature. It’s very easy to fall back onto a path where it’s easy to measure the outcome, but what’s the point in a highly available platform if nobody wants to use it.

Success?

I’ve touched on some of the ways of measuring success above but success of the platform can be more broadly defined. Is it delivering value to the business? How value is defined is going to be slightly different for every business, but the one thing in common is that maximising return on investment from developers will be a key driver. If that is kept in mind then you’re on the road to success.