help me in RAID concept...


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers help me in RAID concept...
# 1  
Old 01-14-2011
help me in RAID concept...

i couldn't get what does the metainit command represents in numeric values.
(i.e)
#metainit d66 2 1 c0t0d0s4 1 c0t0d0s5
??here 2 1 1 represnts what ??
can some one tell clearly about this...
# 2  
Old 01-14-2011
It means a concatenation of two partitions, end-to-end, into one partition.
If you had something like:
Code:
metainit d66 1 2 c0t0d0s4 c0t0d0s5

That would mean to stripe the two partitions into one partition.
Ie they are again added together, but this time in stripes across the whole new partition.
# 3  
Old 01-14-2011
thanks for reply ...can u tell more detail about the stripes in Solaris point of view...
# 4  
Old 01-14-2011
Sure...if you have a concatenation, it will just join the two disks end-to-end. When it starts writing to the partition it will start on the first device and write the data. It will continue to do this until that partition has been used up, and then it will start writing to the second device, etc. This is the most basic way of getting a large partition from two smaller ones.

Stripes on the other hand, although they also allow you to have a large partition, the primary use is to vastly improve disk performance. The stripes are a pre-determined size which can be specified by the admin when the metainit is called. So for example if the stripe is 32k, and there are three devices in the stripe then the first 32k of data written to the metadevice partition would go onto the first device, the second 32k would go onto the second device, the third 32k would go onto the third device, the fourth 32k would go onto the first device again, etc, etc.
This means that when an application reads or writes a large file, all three devices can share the load. This would (in a perfect world) make the reads and writes three times faster than just having one device. So disk performance can easily be improved by orders of magnitude by using this method. It is important, however, to consider your data and how big the stripes are, as this can make a huge difference on the end performance.

I hope this helps...
# 5  
Old 01-14-2011
ya fine citaylor.. but what is the link between this stripes and the numeric values?? is there any relation in it .. really i couldn't get what that numeric value in metainit command means, am new to this so help me by providing some interesting solutions...
warm regards
$rini
# 6  
Old 01-14-2011
Does this help ? Its got lots of examples and explanations of stripes and slices.
# 7  
Old 01-14-2011
thanks buddy......
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

RAID Configuration for IBM Serveraid-7k SCSI RAID Controller

Hello, I want to delete a RAID configuration an old server has. Since i haven't the chance to work with the specific raid controller in the past can you please help me how to perform the configuraiton? I downloaded IBM ServeRAID Support CD but i wasn't able to configure the video card so i... (0 Replies)
Discussion started by: @dagio
0 Replies

2. Solaris

Software RAID on top of Hardware RAID

Server Model: T5120 with 146G x4 disks. OS: Solaris 10 - installed on c1t0d0. Plan to use software raid (veritas volume mgr) on c1t2d0 disk. After format and label the disk, still not able to detect using vxdiskadm. Question: Should I remove the hardware raid on c1t2d0 first? My... (4 Replies)
Discussion started by: KhawHL
4 Replies

3. AIX

SCSI PCI - X RAID Controller card RAID 5 AIX Disks disappeared

Hello, I have a scsi pci x raid controller card on which I had created a disk array of 3 disks when I type lspv ; I used to see 3 physical disks ( two local disks and one raid 5 disk ) suddenly the raid 5 disk array disappeared ; so the hardware engineer thought the problem was with SCSI... (0 Replies)
Discussion started by: filosophizer
0 Replies

4. Solaris

Creation of Raid 01 and Raid 10

Hello All, I have read enough of texts on Raid 01 and Raid 10 on solaris :wall: . But no-where found a way to create them using SVM. Some one pls tell me how to do or Post some link if that helps. TIA Curious solarister (1 Reply)
Discussion started by: Solarister
1 Replies

5. Solaris

implementing RAID 1 from RAID 5

Dear ALl, I have a RAID 5 volume which is as below d120 r 60GB c1t2d0s5 c1t3d0s5 c1t4d0s5 c1t5d0s5 d7 r 99GB c1t2d0s0 c1t3d0s0 c1t4d0s0 c1t5d0s0 d110 r 99GB c1t2d0s4 c1t3d0s4 c1t4d0s4 c1t5d0s4 d8 r 99GB c1t2d0s1 c1t3d0s1... (2 Replies)
Discussion started by: jegaraman
2 Replies

6. UNIX for Dummies Questions & Answers

RAID software vs hardware RAID

Hi Can someone tell me what are the differences between software and hardware raid ? thx for help. (2 Replies)
Discussion started by: presul
2 Replies

7. UNIX for Dummies Questions & Answers

about concept of Interrupts.

Hi all, I am new here ,i want to know about interrupts in detail.What r Interrupts .how they r handeled. Thanx in adavnce. (1 Reply)
Discussion started by: vishwasrao
1 Replies

8. UNIX for Dummies Questions & Answers

The Concept of thread

Hi all This is my first thread here.i confused with the concept of thread.Can anyone tell me this concept in detail.my Quation may be at primary level. Thanx in advance for help. (1 Reply)
Discussion started by: vishwasrao
1 Replies
Login or Register to Ask a Question