I am evaluating 2 CentOS servers, in terms of performance of reading and writing to the database. The database sits on an SSD RAID1 pair, with MySQL 5.7 on each server. Server 2's specs are a bit better overall, except this:
Server 1: Hardware RAID1, two 2 TB SSD drives.
Server 2: Software RAID1, two 1 TB SSD drives.
Server 2 is faster when it comes to READS.
But Server 2 is slower when it comes to WRITES. A performance test on Server 1 is 33% faster than on Server 2 (e.g. 140 sec vs 210 sec). The test is the same on both servers: inserting 1000s of rows of data to the database, 64b per row.
Software RAID is slower than Hardware RAID, so this slower operation could be understandable. But it was also suggested that the SIZE of the drive is an additional factor, i.e. that a 2 TB SSD drive will be faster than a 1 TB SSD drive.
Does anyone know if this is the case? I have not been able to find anything on this online. Any help would be appreciated.