Doesn't RAID1 require an equal number of disks? you have 3.
I have read this
For Highest performance, the controller must be able to perform two concurrent separate Reads per mirrored pair or two duplicate Writes per mirrored pair.
RAID Level 1 requires a minimum of 2 drives to implement
One Write or two Reads possible per mirrored pair
Twice the Read transaction rate of single disks, same Write transaction rate as single disks
100% redundancy of data means no rebuild is necessary in case of a disk failure, just a copy to the replacement disk
Transfer rate per block is equal to that of a single disk
Under certain circumstances, RAID 1 can sustain multiple simultaneous drive failures
Simplest RAID storage subsystem design
Highest disk overhead of all RAID types (100%) - inefficient
Typically the RAID function is done by system software, loading the CPU/Server and possibly degrading throughput at high activity levels. Hardware implementation is strongly recommended
May not support hot swap of failed disk when implemented in "software"
Ihave 3 disks on in hardware raid adaptec 7902
[root@www ~]# hdparm -tT /dev/sda
/dev/sda:
Timing cached reads: 2588 MB in 2.00 seconds = 1294.20 MB/sec
Timing buffered disk reads: 158 MB in 3.01 seconds = 52.50 MB/sec
[root@www ~]# hdparm -tT /dev/sdb
/dev/sdb:
Timing cached reads: 2752 MB in 2.00 seconds = 1374.15 MB/sec
Timing buffered disk reads: 160 MB in 3.00 seconds = 53.25 MB/sec
[root@www ~]# hdparm -tT /dev/sdc
/dev/sdc:
Timing cached reads: 2608 MB in 2.00 seconds = 1304.20 MB/sec
Timing buffered disk reads: 158 MB in 3.04 seconds = 52.05 MB/sec
[root@www ~]#
The real Problem is i am trying to get it working only in hardware
without any luck
Regards Jan