Marcel Cremer | Tech, Digitalisation and Entrepreneurship
October 24, 2022

The 7 Types of Waste in Software Development

Posted on October 24, 2022
7 minutes  • 1383 words  • Other languages:  Deutsch

As everybody knows, I’m a big fan of lean development. The concepts of lean development are an adaption of the lean manufacturing approach, that made the Toyota production system very competetive and in some areas even a market leader in the middle of the 20th century. Likewise, software development can be much more efficient if we follow the principles in our day to day tasks. As it’s not possible to explain everything in one article, we’ll look at the seven types of “waste” in software development today.

What does “waste” mean?

As described in the intro, lean development has it’s origin in the lean manufacturing approach. If we look at any production line, you can see that there’s waste created over the process of building and assembling any product. It’s not 100 percent possible to prevent, that

All of these types of waste are very visible and “normal” for a production line and can (and should) be optimized. But are these kind of wastes also existing in software development?

Yes, they are, although they are not very visible on the first glance. So let’s step right into them.

Partially done work

As this one is the biggest of all wastes in my opinion, I put it as the very first one to discuss. Did you ever noticed, that in software development, we often do things and they are delivered very late, for example because the next release is planned in half a year, or even not at all, because the software has changed and whatever has been built does no longer fit to the software, that has changed in the meantime? This happens very often and is all related to “partially done work”.

Imagine you had a car factory, and it would build exhausts 24/7, but would only get one engine per month. What would happen shortly after starting the production? It’s obvious: The exhausts would somewhen be stacked until the rooftop, while only one of them would be used per month to actually build a car. The same is true for software:

If we start to implement different pieces of software, we might have plenty of unfinished puzzle pieces lying around in our “warehouse”, not serving any purpose. Only when we can make it possible, to actually release them, they start to generate value for the user and the software vendor. Therefore, we should optimize our process to build one thing at a time and release it as soon as possible, so that it actually serves the customer. You need to avoid letting your software “warehouse” getting filled with unfinished software at all costs.

Over production

Very similiar to the first waste, we can pollute our “software warehouse” with things, that were never requested and are never needed. If we try to implement additional features that we think are useful, but the customer does not need it and it generates no sales value, we are creating something that nobody will be ever using. Even worse: The extra feature now needs to be maintained and will add additional costs over the whole lifecycle of the software. Stick to the YAGNI Principle (You ain’t gonna need it) and don’t implement, what is not required.

Extra processing

Another waste, that is coming from doing too much is the waste of extra processing. This means, that we are doing unnecessary steps in the process, which are not needed. For example: At our company, QA is responsible for deployment. Why? Because they are the last ones, that are working on a specific task. If they have tested everything and say, that it’s deployable, why should they give it back to development, ops or somebody else to “push the button”? This would just create additional waiting times without any further value. Every step in the process, that is done because of some rules, but does not add any value to our software, should be removed immediatly.

Task / Context switching

Did you ever ask yourself, why it takes so long to print a custom image on a T-Shirt? To print images on clothes, there are most of the time very heavy machines needed. These machines need to be either reprogrammed to a certain image, or sometimes even need custom “plates” or “sieves” to be applied, before the machine can change what it is printing. Therefore it’s much easier to print 1000 shirts with the same image, than 5 T-Shirts with an individual image each. The onboarding time kills any productivity.

The same goes for Software development: Every time, that a software developer needs to switch a task, they have some onboarding time. Maybe they need to commit their current changes, switch the branch, understand what they need to do, actually develop something, commit, switch back and try to find out, where they left. Context switching is very costly and even a “five minute task” can become resource consuming very fast. Try to avoid context switching, wherever possible.

Waiting / delays

Another waste that means in consequence utilizing our “developer resources” very badly, is when we make them wait. This can happen, if a developer needs to wait for specification / another developer / some other thing in the development process and cannot work. It’s also happening, if you have poor Hardware and the developer has to wait plenty of time for the software to compile or if you don’t care for example on your CI / CD pipeline and it takes hours to get the feedback, that some code needs to be changed because of linting errors. The waiting of developers for things outside of their control often leads to Task / Context switching, so having one of this can even cause two wastes at the same time.

Hand-Offs / Handovers

Every time the person working on a specific task changes, there is some hand off “waste” generated. This comes, because not everybody has the same information at every point in time and therefore, people need to “get into” whatever they need to do, ask others for information or make the same learnings, somebody else has already made. This becomes especially painful, if a task goes back and forth in the software “production line”, because this waste of resources will grow the more often a task was handover to somebody else.

This type of waste can be reduced, by filling in more people at the same time, make them work together more closely and shorten feedback loops. Also documentation of learnings or preperation for the work of others (e.g. hints for QA, that something that does not seem to be affected could possibly be affected) can help reducing this waste.

Defects

I often hear the joke, that software can be build fast or with a high quality - chose one of them. I personally don’t get this, because if you have a poor quality software, the development will automatically become slow. So to have a high velocity, you absolutely have to minimize defects as good as possible.

Just think about any defect, small or large:
If it is detected, e.g. by QA or by automated tests before deployment, it starts to create “waste”: Somebody has to look at it, maybe debug it for some time to find the root cause and document their findings. Then there needs to be a handover to a software developer, who might have to switch the context to implement a bugfix for the defect. Then it has to go through the whole “production process” again and hopefully it works this time.

Defects are the worst waste in terms of impact, because every time it occurs, it triggers plenty of other steps that are causing waste again. As for this, you should care very much for short feedback loops to find defects as soon as possible. You should also try to integrate code as often as possible and release as early as possible, because some things will only occur when they are tested by real users. High development speed without having a high quality is in my opinion just not possible.

Follow me

Ich arbeite an der Saas-Plattform MOBIKO, baue Teams auf und gebe manchmal Talks.