4

I have a NAS which provides SMB and iSCSI targets, and a server which is directly connected via a 10 GbE link (no switch in between).

I experience slow speeds with the iSCSI target in contrast to "high" (expected) speeds with a SMB "target".

See the speed comparison between SMB (Y:) and iSCSI (E:):

speed comparison SMB (Y:) vs iSCSI (E:)

How to investigate the performance issues with the iSCSI target?

NAS: Synology RackStation RS3617xs+

burnersk
  • 1,966
  • 4
  • 25
  • 38

1 Answers1

4

You're using a much too small dataset for your benchmark to have any value, and you don't provide enough information by far. How are the samba share and iSCSI target configured? What is the hardware configuration like on both ends of the link?

First, 3 of your results (CIFS read and write, iSCSI read) ran at link speed. I don't know what your NAS is capable of, but I suspect you're only testing your data cache here. For any reasonable sequential speed benchmark, you need to test with at least twice the total RAM of the machine with the highest RAM (client or server). For instance if your NAS and workstations have 8 GB of RAM, any test with less than 8GB will only test your cache and network, not the actual disk speed.

Second, your iSCSI target probably uses write-through. So what you're seeing in the iSCSI write test is probably the actual sequential disk write performance of your NAS, because your iSCSI target writes directly to disk (no write caching) while samba does not (and this is where it's very important to use a big enough dataset).

wazoox
  • 6,782
  • 4
  • 30
  • 62