When is it good (if ever) to scrap production code and start over? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T16:05:48Zhttp://stackoverflow.com/feeds/question/144734http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over34When is it good (if ever) to scrap production code and start over?Mike Spross2008-09-27T23:29:44Z2009-04-19T19:43:42Z
<p>We have a software product that was written by a single programmer who is no longer with the company, and have we even have a few customers running the software. I was asked to do a code review and report on the feasibility of adding a new feature to the product. The code (written in VB.NET) was an awful mess, and my boss tells me he has been noticing similarly poor code in other projects from this former developer. I know it's easy to nitpick someone else's code, but I'd say it's pretty bad. Some choice bits from my code review:</p>
<ul>
<li>Abuse of threads: <code>QueueUserWorkItem</code> shows up a lot and is definitely over-used, and Thread-pool delegates have uninformative names such as <code>PoolStart</code> and <code>PoolStart2</code>.</li>
<li>Magic numbers and magic stings...everywhere. Almost as if someone didn't know that <code>Const</code> and <code>Enum</code> exist.</li>
<li>Global variables: Most variables are declared global and may or may not be initialized depending on what code paths get followed and what order things occur in (all the threads running makes this worse)</li>
<li>Compiler warnings: the main solution file contains 500+ warnings.</li>
<li>Duplicate classes as well as seemingly half-finished classes.</li>
<li>Duplicating our existing core libraries (data access layer, error logging,etc.) with subtle modifications (such as changing parameter data types to suit his preferences) because he wanted a "static" unchanging copy of the core code.</li>
<li>Despite duplicating our data access layer code, failed to use it when he actually needed access to the database from his code. Instead, he created a new <code>OleDbReader</code> object every time he needed to query the database.</li>
</ul>
<p>I'm just scratching the surface here, but my question is simple enough: Would it make more sense to take the time to refactor the existing codebase, focusing on one issue at a time, or would you consider rewriting the entire thing from scratch?</p>
<p><strong>EDIT</strong>: To clarify a bit, we do have the original requirements for the project, which is why starting over could be an option. Another way to phrase my question is: Can code ever reach a point where the cost of maintaining it would become greater than the cost of dumping it and starting over?</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144751#1447516Answer by Martin Clarke for When is it good (if ever) to scrap production code and start over?Martin Clarke2008-09-27T23:37:19Z2008-09-27T23:37:19Z<p>Two threads of thought on this one: Do you have the original requirements? Do you have confidence that the original requirements are accurate? What about test plans or unit tests? If you have those things in place it might be easier.</p>
<p>Putting on my customer hat, does the system work or is it unstable? If you've got something that's unstable you've got an argument to change; otherwise you're best of refactoring it bit by bit.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144753#14475319Answer by DrPizza for When is it good (if ever) to scrap production code and start over?DrPizza2008-09-27T23:39:12Z2008-09-28T08:46:41Z<p>To actually scrap and start over?</p>
<p>When the current code doesn't do what you would like it to do, and would be cost prohibitive to change.</p>
<p>I'm sure someone will now link Joel's article about Netscape throwing their code away and how it's oh-so-terrible and a huge mistake. I don't want to talk about it in detail, but if you do link that article, before you do so, consider this: the IE engine, the engine that allowed MS to release IE 4, 5, 5.5, and 6 in quick succession, the IE engine that totally destroyed Netscape... it was new. Trident was a new engine after they threw away the IE 3 engine <em>because it didn't provide a suitable basis for their future development work</em>. MS did that which Joel says you must never do, and it is <em>because</em> MS did so that they had a browser that allowed them to completely eclipse Netscape. So please... just meditate on that thought for a moment before you link Joel and say "oh you should never do it, it's a terrible idea".</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144757#1447576Answer by Shaun for When is it good (if ever) to scrap production code and start over?Shaun2008-09-27T23:40:31Z2008-09-27T23:40:31Z<p>I think the line in the sand is when basic maintenance is taking 25% - 50% longer than it should. There comes a time when maintaining legacy code becomes too costly. A number of factors contribute to the final decision. Time and cost being the most important factors I think.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144764#1447643Answer by Ed Swangren for When is it good (if ever) to scrap production code and start over?Ed Swangren2008-09-27T23:42:24Z2008-09-27T23:42:24Z<p>I agree with Martin. You really need to weigh the effort that will be involved in writing the app from scratch against the current state of the app and how many people use it, do they like it, etc. Often we may want to completely start from scratch, but the cost far outweighs the benefit. I come across bits of ugly looking code all the time, but I soon realize that some of these 'ugly' areas are really bug fixes and make the program work correctly.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144765#1447656Answer by Jason Etheridge for When is it good (if ever) to scrap production code and start over?Jason Etheridge2008-09-27T23:43:15Z2008-09-27T23:43:15Z<p>A rule of thumb I've found useful is that if given a code base, if I have to re-write more than 25% of the code to make it work or modify it based upon new requirements, you may as well re-write it from scratch.</p>
<p>The reasoning is that you can only patch a body of code so far; beyond a certain point, it's quicker to do over.</p>
<p>There's an underlying assumption that you have a mechanism (such as thorough unit and/or system tests) that will tell you whether your re-written version is functionally equivalent (where it needs to be) as the original.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144773#1447733Answer by Nouveau for When is it good (if ever) to scrap production code and start over?Nouveau2008-09-27T23:44:44Z2008-09-27T23:44:44Z<p>You can only give a definite yes to rewriting in case if you know completely how your application works (and by completely I mean it, not just having a general idea of how it should work) and you know more or less exactly how to make it better. Any other cases and it's a shot in the dark, it depends on too much things. Perhaps gradual refactoring would be safer if it is possible.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144826#1448260Answer by Micah for When is it good (if ever) to scrap production code and start over?Micah2008-09-28T00:12:41Z2008-09-28T00:12:41Z<p>If it requires more time to read and understand the code (if that is even possible) than it would to rewrite the entire application, I say scrap it and start over. </p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144848#1448483Answer by Uri for When is it good (if ever) to scrap production code and start over?Uri2008-09-28T00:25:24Z2008-09-28T00:25:24Z<p>I would try to consider the architecture of the system and see whether it is possible to scrap and rewrite specific well defined components without starting everything from scratch. </p>
<p>What would usually happen is that you can either do that (and then sell that to the customer/management), or that you find out that the code is such a horrible and tangled mess that you become even more convinced that you need a rewrite and have more convincing arguments for it (including: "if we engineer it right, we would never need to scrap the whole thing and do a third rewrite). </p>
<p>Slow maintenance would eventually cause that architectural drift that would make a rewrite more expensive later. </p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144858#1448587Answer by mgb for When is it good (if ever) to scrap production code and start over?mgb2008-09-28T00:29:01Z2008-09-29T16:30:21Z<blockquote>
<p>If it requires more time to read and understand the code (if that is even possible)
than it would to rewrite the entire application, I say scrap it and start over.</p>
</blockquote>
<p>Be very carefull with this:</p>
<ol>
<li>Are you sure you aren't just being lazy and not bothering to read the code</li>
<li>Are you being arrogant about the great code you will write compared to the rubbish anyone else produced.</li>
<li>Remember tested-working code is worth a lot more than imaginary yet-to-be-written code</li>
</ol>
<p>In the words of our estemed host and overlord, <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">Joel - things you should never do</a>,<br />
it's not always wrong to abandon working code - but you have to be sure about the reason.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144861#1448615Answer by Richard for When is it good (if ever) to scrap production code and start over?Richard2008-09-28T00:29:37Z2008-09-28T00:29:37Z<p>If there are clean interfaces and you can cleanly delineate module boundaries, then it <em>might</em> be worth refactoring it module by module or layer by layer in order to allow you to migrate existing customers forward into cleaner more stable codebases, and over time, after you've refactored every module, you will have rewritten everything.</p>
<p>But, based on the codereview, doesn't sound like there would be any clean boundaries.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144869#1448691Answer by S.Lott for When is it good (if ever) to scrap production code and start over?S.Lott2008-09-28T00:33:37Z2008-09-28T23:16:01Z<p>Scrap old code early and often. When in doubt, throw it out. The hard part is convincing non-technical folks of the cost-to-maintain.</p>
<p>So long as the value derived appears to be greater than the cost to operate and maintain, there's still positive value flowing from the software. The question surrounding a rewrite this: "will we get even more value from a rewrite?" Or alternatively "How much more value will we get from a rewrite?" How many person-hours of maintenance will you save? </p>
<p>Remember, the rewrite investment is once only. The return on the rewrite investment lasts forever. <strong>Forever</strong>.</p>
<p>Focus the value question down to specific issues. You listed a bunch of them above. Stick with that.</p>
<ul>
<li><p>"Will we get more value by reducing cost through
dropping the junk that we don't use
but still have to wade through?"</p></li>
<li><p>"Will we get more value from dropping the junk that's unreliable and breaks?"</p></li>
<li><p>"Will we get more value if we understand it -- not by documenting, but by replacing with something we built as a team?"</p></li>
</ul>
<p>Do you homework. You'll have to confront the following show-stoppers.
These will originate somewhere in your executive foodchain from someone who'll respond as follows:</p>
<ul>
<li><p>"Is it broken?" And when you say "It's not <em>crashed</em> as such," They'll say "It's not broke - don't fix it."</p></li>
<li><p>"You've done the code analysis, you understand it, you no longer need to fix it."</p></li>
</ul>
<p>What's your answer to them?</p>
<p>That's only the first hurdle. Here's the worst possible situation. This doesn't always happen, but it does happen with alarming frequency.</p>
<p>Someone in your executive foodchain will have this thought:</p>
<ul>
<li>"A rewrite doesn't create enough value. Rather than simply rewrite, let's expand it." The justification is that by creating <em>enough</em> value, users are more likely to buy in to the rewrite.</li>
</ul>
<p>A project where scope is expanded -- artificially -- to add value is usually doomed.</p>
<p>Instead, do the smallest rewrite you can to replace the darn thing. Then expand to fit real needs and add value.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144886#1448860Answer by el.gringogrande for When is it good (if ever) to scrap production code and start over?el.gringogrande2008-09-28T00:43:44Z2008-09-28T00:43:44Z<p>I have never completely thrown out code. Even when going from a foxpro system to a c# system.</p>
<p>If the old system worked then why just throw it out?</p>
<p>I have come across a few really bad system. Threads being used where not needed. Horrible inheritance and abuse of interfaces.</p>
<p>It is best to understand what the old code is doing and why it is doing it. Then change it so that it is not confusing.</p>
<p>Of course if the old code doesn't work. I mean can't even compile. Then you might be justified in just starting over. But how often does that actually happen? </p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144931#1449310Answer by UltimateBrent for When is it good (if ever) to scrap production code and start over?UltimateBrent2008-09-28T01:15:49Z2008-09-28T01:15:49Z<p>Yes, it totally can happen. I've seen money be saved by doing it.</p>
<p>This is not a tech decision, it's a business decision. Code rewrites are long term gains, while "if it ain't <i>totally</i> broke..." is a short term gain. If you are in a first year startup that is focused on getting a product out the door, the answer is usually to just live with it. If you're in an established company, or the errors with the current systems are causing more workload, therefor more company money.. then they might go for it.</p>
<p>Present the problem as best as you can to your GM, use dollar values where you can. "I don't like dealing with it" means nothing. "It'll take twice the time to do everything until this is fixed" means a lot.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144937#1449370Answer by David L Morris for When is it good (if ever) to scrap production code and start over?David L Morris2008-09-28T01:21:41Z2008-09-28T01:21:41Z<p>I think there are a number of issues here that depend largely on where you are at.</p>
<p>Is the software working well from a customer perspective? (If yes be very careful about changes). I would think there would be little point re-witting unless you were expanding the feature set if the system was working. And are you planning to expand the features and customer base of the software? If so then you have much more reason to change.</p>
<p>As much as anything just trying to understand some else's code even if well written can be difficult, when badly written I would imagine almost impossible. What you describe sounds like something that would be very difficult to expand.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144941#1449412Answer by dr_pepper for When is it good (if ever) to scrap production code and start over?dr_pepper2008-09-28T01:25:24Z2008-09-28T01:25:24Z<p>If possible, I typically would prefer to rewrite smaller portions of the code over time when I need to refactor a baseline. There are typically many smaller issues such as magic number, poor commenting, etc. that tend to make the code look worse than it actually is. So, unless the baseline is just awful, keep the code and just make improvements at the same time you are maintaining the code.</p>
<p>If refactoring requires a lot of work, I recommend laying out a small re-design plan/todo list that gives you a list of things to work on in order so that you can bring the baseline to a better state. Starting from scratch is always a risky move and you are not guaranteed that the code will be better when you are finished. Using this technique, you will always have a working system that improves over time.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144943#1449432Answer by torial for When is it good (if ever) to scrap production code and start over?torial2008-09-28T01:28:00Z2008-09-28T01:28:00Z<p>Code with excessively high cyclomatic complexity (like over 100 in a large number of modules) is a good clue. Also, how many bugs does it have / KLOC? How critical are the bugs? How often are bugs introduced when bug fixes are made. If your answer is <em>a lot</em> (I cant remember norms right now), then a rewrite is warranted.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144954#1449540Answer by David Robbins for When is it good (if ever) to scrap production code and start over?David Robbins2008-09-28T01:36:03Z2008-09-28T01:36:03Z<p>I would take into consideration if the application does what it is intended to do, is required for you to ever make modifications, and are you confident that the app has been thoroughly tested in all scenarios that it will be used in.</p>
<p>Do not invest the time if the app does not need alterations. However, if it doesn't function as you need and you need to control the hours and time invested to make corrections, scrap it and re-write to the standards that your team can support. There's nothing worse than terrible code that you have to support / decipher but still have to live with. Remember, Murphy's Law says it will 10 at night when you'll have to make things work, and that is never productive.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144971#1449717Answer by Adrian Wible for When is it good (if ever) to scrap production code and start over?Adrian Wible2008-09-28T01:50:05Z2008-09-28T01:50:05Z<p>I saw an application re-architected within 2 years of its introduction into production, and others rewritten in different technologies (one was C++ - now Java). Both efforts were were not, to my mind, successful.</p>
<p>I prefer a more evolutionary approach to bad software. If you can "componentize" your old app such that you can introduce your new requirements and interface with the old code, you can ease yourself into the new environment without having to "sell" the zero-value (from a biz perspective) investment in rewriting.</p>
<p>Suggested approach - write unit tests for the functionality with which you wish to interface to 1) ensure the code behaves as you expect and 2) provide a safety net for any refactoring that you may wish to do on the old base.</p>
<p>Bad code is the norm. I think IT gets a bad rap from business for favoring rewrites/rearchitecting/etc. They pay the money and "trust" us (as an industry) to deliver solid, extensible code. Sadly, business pressures frequently result in shortcuts that make the code unmaintainable. Sometimes it's bad programmers... sometimes bad situations.</p>
<p>To answer your rephrased question... can code maintenance costs ever exceed rewriting costs... the answer is clearly yes. I don't see anything in your examples, however, that lead me to believe this is your case. I think those issues can be addressed with tests and refactoring.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144989#1449891Answer by hlovdal for When is it good (if ever) to scrap production code and start over?hlovdal2008-09-28T02:06:00Z2008-09-28T02:06:00Z<p>I do not have any experience with using metrics for this myself, but the
article
<a href="http://www.stsc.hill.af.mil/crosstalk/1995/11/Maintain.asp" rel="nofollow">"Software Maintainability Metrics Models in Practice"</a> discusses
more or less the same question asked here for two case studies they did.
It starts with the following editor's note:</p>
<blockquote>
<p>In the past, when a maintainer
received new code to maintain, the
rule-of-thumb was "If you have to
change more than 40 percent of someone
else's code, you throw it out and
start over." The Maintainability Index
[MI] addressed here gives a much more
quantifiable method to determine when
to "throw it out and start over." This
work was sponsored by the U.S. Air
Force Information Warfare Center and
the U.S. Department of Energy [DOE],
Idaho Field Office, DOE Contract No.
DE-AC07-94ID13223.)</p>
</blockquote>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/145008#1450080Answer by DGentry for When is it good (if ever) to scrap production code and start over?DGentry2008-09-28T02:21:29Z2008-09-28T02:21:29Z<p>Production code always has some value. The only case where I would truly throw it all out and start again is if we determine the intellectual property is irrevocably contaminated. For example if someone brought large amounts of code from a previous employer, or a large percentage of the code was ripped from a GPLd codebase.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/145078#1450781Answer by Andrew for When is it good (if ever) to scrap production code and start over?Andrew2008-09-28T02:55:33Z2008-09-28T02:55:33Z<p>I think the rule was...</p>
<ul>
<li>The first version is always a throw away</li>
</ul>
<p>So, if you learned your lesson(s), or his/her lessons, then you can go ahead and write it fresh now that you understand your problem domain better.</p>
<p>Not that there aren't parts that can/should be kept. Tested code is the most valuable code, so if it isn't deficient in any real way other than style, no reason to toss it <em>all</em> out.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/145102#14510217Answer by mbac32768 for When is it good (if ever) to scrap production code and start over?mbac327682008-09-28T03:14:19Z2008-09-28T03:14:19Z<p>Without any offense intended, the decision to rewrite a codebase from scratch is a common, and serious management mistake newbie software developers make.</p>
<p>There are many disadvantages to be wary of.</p>
<ul>
<li>Rewrites stop new features from being developed cold for months/years. Few, if any companies can afford to stand-still for this long.</li>
<li>Most development schedules are difficult to nail. This rewrite will be no exception. Amplify the previous point by, now, a delay in development.</li>
<li>Bugs that were fixed in the existing codebase through painful experience will be re-introduced. Joel Spolsky has more examples in <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">this article</a>.</li>
<li>Danger of falling victim to the <a href="http://en.wikipedia.org/wiki/Second-system_effect" rel="nofollow">Second-system effect</a> -- in summary, ``People who have designed something only once before try to do all the things they "didn't get to do last time", loading the project up with all the things they put off while making version one, even if most of them should be put off in version two as well.''</li>
<li>Once this expensive, burdensome rewrite is completed, the very next team to inherit the new codebase is likely to use the same excuses for doing another rewrite. Programmers hate learning someone else's code. No one writes perfect code because perfection is so subjective. Find me any real-world application and I can give you a damning indictment and rationale for doing a from-scratch rewrite.</li>
</ul>
<p>Whether you ultimately rewrite from scratch or not, beginning a refactoring phase now is a good way to both really sit down and understand the problem so that the rewrite will go more smoothly if truly called for, as well as giving the existing codebase an honest look to really see if a rewrite's needed.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/145506#1455062Answer by Firas for When is it good (if ever) to scrap production code and start over?Firas2008-09-28T08:57:52Z2008-09-28T08:57:52Z<p>As early as possible. Whenever you get a premonition that your code is slowly turning into an ugly beast that is very likely to consume your soul and give you headaches, and you know the problem is in the underlying structure of the code (so any fix would be a hack, e.g. introduce a global variable), then it's time to start over.</p>
<p>For some reasons people don't like throwing away precious code, but if you feel your better off starting over, you are probably right. Trust your instinct and remember that it wasn't a waste of time, it taught you one more way of NOT approaching the problem. You could (should) always use a version control system so your baby is never really lost.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/151615#1516150Answer by Matt Cruikshank for When is it good (if ever) to scrap production code and start over?Matt Cruikshank2008-09-30T03:07:47Z2008-09-30T03:07:47Z<p>I'm going to post this book every time I see a discussion on Refactoring. Everyone should read "Working Effectively with Legacy Code" by Michael Feathers. I found it to be an excellent book - if nothing else, it's a fun read, and motivational.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/155323#1553233Answer by keysersoze for When is it good (if ever) to scrap production code and start over?keysersoze2008-09-30T22:09:33Z2008-09-30T22:09:33Z<p>I wonder if the people who vote for scrapping and starting over have ever successfully refactored a large project, or at least seen a large project in poor condition that they think could use a refactoring?</p>
<p>If anything, I err on the opposite side: I've seen 4 large projects that were a mess, that I advocated refactoring as opposed to rewriting. On a couple, there was barely a single line of original code that remained, and major interfaces changed in significant ways, but the process never involved the entire project failing to function as well as it originally did, for any more than a week. (And top-of-trunk was never broken).</p>
<p>Perhaps a project exists that is so severely broken that to attempt to refactor it would be doomed to failure, or perhaps one of the previous projects I refactored would have been better served by a "clean re-write", but I'm not sure I'd know how to recognize it.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/168389#1683890Answer by Ricardo Villamil for When is it good (if ever) to scrap production code and start over?Ricardo Villamil2008-10-03T19:02:55Z2008-10-03T19:02:55Z<p>When the code has reached a point that is not maintainable or extensible anymore. Is full of short-term hacky fixes. It has lots of coupling. It has long (100+lines) methods. It has database access in the UI. It generates a lot of random, impossible to debug errors. </p>
<p>Bottom line: When maintaining it is more expensive (i.e. takes longer) than rewriting it.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/199133#1991332Answer by sgreeve for When is it good (if ever) to scrap production code and start over?sgreeve2008-10-13T21:44:39Z2009-04-19T19:43:42Z<p>In terms of business value, I would think it's extremely rare that a real case can be made for a rewrite due solely to the internal state of the code. If the product's customer-facing and is currently live and bringing in money (i.e. is not a mothballed or unreleased product), then consider that:</p>
<ul>
<li>You already have customers using it. They're familiar with it, and might have built some of their own assets around it. (Other systems that interface to it; products based on it; processes they'd have to change; staff they'd maybe have to retrain). All of this costs the customer money. </li>
<li>Re-writing it <em>might</em> cost less in the long term than making difficult changes and fixes. But you can't quantify that yet, unless your app is no more complex than Hello World. And a re-write means a re-test and a redeploy, and probably an upgrade path for your customers. </li>
<li>Who says the re-write will be any better? Can you honestly say your firm is writing sparkly code now? Have the practices that turned the original code to spaghetti been corrected? (Even if the main culprit was a single developer, where were his peers and management, ensuring quality through reviews, testing, etc.?)</li>
</ul>
<p>In terms of technical reasons, I'd suggest it could be time for a major rewrite if the original has some technical dependencies that have become problematic. e.g. a third party dependency that's now out of support, etc. </p>
<p>In general though, I think the most sensible move is to refactor piece by piece (very small pieces if it's really <em>that</em> bad), and improve the internal architecture incrementally rather than in one big drop.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/199153#1991530Answer by Lieutenant Frost for When is it good (if ever) to scrap production code and start over?Lieutenant Frost2008-10-13T21:53:51Z2008-10-13T21:53:51Z<p><em>When is it good (if ever) to scrap production code and start over?</em></p>
<p>Never had to do this, but logic would dictate (to me, anyway) that once you pass the inflection point where you're spending more time reworking and fixing bugs in the existing code base than you are adding new functionality, it's time to trash the old stuff and get a fresh start.</p>
http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/652108#6521080Answer by David Basarab for When is it good (if ever) to scrap production code and start over?David Basarab2009-03-16T20:48:32Z2009-03-16T20:48:32Z<p>I used to believe in just re-write from scratch, but it is wrong.</p>
<p><a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">http://www.joelonsoftware.com/articles/fog0000000069.html</a></p>
<p>Changed my mind. </p>
<p>What I would suggested is figuring out a way to properly refactor the code. Keep all existing functionality and test as you go. We have all seen horrible code bases, but it is important to keep the knowledge over time you application has.</p>