我有一个DL360P g8服务器,带有一个HPE p420i raid控制器(2gb缓存)。我们已经注意到,通过raid写入SSD的速度非常慢。我在数组中遇到的问题是:
Volume 1 - RAID6
* 6 x Intel 545s 120GB SSD SATA
Volume 2 - RAID0
* 2 x Western Digital WD Black 1TB WD10JPLX SATA我们注意到,当从SSD卷复制到HDD卷时,一切都会移动就像你期望的那样快。
但是,向相反的方向复制(从硬盘到SSD) 速度太快了。
我很难确定问题的原因以及解决办法。
需要注意的额外事项:
* OS: ESXI 6.7 / hpe
* All disks are brand new (note: consumer grade, not enterprise)
* The disks are SATA rather than SAS, however I cannot find anything to explain why SATA SSDs would be as slow as they are.
* The disk activity ring does not light up for the SSDs, however they do for the HDDs. (maybe related somehow???)我们尝试过的事情:
* Installing ESXI 6.7 base
* Installing ESXI 6.7 hpe
* Disabling SSD Smart Path
* Copying files with a debian live-USB
* Updating firmwares with HP SPP gen 8.1我们没有尝试过的事情:
* SAS SSDs (dont have any)
* Enabling the physical drive write cache state (that will only speed up until the 2gb buffer is full, correct?)我怀疑它们可能与SSD不兼容,但是我无法找到任何支持文档来支持这一点,
如果这个问题听起来不太正确,请随时指出并纠正我的误解。谢谢!
发布于 2018-11-12 17:37:00
RAID-6是一个瓶颈,因为所有的写操作都受到单个驱动器性能的限制,并且在随机块甚至顺序块上都有写代价。此外,通过简单的复制和粘贴来测试数据存储的性能的想法并不是一种精确的基准测试方法。在数据存储的基础上部署一个VM,并使用fio或diskspd测试性能。此外,在从HDD复制到SSD时,操作是读写操作,这意味着数据是从HDD读取的,并且具有最大的性能。
另外,请查看Microsoft - https://blogs.technet.microsoft.com/josebda/2014/08/18/using-file-copy-to-measure-storage-performance-why-its-not-a-good-idea-and-what-you-should-do-instead/的本文。
https://serverfault.com/questions/939248
复制相似问题