|
|
|
|
|
by justsomehnguy
1307 days ago
|
|
> kernel will happily pack few smaller operations to TCP socket into one packet when there is load. And here comes the latency! shining.jpg It wouldn't be a problem for a desktop use of course[0], especially considering what 90% of operations are just read requests. My example is crude and was more to highlight what iSCSI, by virtue of running over Ethernet, inherently has a limit of how many concurrent operations can go in one moment. It's not a problem for a HDD packed SAN (HDDs would impose an upper limit, because spinning rust is spinning) but for a NVMe (especially with a single target) it could diminish the benefits of such fast storage. > The single queue is the problem here but dumb admin trick is just to up more than one IP on the server and connect all of them via multipath Even on a single physical link? Could work if the load is queue bound... [0] hell, even on 1Gb link you could run multiple VMs just fine, it's just when you start to move hundreds of GBs... |
|
>And here comes the latency! shining.jpg
Not really, if you get data faster than you can send packets (link full) there wouldn't be that much extra latency from that (at most one packet length which at 10Gbit speeds is very short) and it would be more than offset by the savings
Then again I'd guess that's mostly academic as I'd imagine not very many ISCSI operations are small enough to matter. Most apps read more than a byte at a time after all, hell, you literally can't read less than a block from a block device which is at least 512 bytes.
>> The single queue is the problem here but dumb admin trick is just to up more than one IP on the server and connect all of them via multipath
> Even on a single physical link? Could work if the load is queue bound...
You can also use it to use multiple NICs without bonding/teaming, althought it is easier to have them in separate network, IIRC linux had some funny business when if you didn't configure it correctly for traffic in same network it would pick "first available" NIC to send it and it needed /proc setting to change
To elaborate, default setting for /proc/sys/net/ipv4/conf/interface/arp_ignore (and arp_announce) is 0 which means
> 0 - (default): reply for any local target IP address, configured on any interface
> 0 - (default) Use any local address, configured on any interface 1
IIRC to do what I said required
which basically changed that to "only send/respond to ARPs from NICs where actual address exists, not just ones with the address in same network" and fixed the problem.