Probability of hardware related disk or memory corruption? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:42:54Z http://stackoverflow.com/feeds/question/172219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172219/probability-of-hardware-related-disk-or-memory-corruption 0 Probability of hardware related disk or memory corruption? twk 2008-10-05T16:27:12Z 2008-10-05T16:48:25Z <p>I've got a few hundred computers running an app. On one computer, I've seen two instances of a single bit being incorrectly set on some strings that I pull out of SQLite. If this was my dev computer I would assume I have a bug somewhere, but there is certainly some number of installations at which point I'll start seeing rare hardware based errors. </p> <p>This is certainly dependent on how much IO I do, but are there any rules of thumbs for when there is a decent chance of seeing this kind of thing? For example, for TCP packets, <a href="http://portal.acm.org/citation.cfm?doid=347059.347561" rel="nofollow">this paper</a> determined that silent, undetected corruption will occur in "roughly 1 in 16 million to 10 billion packets". </p> <p>Unfortunately, running a mem/disk checker on the machine in question is not likely to happen. </p> http://stackoverflow.com/questions/172219/probability-of-hardware-related-disk-or-memory-corruption/172252#172252 2 Answer by friol for Probability of hardware related disk or memory corruption? friol 2008-10-05T16:44:24Z 2008-10-05T16:44:24Z <p>When I notice strange things happening, my strategy is:</p> <ol> <li>check if there is a bug <strong>in the code</strong></li> <li>check if there is a bug in the used library/tool (SQLite, here)</li> <li>check if there is a bug <strong>in the compiler</strong></li> <li>then, and only then, check for hardware faults</li> </ol> <p>In my 10 years-long career, 99,99% of bugs were software related.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/172219/probability-of-hardware-related-disk-or-memory-corruption/172257#172257 0 Answer by gbjbaanb for Probability of hardware related disk or memory corruption? gbjbaanb 2008-10-05T16:47:54Z 2008-10-05T16:47:54Z <p>with subtle errors, it can happen anytime, and from several source, even the <a href="http://www.newscientist.com/blog/technology/2008/03/do-we-need-cosmic-ray-alerts-for.html" rel="nofollow">most unlikely</a>.</p> <p>As you can see errors occurring on a single machine, your best option is to handle the damage instead of relying on statistics to tell you when something might go wrong. Whilst the errors might be due to external factors, if you've seen more than one it would be prudent to get that memchecker running on the machine to check that its not faulty hardware. The alternative is trusting to luck that you won't see a total failure.</p> http://stackoverflow.com/questions/172219/probability-of-hardware-related-disk-or-memory-corruption/172260#172260 0 Answer by Steve Baker for Probability of hardware related disk or memory corruption? Steve Baker 2008-10-05T16:48:25Z 2008-10-05T16:48:25Z <p>Bit errors will happen. Consider protecting your data with CRC's or some other kind of error detection/correction mechanism. The odds of it happening are dependant on what kind of hardware you have. If you have memory with ECC, then it's going to be less likely than if you don't for instance, but even ECC memory goes bad and may fail to correct errors. With several hundred computers I would say the odd hardware error is going to be very likely, probably certain, to happen daily.</p>