One SSD + two HDD in RAID 1: SSD performance hit?

Solution 1:

short answer:
If you wrote a lot to the SSD (esp. small files) after changing the BIOS: Yes

Long answer:
SSD are build with NAND chips with a page size which is quite a bit larger than the exposed 512byte sectors. The controller on the SSD word around this via internal mapping. If this mapping gets complex or dirtied then the SSD becomes a lot slower.

Or simplified, think of it as a book. the computer uses group of 512 words (lets call these paragraphs). The SSD can only write whole pages. (with multiple paragraphs on them).

If you change one paragraph then the SSD has two options:

  1. Read the whole page. (fast)
    Change in paragraph in the remembered page (fast)
    Erase the old page (very slow)
    Write the changed page back.
  2. Read the whole page. (fast)
    Change in paragraph in the remembered page (fast)
    Write the changed page back to some empty page (skipping the slow erasing) and change the page numbers

To keep speed high SSDs use the second option, but eventually they will run out of empty pages and then they need to fall back to the first (slow) option.

There are ways to avoid this slow down.

  • If the SSD is idle (no reads or writes), then it can consolidate pages. Think of it as taking a few mostly empty pages and writing all data to a single other page. Afterwards it deleted the pages which where mostly empty. Now it has free blocks again.
  • If the file system supports TRIM then deleting a file can trigger extra command to the SSD. Basically the SSD gets told 'this file is changed. I will never use it again. You may erase it if you wish, or just mark it as unused so you can consolidate pages later.
    For this to work the SSD needs to support TRIM (most if not all do) and the driver and FS need to support it. As of 2012 almost no RAID configurations support this.

Conclusion: Since you enabled RAID you probably disabled TRIM.

Disclaimer: A lot depends on your write behaviour. No TRIM and lots of small writes in a short period will [significantly] lower performance on most SSDs. On the other hand a mostly empty SSD with few writes might not have a noticeable effect.

Solution 2:

Use a benchmark tool on the drives and see what the performance is like. http://lifehacker.com/5824265/diskmark-is-a-free-and-easy-hard-drive-benchmark-tool

That should tell you the read speeds, and help you see if there are any problems.