>>959857
>i-it runs fine guys as long as you drop caches every 60 seconds
>>959867
raid 10 far 2 has superior performance for literally everything and also mirrors the data, that's what the "2" in far 2 means. "far", means the data copies will be guaranteed to be on separate drives, "2", means the number of data copies.
Raid 1 will not double your read performance. Raid 10 far 2 will. Raid 1 will only show read performance improvements if you have so many separate reads that it saturates a single drive, but a single read (read a 10GB file, a massive sqlite database, etc), will not be improved. It's the way linux does raid 1, if you have a raid card than who knows how it handles it. raid 10 +near/far/offset is specific to software raid in linux. it's not a standard raid 10.
here's the data layout for raid 10 far 2
2 drives 3 drives
-------- --------------
A1 A2 A1 A2 A3
A3 A4 A4 A5 A6
A5 A6 A7 A8 A9
.. .. .. .. ..
A2 A1 A3 A1 A2
A4 A3 A6 A4 A5
A6 A5 A9 A7 A8
.. .. .. .. ..
as you can see, the copies of the data are kept at the back of the drives, allowing raid 0 levels of performance (while cutting your available space in half, same as raid 1)