Advertisement
Guest User

expansion not happening

a guest
Feb 4th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. you have
  2. _______
  3. |1T|1T|___
  4. |1T|1T|1T|___
  5. |2T|2T|2T|2T|
  6. -------------
  7. 4T|3T|2T|1T
  8.  
  9. Traditional Raid5 will look like this:
  10. _______ _______
  11. |i |i |___ |i |i |___
  12. |i |i |i |___ => take away parity of RAID5 => |i |i |i |___
  13. |2T|2T|2T|2T| |2T|2T|2T|P |
  14. ------------- -------------
  15.  
  16. So |2T|2T|2T|2T| in a raid5 can be approximated like this |2T|2T|2T| P|
  17. |2T|2T|2T| P| which is 2+2+2=6T, which is about 5.4 TiB
  18.  
  19. FlexRAID and XRAID Raid5 will look like this:
  20.  
  21. _______ _______
  22. |1T|1T|___ |1T|M |___
  23. |1T|1T|1T|___ => take away parity of RAID5 => |1T|1T |P |___
  24. |2T|2T|2T|2T| |2T|2T|2T|P |
  25. ------------- -------------
  26.  
  27. So this has |1T| and |1T|1T| and |2T|2T|2T|
  28. So this should give you 1+1+1+2+2+2 = 9T which is about ~8.1 TiB <-- this what you should have
  29.  
  30. Even if that top layer doesnt get used (because who wants raid1,raid5,raid5 its more symetrical to have raid5,raid5 and wait for another device so that you get raid5,raid5,raid5) you will get 1+1+2+2+2=8T which will be ~7.2 T
  31.  
  32. NOTE: raid5 works with 3+ devices, however raid1 can be used which can quickly convert to raid5 if more devices are added
  33.  
  34. LEGEND: i ignored, T TB (1000 based), P ignored due to parity or mirroring
  35. T is 1000 based (Terabytes) - drive manufacturers list these
  36. TiB is 1024 based (Tebibytes) - operating systems and the NAS use this
  37.  
  38. SUMMARY: you should have 8.1 TiB. If your getting 5.4 TiB looks like expansion didnt finish. Can you provide your logs?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement