Despite installing and enabling the 10G fiber card, data copy or transfer is still happening on a 1G rate.
Asked
Active
Viewed 175 times
-4
-
You seem to have forgotten to add units to your bandwidth rates. There's quite a difference between GB and Gb. In fact, 1GB/s is about the expected transfer rate for a 10Gb card. – Ladadadada Aug 05 '13 at 09:50
1 Answers
1
I'm not surprised.
- Increasing the MTU has to happen on all network devices in the segment, all switches, all NICs, etc.
- Many file copy mechanisms are single-threaded, and as you don't say which one you're using, but I bet it's rsync or NFS, the performance is severely limited by the capability of a single thread to hammer away at 10Gbit.
- Are you sure your values are in Gigabits/second, not Gigabytes/second, as there's a factor of 8 difference there.. Could be the cause of some confusion.
- There's a huge load of options for configuring a 10Gbit NIC's drivers, TCP timestamping, offload, synchronous ACK, all of which can limit the performance of a 10Gbit NIC.
I know this is for Linux, and you're on SunOS, but have a read of this: http://landley.net/kdocs/ols/2009/ols2009-pages-169-184.pdf

Tom O'Connor
- 27,480
- 10
- 73
- 148