Technical debt explained
In software development and other information technology fields, technical debt (also known as design debt[1] or code debt) is the implied cost of future reworking because a solution prioritizes expedience over long-term design.[2]
Analogous with monetary debt,[3] if technical debt is not repaid, it can accumulate "interest", making it harder to implement changes. Unaddressed technical debt increases software entropy and cost of further rework. Similarly to monetary debt, technical debt is not necessarily a bad thing, and sometimes (e.g. as a proof-of-concept) is required to move projects forward. On the other hand, some experts claim that the "technical debt" metaphor tends to minimize the ramifications, which results in insufficient prioritization of the necessary work to correct it.[4] [5]
As a change is started on a codebase, there is often the need to make other coordinated changes in other parts of the codebase or documentation. Changes required that are not completed are considered debt, and until paid, will incur interest on top of interest, making it cumbersome to build a project. Although the term is primarily used in software development, it can also be applied to other professions.
In a Dagstuhl seminar held in 2016, technical debt was defined by academic and industrial experts of the topic as follows: "In software-intensive systems, technical debt is a collection of design or implementation constructs that are expedient in the short term, but set up a technical context that can make future changes more costly or impossible. Technical debt presents an actual or contingent liability whose impact is limited to internal system qualities, primarily maintainability and evolvability."[6]
Assumptions
Technical debt posits that an expedient design essentially reduces expense in the present, but causes extra expense in the future. This premise makes assumptions about the future:
- That the product survives long enough to actually incur the future costs
- That future events do not make the "long-term" design obsolete just as soon as the expedient design
- That future advancements do not make reworking less expensive than present assumptions
Since the future is uncertain, it is possible that a perceived technical debt today may in fact look like a savings in the future. Although the debt scenario is considered more likely, the uncertainty further complicates design decisions.
Also, the calculation of technical debt typically considers the cost of employee work time, but a complete assessment should include other costs incurred or deferred by the design decision, such as training, licensing, tools, services, hardware, opportunity cost, etc.
Causes
Common causes of technical debt include:
- Ongoing development, long series of project enhancements over time renders old solutions sub-optimal.
- Insufficient up-front definition, where requirements are still being defined during development, development starts before any design takes place. This is done to save time but often has to be reworked later.[7]
- Business pressures, where the business considers getting something released sooner before the necessary changes are completed, hence builds up technical debt involving those uncompleted changes.
- Lack of process or understanding, where businesses are blind to the concept of technical debt, and make decisions without considering the implications.
- Tightly coupled components, where functions are not modular, the software is not flexible enough to adapt to changes in business needs.
- Lack of a test suite, which encourages quick and risky band-aid bug fixes.
- Lack of software documentation, where code is created without supporting documentation. The work to create documentation represents debt.[8]
- Lack of collaboration, where knowledge isn't shared around the organization and business efficiency suffers, or junior developers are not properly mentored.
- Parallel development on multiple branches accrues technical debt because of the work required to merge the changes into a single source base. The more changes done in isolation, the more debt.
- Deferred refactoring; As the requirements for a project evolve, it may become clear that parts of the code have become inefficient or difficult to edit and must be refactored in order to support future requirements. The longer refactoring is delayed, and the more code is added, the bigger the debt.
- Lack of alignment to standards, where industry standard features, frameworks, and technologies are ignored. Eventually integration with standards will come and doing so sooner will cost less (similar to "delayed refactoring").
- Lack of knowledge, when the developer doesn't know how to write elegant code.[9]
- Lack of ownership, when outsourced software efforts result in in-house engineering being required to refactor or rewrite outsourced code.
- Poor technological leadership, where poorly thought out commands are handed down the chain of command.
- Last minute specification changes. These have potential to percolate throughout a project, but there is insufficient time or budget to document and test the changes.
- Laziness, where employees might not be willing or incentivized to put extra effort into code readability and documentation.
Service or repay the technical debt
Kenny Rubin uses the following status categories:
- Happened-upon technical debt—debt that the development team was unaware existed until it was exposed during the normal course of performing work on the product. For example, the team is adding a new feature to the product and in doing so it realizes that a work-around had been built into the code years before by someone who has long since departed.
- Known technical debt—debt that is known to the development team and has been made visible using one of many approaches.
- Targeted technical debt—debt that is known and has been targeted for servicing by the development team.
Consequences
"Interest payments" are caused by both the necessary local maintenance and the absence of maintenance by other users of the project. Ongoing development in the upstream project can increase the cost of "paying off the debt" in the future. One pays off the debt by simply completing the uncompleted work.
The buildup of technical debt is a major cause for projects to miss deadlines. It is difficult to estimate exactly how much work is necessary to pay off the debt. For each change that is initiated, an uncertain amount of uncompleted work is committed to the project. The deadline is missed when the project realizes that there is more uncompleted work (debt) than there is time to complete it in. To have predictable release schedules, a development team should limit the amount of work in progress in order to keep the amount of uncompleted work (or debt) small at all times.
If enough work is completed on a project to not present a barrier to submission, then a project will be released which still carries a substantial amount of technical debt. If this software reaches production, then the risks of implementing any future refactors which might address the technical debt increase dramatically. Modifying production code carries the risk of outages, actual financial losses and possibly legal repercussions if contracts involve service-level agreements (SLA). For this reason we can view the carrying of technical debt to production almost as if it were an increase in interest rate and the only time this decreases is when deployments are turned down and retired.
While Manny Lehman's Law already indicated that evolving programs continually add to their complexity and deteriorating structure unless work is done to maintain them, Ward Cunningham first drew the comparison between technical complexity and debt in a 1992 experience report:
In his 2004 text, Refactoring to Patterns, Joshua Kerievsky presents a comparable argument concerning the costs associated with architectural negligence, which he describes as "design debt".[10]
Activities that might be postponed include documentation, writing tests, attending to TODO comments and tackling compiler and static code analysis warnings. Other instances of technical debt include knowledge that isn't shared around the organization and code that is too confusing to be modified easily.
Writing about PHP development in 2014, Junade Ali said:
Grady Booch compares how evolving cities is similar to evolving software-intensive systems and how lack of refactoring can lead to technical debt.
In open source software, postponing sending local changes to the upstream project is a form of technical debt.
See also
References
- Book: Suryanarayana. Girish. Refactoring for Software Design Smells. November 2014. Morgan Kaufmann. 978-0128013977. 258. 1st.
- Web site: Definition of the term "Technical Debt" (plus, some background information and an "explanation"). Techopedia. August 11, 2016.
- Allman. Eric. Managing Technical Debt. Communications of the ACM. May 2012. 55. 5. 50–55. 10.1145/2160718.2160733. 53246391 .
- Web site: Jeffries. Ron. November 10, 2015. Technical Debt – Bad metaphor or worst metaphor?. https://web.archive.org/web/20151111011323/http://ronjeffries.com/articles/015-11/tech-debt/. November 11, 2015 .
- Web site: Knesek. Doug. April 7, 2016. Averting a 'Technical Debt' Crisis.
- Avgeriou . Paris . Kruchten . Philippe . Ozkaya . Ipek . Carolyn . Seaman . Managing technical debt in software engineering (dagstuhl seminar 16162) . Dagstuhl Reports . 2016 . 6 . 4 .
- Book: Rios . Nicolli . Spínola . Rodrigo Oliveira . Mendonça . Manoel . Seaman . Carolyn . The most common causes and effects of technical debt: First results from a global family of industrial surveys . 2018-10-11 . Proceedings of the 12th ACM/IEEE International Symposium on Empirical Software Engineering and Measurement . https://doi.org/10.1145/3239235.3268917 . ESEM '18 . New York, NY, USA . Association for Computing Machinery . 1–10 . 10.1145/3239235.3268917 . 978-1-4503-5823-1.
- Book: Girish Suryanarayana. Ganesh Samarthyam. Tushar Sharma. Refactoring for Software Design Smells: Managing Technical Debt. 11 November 2014. Elsevier Science. 978-0-12-801646-6. 3.
- Book: Chris Sterling. Managing Software Debt: Building for Inevitable Change (Adobe Reader). 10 December 2010. Addison-Wesley Professional. 978-0-321-70055-1. 17.
- Book: Kerievsky, Joshua. 978-0-321-21335-8. Refactoring to Patterns. 2004. Addison-Wesley .
External links
- Ward Explains Debt Metaphor, video from Ward Cunningham
- OnTechnicalDebt The online community for discussing technical debt
- Experts interviews on Technical Debt: Ward Cunningham, Philippe KRUCHTEN, Ipek OZKAYA, Jean-Louis LETOUZEY
- Steve McConnell discusses technical debt
- TechnicalDebt from Martin Fowler Bliki
- Averting a "Technical Debt" Crisis by Doug Knesek
- "Get out of Technical Debt Now!", a talk by Andy Lester
- Lehman's Law
- Managing Technical Debt Webinar by Steve McConnell
- Boundy, David, Software cancer: the seven early warning signs or here, ACM SIGSOFT Software Engineering Notes, Vol. 18 No. 2 (April 1993), Association for Computing Machinery, New York, New York, US
- Technical debt: investeer en voorkom faillissement by Colin Spoel
- Technical debts: Everything you need to know
- What is technical debt? from DeepSource blog