Throwing hardware at software problems – Which way do you lean? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T16:45:38Z http://stackoverflow.com/feeds/question/377420 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean 15 Throwing hardware at software problems – Which way do you lean? nick_alot 2008-12-18T10:04:00Z 2009-07-09T10:47:59Z <p>There is a strong case out there for companies who are experiencing scaling problems with their current architecture to simply spend $$$ on cutting edge hardware to achieve the performance and scale they require.</p> <p>In most cases I have experienced and read about, the business case for software re-architecture never stacks up against the business case for more computing horsepower.</p> <p><strong>Simplified reasoning:</strong> Hardware is cheap, developers are expensive.</p> <p><strong><em>As a software developer, does this bother you, or does the does it appeal to your pragmatism?</em></strong></p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377427#377427 5 Answer by Gamecat for Throwing hardware at software problems – Which way do you lean? Gamecat 2008-12-18T10:10:39Z 2008-12-18T10:19:22Z <p>Well, I can tell out of experience that it is not impossible to reduce execution time with a factor 200 (or even bigger) by profiling and optimizing your code. I don't think these factors are easy obtained with more hardware.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377428#377428 10 Answer by Vilx- for Throwing hardware at software problems – Which way do you lean? Vilx- 2008-12-18T10:10:45Z 2008-12-18T10:10:45Z <p>For me it makes my life easier, because I don't have to strive to optimize every inch of my code. I can write cleaner, more readable, albeit somewhat slower code. This in turn decreases development/maintenance time and thus - expenses. The savings can then be used to buy better hardware.</p> <p>That said, it's not an excuse for writing sloppy code of course. I do think a lot about my data structures, DB architecture, etc. I try to make them as efficient as possible, without sacrificing elegance.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377429#377429 5 Answer by Shane MacLaughlin for Throwing hardware at software problems – Which way do you lean? Shane MacLaughlin 2008-12-18T10:11:00Z 2008-12-18T10:11:00Z <p>IMO, problems of scale are rarely linear in nature, whereas throwing hardware at the problem typically provides a linear performance improvement. Look at performance graphs for most systems and you tend to see S-curves rather than straight lines. As such throwing hardware at the problem is a short term solution only.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377430#377430 2 Answer by Roddy for Throwing hardware at software problems – Which way do you lean? Roddy 2008-12-18T10:11:05Z 2008-12-18T10:11:05Z <p>Sadly, most versions Vn+1 of software are bigger and slower than version Vn. </p> <p>Given this, would you - as management - really believe someone who said that their 'new' version would be faster than the old?</p> <p>I know this is a simplification, and it <strong>is</strong> often possible to make radical performance improvements with relatively simple changes, but history tells us that's often not the case.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377431#377431 13 Answer by Greg for Throwing hardware at software problems – Which way do you lean? Greg 2008-12-18T10:11:06Z 2008-12-18T10:11:06Z <p>When it happens with other people's code, it's sensible and pragmatic. When it happens with my code, the code should have been optimized!</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377438#377438 5 Answer by Paul for Throwing hardware at software problems – Which way do you lean? Paul 2008-12-18T10:13:58Z 2008-12-18T10:13:58Z <p>Pragmatic.</p> <p>It's not about whether the ultimate speed up can come from hardware or software, it's about the best way to solve the business problem of capacity and performance, and if the hardware route delivers what's wanted for a lower cost, why not?</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377439#377439 2 Answer by krosenvold for Throwing hardware at software problems – Which way do you lean? krosenvold 2008-12-18T10:15:04Z 2008-12-18T10:15:04Z <p>Quite a few of the large companies who tend to do this always forget that it's not uncommon to have a yearly maintenance cost of $10,000 or more for a production server that is located in a mountain somewhere.</p> <p>So you're scaling at least one webserver and one appserver, say over 5 years. At least $100,000 just for hosting the boxes. That's only the start of the cost analysis.</p> <p>How much optimization could you do for that kind of money ?</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377443#377443 12 Answer by frankodwyer for Throwing hardware at software problems – Which way do you lean? frankodwyer 2008-12-18T10:16:36Z 2008-12-18T10:50:48Z <p>Well the business case makes sense. Compared to open heart surgery on a software architecture, it's hard to argue with Moore's law (but software environments have added so many layers of abstraction that we're getting there :-)</p> <p>Back in the day I was able to get a 30% speedup in an encryption implementation by looking at the assembler that the compiler produced and removing a single unnecessary instruction from an inner loop. Nowadays we are so many abstractions away from the raw metal that this sort of thing would be impossible to even contemplate.</p> <p>edit: I think there is still a place for optimisation of the sort where you replace an naive algorithm of O(N^2) or O(N!) with one of O(N) - but that is almost in the category of bug fix rather than optimisation. And generally you may be able to get some useful gains with small local optimisations in well encapsulated code that is heavily used.</p> <p>But I'm also reminded of the rules of optimisation:</p> <p><strong>Rule 1: Don't optimise</strong></p> <p><strong>Rule 2 (for experts only): Optimise later</strong></p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377444#377444 1 Answer by mezoid for Throwing hardware at software problems – Which way do you lean? mezoid 2008-12-18T10:16:49Z 2008-12-19T10:49:29Z <p>I must admit it doesn't bother me too much. If something can be solved cheaper with additional hardware then great. As long as value is added by a solution then it is ok even though it's not the ideal. While I would be tempted, as a developer, to look for a software solution sometimes there is little to be gained from it financially. It's like trying to squeeze all the performance out of a 286 by developing in assembler when you can just upgrade to a multi-core machine for cheaper. </p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377445#377445 3 Answer by Guge for Throwing hardware at software problems – Which way do you lean? Guge 2008-12-18T10:17:31Z 2008-12-18T10:17:31Z <p>If you want to think about the environment, it's much better to spend money on developers than hardware.</p> <p>If existing hardware can be utilized better you get a smaller environmental footprint through not having to produce that hardware, ship it and then run it and cool it.</p> <p>But it has to be said that newer hardware might also give more performace for the same footprint. Hardware upgrades can save both time and make good sense from an environmental angle. Such as upgrading RAM to do less disk activity, or use LCD over CRT's.</p> <p>Use good science.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377458#377458 1 Answer by Stephen Belanger for Throwing hardware at software problems – Which way do you lean? Stephen Belanger 2008-12-18T10:22:34Z 2008-12-18T10:22:34Z <p>Well...having what would once have been called a super-computer sitting on my desk now certainly makes things easier there is something to be said for squeezing out that little extra bit of performance. Like decoding HD video on an OMAP3, I love toying with little stuff like that and seeing just how much power I can squeeze out of a relatively under-powered system.</p> <p>With energy concerns rising and singularity approaching, it would only make sense for the big companies to begin focusing more heavily on optimization.</p> <p>It's nice to see Microsoft leading the pack with their Windows overhaul in version 7.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377471#377471 6 Answer by Cameron MacFarland for Throwing hardware at software problems – Which way do you lean? Cameron MacFarland 2008-12-18T10:28:47Z 2008-12-18T10:28:47Z <p>I've generally been at the other end, because the managers just didn't understand costs.</p> <p><strong>Manager:</strong> We need to optimize because our software runs too slow...<br> <strong>Me:</strong> Well we could upgrade from 1Gb ram to 2 or more...<br> <strong>Manager:</strong> We can't afford it.<br> <strong>Me:</strong> o_O</p> <p>So yes I lean towards more hardware first. No I don't have a problem with that because generally my time is better spent adding more features. While I do enjoy performance programming, I can rarely justify the time it takes to do it.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377526#377526 2 Answer by James Anderson for Throwing hardware at software problems – Which way do you lean? James Anderson 2008-12-18T11:02:43Z 2008-12-18T11:02:43Z <p>In production environments hardware isnt necceserally that cheap.</p> <p>Also production quality envronments usually involve at least two machines at two sites with any single machine being able to handle all the workload.</p> <p>So you pay more for better quality hardware, then, you multiply that cost by four. Having a skilled programmer iron out performance issues doesnt seem so expensive after all.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377531#377531 5 Answer by Alterlife for Throwing hardware at software problems – Which way do you lean? Alterlife 2008-12-18T11:06:27Z 2008-12-18T11:06:27Z <blockquote> <p>Simplified reasoning: Hardware is cheap, developers are expensive.</p> </blockquote> <p>Another way to look at it:</p> <p>When optimizing code, the results are not very predictable: You could spend 10 days trying to optimize code, and 10 days later end up with no significant result... or with a huge performance improvement, depending on how careless the original developer was.</p> <p>Upgrading hardware, on the other hand pretty much guarantees a result. If you get a bigger faster machine your existing code will definitely run faster, instantly.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377550#377550 1 Answer by Robert Gould for Throwing hardware at software problems – Which way do you lean? Robert Gould 2008-12-18T11:18:00Z 2008-12-18T11:18:00Z <blockquote> <p>Simplified reasoning: Hardware is cheap, developers are expensive.</p> </blockquote> <p>Yes, because most developers you would entrust to optimize that code, would earn the cost of more than few processors and a bunch a ram a week.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377576#377576 0 Answer by JeeBee for Throwing hardware at software problems – Which way do you lean? JeeBee 2008-12-18T11:30:04Z 2008-12-18T11:30:04Z <p>Hardware first, unless the hardware costs are significantly more than re-architecting the problem software. In addition, you have to know that there is a problem in the software that is slowing it down due to a poor choice of algorithm or data structure. In addition specific hardware improvements can improve performance for certain applications without a high cost - extra memory, faster hard drives, faster network connectivity.</p> <p>I.e., it isn't worth optimising the software for a factor of 2 improvement. Maybe an order of magnitude improvement. Definitely a reduction on complexity in core algorithms (O(N^2) to O(log N) for example).</p> <p>Now if the software is from an outside vendor and performing slowly, or the outside vendor is performing slowly themselves in any regard (support, upgrades, keeping the annual subscription fee fair), then you might consider reimplementing in-house if you have the resources. Especially for CRITICAL business functions, where the supplier is holding you hostage. If the supplier is being fair and good, then the opposite applies.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/377760#377760 1 Answer by Patrick Cuff for Throwing hardware at software problems – Which way do you lean? Patrick Cuff 2008-12-18T13:01:16Z 2008-12-18T13:01:16Z <p>Reducing application processing time is relatively easy. Profile, optimize, test. Rinse and repeat.</p> <p>Getting an application to scale is much harder. The flaws that prevent an application from scaling are usually design flaws, not coding issues. By the time you realize you're in trouble, it's too late.</p> <p>Throwing hardware at it may help, but will only go so far (see Amdahl's Law). I see this more as a stop-gap "band aid" than a permanent solution.</p> <p>There are no shortcuts or cheap fixes. Adding hardware, if it helps your application performance, adds costs to other areas. Capital expenditures, more maintenance, more potential points of failure, more operational costs, more licensing costs...</p> <p>If performance and scalability matter that much, you really need to do design reviews, modeling and simulations early in the development cycle if you want a reasonable chance of meeting your goals on time and on budget.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/378396#378396 0 Answer by Stephane Grenier for Throwing hardware at software problems – Which way do you lean? Stephane Grenier 2008-12-18T16:27:24Z 2008-12-18T16:27:24Z <p>I would always always first recommend running your application through a code profiler. Get rid of the major bottlenecks first. </p> <p>Once you get to a point of diminishing return, where you're not getting orders or magnitudes to multiples in performance enhancements, then buy more hardware. Make it worth it.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/378418#378418 2 Answer by Chopper3 for Throwing hardware at software problems – Which way do you lean? Chopper3 2008-12-18T16:32:57Z 2008-12-18T16:32:57Z <p>I'm an infrastructure scaling engineer, not a programmer, and although spending your way out of a bottleneck is never a long-term solution it is often a quicker and cheaper way to deal with immediate performance issues than coding your way out of the same problem.</p> <p>One reason for this is the decrease in cost of hardware combined with the constant increase in performance/£$ plus the fact that coding costs only ever rise (let's ignore offshoring for the moment). Another reason is the risk to deployment fix timescales; generally you can find out how quickly you can buy performance-increasing hardware, have it delivered, installed and commissioned. This is far from the case with coding, it's very often a total mystery at the start of a performance problem how long to code your way out of it.</p> <p>Sometimes it's just not worth the time and hassle to fix a problem with a compiler than it is with the latest memory/disk/processor etc. That's why not every soldier is a sniper, cannon-fodder is cheaper.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/378455#378455 1 Answer by Valerion for Throwing hardware at software problems – Which way do you lean? Valerion 2008-12-18T16:45:50Z 2008-12-18T16:45:50Z <p>I've no problem with either, but usually hardware is cheaper. And - more importantly - quicker to do.</p> <p>Example: We had a severe issue with a Java application crashing frequently (about every 10 mins) due to running out of memory. It runs constantly to process data - having it restart is a major hassle. None of us here know Java to any useful degree. We could have spent days hunting through the nasty multi-threaded code to find where and why the leak was occuring. Or we could throw in a couple more gigs of RAM the next day and schedule the thing to restart once per day when it's idle. We went for the RAM...</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/393754#393754 1 Answer by Alabaster Codify for Throwing hardware at software problems – Which way do you lean? Alabaster Codify 2008-12-26T13:19:18Z 2008-12-26T13:19:18Z <p><a href="http://stackoverflow.com/users/7903/patrick-cuff">Patrick</a> touched on this; it's very often not a simple choice between hardware or software improvements.</p> <p>To be able to make use of more hardware, the software needs to have been written (or be re-written) in such a way as to allow horizontal scaling.</p> <p>Strict vertical scaling can't take you very far at all. For example, simple single threaded applications don't benefit from more cores or CPUs, and more memory and better I/O is only going to take you so far. Throwing machines at software like this will leave you out of pocket, and with lots of very idle machines.</p> <p>For that reason, if there is a structural or architectural reason that hardware improvements won't help a situation, the only logical choice is to remove those software roadblocks (not necessarily directly improving performance - perhaps hurting it!), then deploy more hardware to actually address the scaling problem.</p> <p>There are examples of single threaded applications that are highly performant and scalable (e.g. <a href="http://haproxy.1wt.eu/" rel="nofollow">HAProxy</a> and <a href="http://www.ibm.com/cics" rel="nofollow">CICS</a>, until a few years ago). I'd say these are special cases, as there are many more examples of badly architected systems that did not scale or perform due to the restrictions implicitly defined in software (e.g. <a href="http://twitter.com/" rel="nofollow">Twitter</a> and Yahoo! Search, pre <a href="http://hadoop.apache.org/core/" rel="nofollow">Hadoop</a>)</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/393782#393782 0 Answer by duffymo for Throwing hardware at software problems – Which way do you lean? duffymo 2008-12-26T13:47:35Z 2008-12-26T13:47:35Z <p>The problem where I work is that code is rarely touched again once it goes into production. Hardware is often the only way to scale it. Sad, but true.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/393822#393822 2 Answer by joseph.ferris for Throwing hardware at software problems – Which way do you lean? joseph.ferris 2008-12-26T14:17:47Z 2008-12-26T19:51:53Z <p>I dislike the idea of throwing hardware at a problem for anything other than a temporary and immediate way to address a crippling performance issue. The hardest part of the argument is conveying the value of correcting the underlying issues. What is really at play is a scalability issue - which are classically difficult to justify to business stakeholders.</p> <p>People always think of having to be able to scale up an application, which is what you are doing when you throw hardware at a problem. This form of horizontal scaling has its place, but people neglect to think that there are business cases where applications need to scale down, as well. If your installed base drops and you need to reduce costs, if you have followed the approach of throwing hardware at a problem, there is a very realistic chance that you will not be able to adequately reduce the operational overhead to a point that is required. This is a very real scenario that is especially prevalent with downturns in the economy and service-based web sites.</p> <p>Chances are that you will not be able to convince the business of the needs to improve the code immediately. This is a lesson that often needs to be learned the hard way, as it is counter for a company to think of contraction over growth. My recommendation, from experience, is to isolate the issues that are causing the problems, and reinvent the architecture around them as a refactoring excercise. For example, if you have a caching issue, start to write a caching framework over several iterations. Once it is completed and tested, start to migrate problematic code to it. If you have written adequate unit tests and have sufficient test coverage, the change will be safe - and if you build up the new architecture in very minimal iterations along with your normal workflow, you can greatly improve your product.</p> <p>This is considered a "brownfield" approach, whereas a "greenfield" approach is starting from scratch with the intent of implementing a failed or outdated architecture correctly. I personally look at brownfield as a survivability means that could lead to a greenfield in the event that it is beyond fixing.</p> <p>Additionally, I feel that working in an environment where hardware is more of a commodity than a sound product is dangerous. On a development level, it fosters laziness and instability through risky programming practices. On a business level, in the event the company goes on the market, it can actually hurt the value of the company. Large companies in this scenario often have to let perspective buyers look at the architecture and the underlying code. Depending on the importance of the application (if it is what the company is) it can alter the valuation of the company, or even deter perspective buyers and investors.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/393827#393827 1 Answer by Nemanja Trifunovic for Throwing hardware at software problems – Which way do you lean? Nemanja Trifunovic 2008-12-26T14:24:34Z 2008-12-26T14:24:34Z <p>Does not apply in my case. We ship our software to a huge number of customers, and buying them hardware is not an option.</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/394239#394239 1 Answer by kloucks for Throwing hardware at software problems – Which way do you lean? kloucks 2008-12-26T20:33:33Z 2008-12-26T20:33:33Z <p>Throwing hardware at a problem only works as a linear solution until you hit the Power/HVAC/BTU limits of your current data center. Then you're talking real money cause you have to find, setup and migrate your server farm to a new location (not to mention reconfiguring your disaster recovery data center) and that's always measured in millions of dollars.</p> <p>Draw too much power and risk utilization triggered brownouts in your server farm - takes weeks to figure out what's happening unless you're profiling your power draw. Exceed your HVAC BTU rating and wait for a hot July day to take out the HVAC system amd potentially render half your servers permanently inoperable.</p> <p>I've seen the above happen, more than once - then suddenly management sees the developer solution as a cheaper solution. </p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/394419#394419 1 Answer by BubbaT for Throwing hardware at software problems – Which way do you lean? BubbaT 2008-12-26T22:55:42Z 2008-12-26T22:55:42Z <p>Increasing hardware is fine, if your employer controls the hardware, but what if you are selling your software to someone else. Clients generally don't like to hear that they have to get new hardware, and are happy to switch to developers who don't require it of them.</p> <p>Look at Vista ( and I suspect the new Windows will flop for similar reasons ).</p> http://stackoverflow.com/questions/377420/throwing-hardware-at-software-problems-which-way-do-you-lean/1103150#1103150 0 Answer by toto for Throwing hardware at software problems – Which way do you lean? toto 2009-07-09T10:47:59Z 2009-07-09T10:47:59Z <p>You have to go outside to upgrade your hardware. Usually you don't want to leave your house unless you have to.</p>