vote up 11 vote down star
5

Can someone give me a good definition of what they mean by the phrase "Technical Debt"?

flag
I think you got the wrong definition, @PK – adamantium Aug 11 at 7:00
1  
was just joking...removed the comment – PK Aug 11 at 7:03
12  
I'm sure it would have been much easier to type this in to google ;-) – ThePower Aug 11 at 7:04
1  
@ThePower: yes, it would, but now we have a much better collection of comprehensive resources about Technical Debt here on SO, thanks to the question. Just because something is googlable doesn't mean that it doesn't belong on SO. Joel has discussed this countless times on the podcast. – JesperE Aug 11 at 7:16
2  
Already Google search result #10 for 'What is technical debt' – Gishu Aug 11 at 9:03
show 2 more comments

6 Answers

vote up 16 vote down check

From the man himself,
http://martinfowler.com/bliki/TechnicalDebt.html

To summarize, it is a debt that you incur everytime you avoid doing the right thing (like refactoring, removing duplication/redundancy) letting the code quality deteriorate over time. As with financial debt, it is the easy thing to do in the short term.. however over time, the interest you pay on this debt is humongous - the code quality deteriorates over time to a point where a rewrite of the app is more feasible than maintaining or changing it. (So the question is whether you want to pay a little now (fixing the tiny issues) or pay lots more after N months (by which time the code has turned into Jurassic Park II).

link|flag
vote up 2 vote down

A good answer here.

link|flag
vote up 7 vote down

Jeff Atwood's blog, Paying Down Your Technical Debt

link|flag
vote up 15 vote down

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:

http://nemo.sonarsource.org/

More info here:

http://sonar.codehaus.org/evaluate-your-technical-debt-with-sonar/

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.