Computer Hardware
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsComputer HardwareComputer Hardware

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old October 18th, 2003, 10:47 AM
socdude socdude is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Posts: 16 socdude User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question serial ata raid

How does raid work with serial ata hard drives? ...the same?

thanks

Reply With Quote
  #2  
Old October 18th, 2003, 10:57 AM
icrf's Avatar
icrf icrf is offline
Perl Monkey
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: May 2003
Location: the far end of town where the Grickle-grass grows
Posts: 1,860 icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 4 Days 11 h 6 m
Reputation Power: 108
Send a message via AIM to icrf
I would imagine, why would it be any different?

Reply With Quote
  #3  
Old October 18th, 2003, 05:07 PM
kfickert's Avatar
kfickert kfickert is offline
Capt'n
Dev Shed Novice (500 - 999 posts)
 
Join Date: May 2001
Posts: 567 kfickert User rank is Corporal (100 - 500 Reputation Level)kfickert User rank is Corporal (100 - 500 Reputation Level)kfickert User rank is Corporal (100 - 500 Reputation Level)kfickert User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 9 h 40 m 56 sec
Reputation Power: 14
Serial ATA, from what I've read, allows much faster read/write times because Windows reads 2 80GB drives as 1 160GB drive.

All the odd bits are written to one drive, the even the other. This allows read/write at twice what a normal HD can.

If your a big gamer or do a lot of graphics stuff, this can really pay off. On the server side, better off to go with mirroring so if one drive bits the dust, you have the other one still running.

Reply With Quote
  #4  
Old October 18th, 2003, 08:33 PM
socdude socdude is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Posts: 16 socdude User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
You can only mirror with normal ata hard drives?

Reply With Quote
  #5  
Old October 18th, 2003, 09:33 PM
icrf's Avatar
icrf icrf is offline
Perl Monkey
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: May 2003
Location: the far end of town where the Grickle-grass grows
Posts: 1,860 icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 4 Days 11 h 6 m
Reputation Power: 108
Send a message via AIM to icrf
No, RAID is a way to use multiple disks in as a single array of disks. It works with UDMA drives, SATA drives, SCSI drives, and so on. How it works in each case doesn't matter much from the use perspective, just assume that SATA RAID is the same as PATA RAID.

And as a side note, data is broken into "stripes" as the smallest chunk. An average stripe size is about 64k, though it can vary quite a bit. If you have a large file, it'll split it up into 64k chunks and write each stripe to each drive, depending on how RAID was setup. You can get varied performance depending on use by varying the stripe size.

Reply With Quote
  #6  
Old October 23rd, 2003, 10:10 AM
ianstar ianstar is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Location: Mass
Posts: 39 ianstar User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 10
Send a message via AIM to ianstar
The way the data is broken up actually depends on which RAID level you use. RAID 0 used blocks but there is no fault tolerence so it is usually not the best option. In RAID 2 (as stated earlier) the data is striped at the bit level across the disks with one of the 3(or more) drives used to store parity information. In RAID 3 the data is striped in bytes rather than bits and in RAID 4 the data is striped in blocks(similar to 0 but with fault tolerence). Both RAID 3 and 4 also use a parity disk. There are also other less common levels of RAID that could do the striping differently.

Last edited by ianstar : October 23rd, 2003 at 10:15 AM.

Reply With Quote
  #7  
Old October 23rd, 2003, 12:25 PM
icrf's Avatar
icrf icrf is offline
Perl Monkey
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: May 2003
Location: the far end of town where the Grickle-grass grows
Posts: 1,860 icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level)icrf User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 4 Days 11 h 6 m
Reputation Power: 108
Send a message via AIM to icrf
In short, no. There's too much overhead to do anything at the bit, or even byte level. Maybe it has happened at some point in history, but in modern times, there's RAID 0, 1, and 5, and various combinations of them. The entry level RAID that comes on consumer motherboards tends to only support levels 0, 1, and 0+1.

Reply With Quote
Reply

Viewing: Dev Shed ForumsComputer HardwareComputer Hardware > serial ata raid

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap