7

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?

James
  • 679

4 Answers4

4

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.

LawrenceC
  • 75,182
3

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/

Brian Adkins
  • 2,021
2

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.

2

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.

Frank
  • 21