3

In below screenshot, I benchmarked 3 machines, 4 Drives. my main production based on DL580, HPE 1.92TB SATA 6G Mixed Use SFF SSD RAID 1.

MySQL insert time of 1 million rows is ~ 30 seconds in the SSD, while its ~ 15 seconds in the ImageServer 20TB 7200 RPM RAID 5!! How the hell this is possible?

The SSD cost me ~ USD 2300 , I am really shocked, all firmwares and drivers up to date, and OS is Windows 2012 R2.

Is this known or expected?! if not, then share your insight.

Details about the 3 machines:

  1. HP ProLiant DL380 Gen9, Smart Array P840, 20TB RAID 5 volume: 12 X 2 TB 7200 RPM (Drive Type: SAS HDD,model: HP MB2000FCWDF, Firmware Version: HPD9, Transfer Speed: PHY 1: 6 Gbps ).

  2. HP ProLiant DL380 Gen9, Smart Array P440ar, ~1TB RAID 5 volume: 4 X 300 GB 10500 RPM (Drive Type: SAS HDD,model: HP EG0300FCVBF, Firmware Version: HPD9, Transfer Speed: PHY 1: 6 Gbps ).

  3. HP ProLiant DL580 Gen9, Smart Array P830i, 1.9TB RAID 1 volume: 2 X HPE 1.92TB SATA 6G Mixed Use SFF SSD (Drive Type: SATA SSD, model: ATA MK1920GFDKU , Firmware Version: HPG0 , Transfer Speed: 6 Gbps ). This is the machine in Question, the machine also contain second disk: 1 TB RAID 0 10500 RPM "the fourth in the picture".

disks benchmark

Update 1:

re-benchmark SSD after enabling write cache in the smart array didn't do anything as below screenshots highlight! do i need to reboot after enabling write cache?

enable write cache

re-benchmark SSD

Update 2:

Further Digging showed that My SSD BenchMarked Write Performance seems to meet the Specs of 28500 IOP/S as mentioned in HPE link: http://ssd.hpe.com/recommendations see below screenshot (please correct me if I understood wrong)

Max Seq WRITE Throughput (MiB/s): 475

Also all the 3 HP smart arrays official specs mentioned in performance section:

  • 12Gb/s SAS (1200 MB/s theoretical bandwidth per physical lane)
  • 6Gb/s SATA (600 MB/s theoretical bandwidth per physical lane)

Finally: All Smart Arrays GUI, In Controller Hardware Information Section showed:

Negotiated PCIe Data Rate: PCIe 3.0 x8 (7880 MB/s)

Putting all that together, it seems SAS HDD out performed the SSD with the help of the smart array cache and RAID 5. I couldn't find Max Seq WRITE Throughput for the SAS HDD, Does anyone know?

Maybe it can be calculated using the benchmark results:

Example: in case of the 4 X 300 GB SAS HDD:

Seq WRITE Throughput (MiB/s) Benchmarked as: 5782

Divide 5782 By 4 (number of disks) = 1445.5 MiB/s

But Since smart array Max is 1200 MB/S, I guess my calcs missing something!

That's All, Please share insight/feedback/corrections.

Max Seq WRITE Throughput

4
  • 2
    Post information about the RAID controller in use and firmware. What model and generation of server are you using? That's also important information.
    – ewwhite
    Jun 18, 2017 at 21:55
  • Did you ask HPE support?
    – Tim
    Jun 18, 2017 at 22:10
  • @ewwhite I updated the question to add what you asked. btw, the picture bottom bar hold brief info (array model, disk info, RAID type). Jun 19, 2017 at 13:47
  • @ewwhite Do you have any insight/feedback/corrections after Update 2? Jun 19, 2017 at 19:53

1 Answer 1

7

Your HDD performance are greatly boosted by the RAID card's DRAM write back cache, which basically transforms random writes in sequential ones. I suppose that your P840 has at least 2 GB of write back cache, which totally absorbs CrystalDisk's workload and cached a good chunk of the MySQL one.

While is true that even your SSDs should benefit from the controller DRAM cache, SSDs are much more dependent on their private DRAM cache, which are often disabled by RAID controllers. Moreover, I suppose that your P830i has smaller cache (1 GB?)

To enhance the performance of your SSDs, you can enable their internal cache (via the RAID controller's utility), but be sure to completely understand the possible data loss ramification of this choice. Give a look here for more information.

Finally, consider that you are comparing a 2-disk RAID1 with a 12-disks RAID5 array...

11
  • what's the problem of comparing 2-disk RAID1 with a 12-disks RAID5? according to Windows 2012 Performance Tuning guide, RAID 5 is the slowest for writing performance. based on that, if same disks used in RAID 5 put in RAID 1, the writing performance should be even better. Jun 19, 2017 at 14:47
  • 1
    Yeah, but 12 spindles give quite high sequential read/writes, and the controller DRAM cache transform random writes into sequential ones.
    – shodanshok
    Jun 19, 2017 at 14:53
  • P830i: Controller Memory Module Size 4096 MiB . same as P840. but P440ar only 2 GB yet it out performed other 2 machines with its 300 GB disks! Jun 19, 2017 at 14:57
  • 1
    You continue to not consider the effect of the RAID controller's DRAM cache, which dramatically increase the random write IOPS of a mechanic disk
    – shodanshok
    Jun 19, 2017 at 16:11
  • 1
    This only means that the P830i will not be a bottleneck when used with flash disks, and that it can understand some specific SMART values (ie: SSD lifetime) and act accordingly. Please consider than enterprise SSDs drives typically have powerloss protected private caches, and are expected to run with these caches enabled.
    – shodanshok
    Jun 19, 2017 at 17:00

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .