vote up 0 vote down star
1

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.

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, this paper determined that silent, undetected corruption will occur in "roughly 1 in 16 million to 10 billion packets".

Unfortunately, running a mem/disk checker on the machine in question is not likely to happen.

flag

47% accept rate

3 Answers

vote up 2 vote down

When I notice strange things happening, my strategy is:

  1. check if there is a bug in the code
  2. check if there is a bug in the used library/tool (SQLite, here)
  3. check if there is a bug in the compiler
  4. then, and only then, check for hardware faults

In my 10 years-long career, 99,99% of bugs were software related.

Hope this helps.

link|flag
You should also add checking the driver or IO controller if working on a customised OS. – Quibblesome Oct 5 '08 at 16:46
vote up 0 vote down

with subtle errors, it can happen anytime, and from several source, even the most unlikely.

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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