Can someone give me a good definition of what they mean by the phrase "Technical Debt"?
|
|
From the man himself,
|
||||
|
|
|
It's a metaphor mentioned by Ward Cunningham, Martin Fowler, Jeff Atwood, Steve McConnell, Uncle Bob. The concept tries to put into numbers measurable software metrics like these:
The idea is that you could get a number from these metrics, which would represent the technical debt - in $$$. You always pay interest on your technical debt when you add functionality to the code, or fix defects. If you don't pay back the technical debt - by fixing the issues - you will pay increasing interest forever. A business person may find this argument more reasonable than the pure technical ones. You can see this idea in action with the technical debt plugin for Sonar: More info here: http://sonar.codehaus.org/evaluate-your-technical-debt-with-sonar/ |
||||
|
|
|
|
||||
|
|
|
Jeff Atwood's blog, Paying Down Your Technical Debt |
||||
|
|
|
Technical debt is bad code. That's it. The debt is a metaphor: If you have a lot of bad code, it prevents you from getting new work done because you are spending all your time dealing with the bad code. If you have a lot of debt, it prevents you from using your money on other things, because you spend it all on interest. Technical debt as a metaphor is used to communicate to non-programmers what every programmer knows: a code base full of hacks takes more effort to maintain than a clean code base. This leads to the paradox: shortcuts taken to speed development actually slow it down. Technical debt is a way to explain this to non-programmers. |
||||
|
|
|
The original term was coined by Ward Cunningham (though there is some argument about that), and the idea is that if you cut corners in the short-term, you’re basically borrowing against the future maintainability of the software and that at some point, not unlike a credit card, you’ll pay down that debt by going back and fixing the hacky solutions that were put in place in the interim. See the blog post here for more information and how to mitigate it: |
||||
|
|
|
Technical Debt is estimated as US $ 500 billion and is heading towards 1 Trillion by 2015.. http://www.castsoftware.com/news-events/event/gartner-technical-debt Regards Raja Nagendra Kumar, C.T.O www.tejasoft.com -Experts in identification and elimination of Technical Debt |
||||
|
|
|
We asked this question to several experts, including Ward Cunningham himself. Find their answer & interview below:
Personnally, I define Technical Debt as things you could do now but will do later at a higher cost. It will be more expensive to develop new features and fix bugs, because your code will be ever more complex to understand & maintain, especially if you do not control code quality at each stage of the development. Michael. |
||||
|
|