Re: [ofa-general] [PATCH 0/26] Reliable Datagram Sockets (RDS), take 2

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Andrew Grover
Date: Saturday, February 28, 2009 - 5:58 pm

On Sat, Feb 28, 2009 at 2:36 PM, Andi Kleen <andi@firstfloor.org> wrote:

I think the gist of it is:

Higher load -> more time before a process runs -> rcvbuf overfills ->
ACKs dropped -> timeouts -> more retransmissions -> even higher load.

Things are fine until they hit a point where everything goes to hell.


The most direct userspace API is uDAPL -- apps can create IB
connections (queue pairs) directly. This was tried but didn't work out
so well. A queue pair (QP) is a TX/RX ring -- a nontrivial amount of
memory. If each process needs a new QP to talk to every other process
then the number of RAM-hungry QPs becomes huge.

RDS is only slightly less direct -- apps don't create queue pairs,
they create RDS sockets. RDS uses only one QP for all traffic to each
remote node, so the number of QPs on a node is equal to the number of
remote nodes, as opposed to (number of local processes * number of
remote processes).

Regards -- Andy
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/26] Reliable Datagram Sockets (RDS), take 2, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 01/26] RDS: Socket interface, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 02/26] RDS: Main header file, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 03/26] RDS: Congestion-handling code, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 04/26] RDS: Transport code, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 05/26] RDS: Info and stats, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 06/26] RDS: Connection handling, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 07/26] RDS: loopback, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 08/26] RDS: sysctls, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 09/26] RDS: Message parsing, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 10/26] RDS: send.c, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 11/26] RDS: recv.c, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 12/26] RDS: RDMA support, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 13/26] RDS/IB: Infiniband transport, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 14/26] RDS/IB: Ring-handling code., Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 15/26] RDS/IB: Implement RDMA ops using FMRs, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 17/26] RDS/IB: Receive datagrams via IB, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 18/26] RDS/IB: Stats and sysctls, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 19/26] RDS: Add iWARP support, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 20/26] RDS: Common RDMA transport code, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 21/26] RDS: Documentation, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 22/26] RDS: Kconfig and Makefile, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 24/26] RDS: Add MAINTAINERS entry, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 25/26] RDS: Add userspace header, Andy Grover, (Tue Feb 24, 6:30 pm)
[PATCH 26/26] RDS: Add RDS to AF key strings, Andy Grover, (Tue Feb 24, 6:30 pm)
Re: [PATCH 0/26] Reliable Datagram Sockets (RDS), take 2, David Miller, (Wed Feb 25, 12:28 am)
Re: [PATCH 0/26] Reliable Datagram Sockets (RDS), take 2, Andrew Grover, (Wed Feb 25, 11:43 am)
Re: [PATCH 0/26] Reliable Datagram Sockets (RDS), take 2, Andrew Grover, (Fri Feb 27, 11:21 am)
Re: [ofa-general] [PATCH 0/26] Reliable Datagram Sockets ( ..., Andrew Grover, (Sat Feb 28, 5:58 pm)