Skip to main content

Cadence

Multiple Feedback Loops

If you want to run a successful dinner party, you have to address all the risks of it not being successful. For example: having the right food, inviting the right people, serving the right drinks, and so on.

On the run-up to the party, as you solve problems, new, previously-hidden ones come to light.

Congratulations, you're in a feedback loop.

Meeting Reality: reality is changed and so is your internal model.

As you can see in the diagram above, it's a Feedback Loop. How fast should we go round this loop? The longer you procrastinate, the longer it'll be before you find out how your model of the risks you face really stacks up against reality.

In a software development scenario, you should also test your model against reality early and safely. To do this, you likely need to set up multiple feedback loops, like:

  • Bug Reports and Feature Requests tell you how the users are getting on with the software.
  • Monitoring Tools and Logs allow you to find out how your software is doing in reality.
  • Dog-Fooding i.e using the software you write yourself might be faster than talking to users.
  • Continuous Delivery is about putting software into production as soon as it's written.
  • Integration Testing is a faster way of meeting some reality than continually deploying code and re-testing it manually.
  • Unit Testing is a faster feedback loop than Integration Testing.
  • Compilation warns you about logical inconsistencies in your code.

.. and so on.

Time / Reality Trade-Off

This list is arranged so that at the top, we have the most visceral, most real feedback loop, but at the same time, the slowest.

At the bottom, a good IDE can inform you about errors in your Internal Model in real time, by way of highlighting compilation errors . So, this is the fastest loop, but it's the most limited reality.

Imagine for a second that you had a special time-travelling machine. With it, you could make a change to your software, and get back a report from the future listing out all the issues people had faced using it over its lifetime, instantly.

That'd be neat, eh? If you did have this, would there be any point at all in a compiler? Probably not, right?

The whole reason we have tools like compilers is because they give us a short-cut way to get some limited experience of reality faster than would otherwise be possible. Because cadence is really important: the faster we test our ideas, the more quickly we'll find out if they're correct or not.

Development Cycle Time

Developers often ignore the fast feedback loops at the bottom of the list above because the ones nearer the top will do.

In the worst cases this means changing two lines of code, running the build script, deploying and then manually testing out a feature. And then repeating. Doing this over and over is a terrible waste of time because the feedback loop is so long and you get none of the benefit of a permanent suite of tests to run again in the future.

The Testing Pyramid hints at this truth:

  • Unit Tests have a fast feedback loop, so have lots of them.
  • Integration Tests have a slightly slower feedback loop, so have few of them. Use them when you can't write unit tests (at the application boundaries).
  • Manual Tests have a very slow feedback loop, so have even fewer of them. Use them as a last resort. But note - they are essential.

The Testing Pyramid

Production

You could take this section to mean that Continuous Delivery (CD) is always and everywhere a good idea. That's not a bad take-away, but it's clearly more nuanced than that.

Yes, CD will give you faster feedback loops, but even getting things into production is not the whole story: the feedback loop isn't complete until people have used the code, and reported back to the development team.

Different actions have different feedback loops

The right answer is to use multiple feedback loops, as shown in the diagram above.

In the next section De-Risking we're going to introduce a few more useful terms for thinking about risk.