If one disk in a JBOD group fails, are files on other disks inaccessible?

30,321

Solution 1

JBOD means no RAID, incuding the 'R' part that means redundancy unless you did this with other means.

JBOD across two disks without RAID is spanning a volume across two physical disks. There is no redundancy (unless your documentation tells you different - both JBOD and RAID can mean different things to different people sometimes). Technologies to do this include Windows "dynamic volumes" and Linux's LVM.

In a spanned volume, if one disk goes down, data on the entire spanned volume, i.e. ALL your data, is at risk.

If you want to be able to access the volume if a disk in it fails you need some type of redundancy and pay for it with disk space, either hardware RAID or a software equivalent.

Solution 2

I'm a raid guy (0, 1, 5 ) and have never used jbod, but it appears that losing a drive wil be the equivalent of having a volume with lots and lots of unreadable sectors that are unrecoverable. Any data stored entirely on a still-working drive would be recoverable.

Any data stored (even partially) on the failed drive would be lost.

http://forum.wegotserved.com/index.php?/topic/9244-one-disk-in-jbod-array-dies-help/

Solution 3

That depends on where the MFT (or equivalent) was stored. If you lose the MFT, you are pretty much out of luck. You should really consider backups if you plan on using JBOD.

Solution 4

Almost always, yes. If one drive fails the others will still be readable. With data arrays including (RAID and JBOD) you should have backup but my guess is that if you're using JBOD it's because you have lots of data and little money so that recommendation won't mean anything to you till you loose your irreplaceable data.

Share:
30,321

Related videos on Youtube

James
Author by

James

Updated on September 18, 2022

Comments

  • James
    James almost 2 years

    If I use a dual-disk enclosure that employs JBOD, would I be able to at least access and use a second disk in the event that the other fails or otherwise becomes inaccessible?

    • Canadian Luke
      Canadian Luke about 11 years
      Be aware that the combined disk's fail rate will be significantly higher. Say the chance of one disk being OK is 0.99 then a 2 disk JBOD will be OK = 0.99 * 0.99 = 0.98. A Five disk JBOD will be 0.99^5 = 0.95. Hence if there was a 1% chance of failure (say during one year for one disk), there will be a 5% chance of failure for a JBOD (5 times the risk). - laurits
  • Wyzard
    Wyzard over 10 years
    JBOD doesn't mean that the disks are combined into a single logical volume. It's short for "just a bunch of disks", meaning that it's just like plugging the drives into a plain non-RAID controller and using them as plain, independent disks.
  • LawrenceC
    LawrenceC over 10 years
    @Wyzard: Very true. I imagined a dual-disk enclosure would typically be spanning across disks. I could be wrong. If they aren't spanned, you'll only lose data that's on the one disk.