I will start with my question and then make a short example:
Is it a good idea to split a disk into multiple partitions and create different disk Arrays (raid1/raid5) with those paritions? Are there any Problems/risks?
And now the example:
Say I have three disks. Two have the same size and one has twice as much:
Disk a: |---------------|
Disk b: |---------------|
Disk c: |-----------------------------------|
Now I would create the following two disk Arrays
Array 1 Array 2
|-----Disk a----| |-----Disk b----|
|----Disk c/1---| |----Disk c/2---|
Disk c was split up into two partitions, one Partition is used to create a raid1 with disk a and the other Partition is used to create a raid1 with disk b.
With this Approach, all the disk space is used and nothing is wasted. I know that a failure of disk c will degrade both disk Arrays. Are there any other Problems/risks involved?