3.6 Principles of Congestion Control

In the previous sections, we've examined both the general principles and specific TCP mechanisms used to provide for a reliable data transfer service in the face of  packet loss.  We mentioned earlier that , in practice, such loss typically results from the overflowing of router buffers as the network becomes congested. Packet retransmission thus treats a symptom of network congestion (the loss of a specific transport-layer packet) but does not treat the cause of network congestion -- too many sources attempting to send data at too high a rate.  To treat the cause of network congestion, mechanisms are needed to throttle the sender in the face of network congestion.

In this section, we consider the problem of congestion control in a general context, seeking to understand why congestion is a "bad thing,"   how network congestion is manifested in the performance received by upper-layer applications, and various approaches that can be taken to avoid, or react to, network congestion. This more general study of congestion control is appropriate since, as with reliable data transfer, it is high on the "top-10" list of fundamentally important problems in networking. We conclude this section with a discussion of congestion control in the ATM ABR protocol.  The following section contains a detailed study of TCP's congestion control algorithm.

3.6.1 The Causes and the "Costs" of Congestion

Let's begin our general study of congestion control by examing three increasingly complex scenarios in which congestion occurs.  In each case, we'll look at why congestion occurs in the first place, and the  "cost" of congestion (in terms of  resources not fully utilized and poor performance received by the end systems).

Scenario 1: Two senders, a router with infinte buffers

We begin by considering perhaps the simplest congestion scenario possible: two hosts (A and B) each have a connection that share a single hop between source and destination, as shown in Figure 3.6-1.
Two connections sharing a single, infinite buffer router
Figure 3.6-1: Congestion scenario 1:  two connections sharing a single hop with infinte buffers

Let's assume that the application in Host A is sending data into the connection (e.g., passing data to the transport-level protocol via a socket) at an average rate of lin bytes/sec. These data are "original"  in the sense that each unit of data is sent into the socket only once.  The underlying transport-level protocol is a simple one: data is encapsulated and sent; no error recovery (e.g., retransmission), flow control, or congestion control is performed.  Host B operates in a similar manner and we assume for simplicity that it too is sending at a rate of   lin bytes/sec. Packets from hosts A and B pass through a router and over a shared outgoing link of capacity C. The router has buffers that allow it to store incoming packets when the packet arrival rate exceeds the outgoing link's capacity.  In this first scenario, we'll assume that the router has an infinite amount of buffer space.

Congestion scenarion1: performance
Figure 3.6-2: Congestion scenario 1: throughtput and delay as a function of host sending rate

Figure 3.6-2 plots the performance of Host A's connection under this first scenario.  The left graph plots the per-connection throughput (number of bytes per second at the receiver) as a function of the connection sending rate.  For a sending rate between zero and C/2, the throughput at the receiver equals the sender's sending rate  - everything sent by the sender is received at the receiver with a finite delay. When the sending rate is above C/2, however, the throughput is only C/2.  This upper limit on throughput is a consequence of the sharing of link capacity between two connections - the link simply can not deliver packets to a receiver at a steady state rate that exceeds C/2.  No matter how high Hosts A and B set their sending rates, they will each never see a throughput higher than C/2.

Achieving a per-connection throughput of C/2 might actually appear to be a "good thing,"  as the link is fully utilized in delivering packets to their destinations.  The right graph in Figure 3.6-2, however, shows the consequences of operating near link capacity.  As the sending rate approaches C/2 (from the left), the average delay becomes larger and larger.  When the sending rate exceeds C/2, the average number of queued packets in the router is unbounded and the average delay between source and destination becomes infinite (assuming that the connections operate at these sending rates for an infinite period of time). Thus, while operating at an aggregate throughput of near C may be ideal from a throughput standpoint, it is far from ideal from a delay standpoint.  Even in this (extremely) idealized scenario, we've already found one cost of a congested network - large queueing delays are experienced as the packet arrival rate nears the link capacity.
 

Scenario 2: Two senders, a router with finite buffers

Let us now slightly modify scenario 1 in the following two ways.  First, the amount of router buffering is assumed to be finite.  Second, we assume that each connection is reliable.  If a packet containing a transport-level segment is dropped at the router, it will eventually be retransmitted by the sender.  Because packets can be retransmitted, we must now be more careful with our use of the term "sending rate."  Specifically, let us again denote the rate at which the application sends original data into the socket by lin bytes/sec.  The rate at which the transport layer sends segments (containing original data or  retransmitted data) into the network will be denoted lin' bytes/sec. lin'  is sometimes referred to as the offered load to the network.
Scenario 2: two hosts and a router with finite buffers
Figure 3.6-3: Scenario 2: two hosts (with retransmissions) and a router with finite buffers





Scenario 2 performance: (a) no retransmissions (b) only needed retransmisisons (c) extraneous, undeeded retransmissions

Figure 3.6-4:  Scenario 2 performance: (a) no retransmissions
(b) only needed retransmisisons (c) extraneous, undeeded retransmissions

The performance realized under scenario 2 will now depend strongly on how retransmission is performed.  First, consider the unrealistic case that Host A is able to somehow (magically!) determine whether or not a buffer is free in the router and thus sends a packet only when a buffer is free.  In this case, no loss would occur,  lin would be equal to lin ' , and the throughput of the connection would be equal to lin.  This case is shown in Figure 3.6-4(a).  From a throughput standpoint, performance is ideal - everything that is sent is received. Note that the average host sending rate can not exceed C/2 under this scenario, since packet loss is assumed never to occur.

Consider next the slightly more realistic case that the sender retransmits only when a packet is known for certain to be lost. (Again, this assumption is a bit of a stretch.  However, it possiible that the sending host might set its timeout large enough to be virtually assured that a packet that has not been ACKed has been lost.) In this case, the performance might look something like that shown in Figure 3.6-4(b).  To appreciate what is happening here, consider the case that the offered load, lin'  (the rate of original data transmission plus retransmissions), equals .6C.  According to FIgure 3.6-4(b), at this value of the offered load, the rate at which data are delivered to the receiver application is C/3.  Thus, out of the .6C units of data transmitted, .3333 bytes/sec (on average) are original data and .26666 bytes per second (on average) are retransmitted data.  We see here another "cost" of a congested network - the sender must perform retransmissions in order to compensate for dropped (lost) packets due to buffer overflow.

Finally, let us consider the more realistic case that the sender may timeout prematurely and retransmit a packet that has been delayed in the queue, but not yet lost.  In this case, both the original data packet and the retransmission may both reach the receiver.  Of course, the receiver  needs but one copy of this packet and will discard the retransmission.  In this case, the "work" done by the router in forwarding the retransmitted copy of the original packet was "wasted," as the receiver will have already received the original copy of this packet.   The router would have better used the link transmission capacity transmitting a different packet instead.  Here then is yet another "cost" of a congested network - unneeded retransmissions by the sender  in the face of large delays may cause a router to use its link bandwidth to forward uneeded copies of  a packet.  Figure 3.6.4(c) shows the throughput versus offered load when each packet is assumed to be forwarded (on average) at least twice by the router.  Since each packet is forwarded twice, the throughput achieved will be bounded above by the two-segment curve with the asymptotic value of C/4.
 

Scenario 3: Four senders, routers with finite buffers, and  multihop paths

In our final congestion scenario, four hosts transmit packets, each over overlapping two-hop paths, as shown in Figure 3.6-5. We again assume that each host uses a timeout/retransmission mechanism to implement a reliable data transfer service, that all hosts have the same value of  lin , and that all router links have capacity C bytes/sec.
A multi-hop congestion scenario
Figure 3.6-5: Four senders, routers with finite buffers, and  multihop paths

Let us consider the connection from Host A to Host C, passing through Routers R1 and R2.  The A-C connection shares router R1 with the D-B connection and shares router R2 with the B-D connection.  For extremely small values of  lin , buffer overflows are rare (as in congestion scenarios 1 and 2), and the throughput approximately equals the offered load.  For slightly larger values of  lin , the corresponding throughput is also larger, as more original data is being transmitted into the network and delivered to the destination, and overflows are still rate . Thus, for small values of  lin , an increase in lin results in an increase in l out.

Having considered the case of extremely low traffic, let us next examine the case that  lin   (and hence lin') is extremely large.  Consider router R2.  The A-C traffic arriving to router R2 (which arrives at R2 after being forwarded from R1)  can have an arrival rate at R2 that is at most C, the capacity of the link from R1 to R2, regardless of the value of lin.  If lin'  is extremely large for all connections (including the B-D connection), then the arrival rate of B-D traffic at R2 can be much larger than that of the A-C traffic.  Because the A-C and B-D traffic must compete at router R2 for the limited amount of buffer space, the amount of A-C traffic that successfully gets through R2 (i.e., is not lost due to buffer overflow) becomes smaller and smaller as the offered load from B-D gets larger and larger.  In the limit, as the offered load approaches infinity, an empty buffer at R2 is immediately filled by a B-D packet and the throughput of the A-C connection at R2 goes to zero.  This, in turn, implies that the A-C end-end throughput goes to zero in the limt of heavy traffic.  These considerations give rise to the offered load versus throughput tradeoff shown below in Figure 3.6-6.

Congestion scenario 2: performance with multihop connections, finite buffered routers
Figure 3.6-6: Scenario 2 performance with finite buffers and multihope paths

The reason for the eventual decrease in throughput with increasing offered load  is evident when one considers the amount of wasted "work" done by the network.  In the high traffic scenario outlined above, whenever a packet is dropped at a second-hop router, the "work" done by the first-hop router in forwarding a packet to the second-hop router ends up being "wasted."  The network would have been equally well off (more accurately, equally as bad off) if the first router had simply discarded that packet and remained idle.  More to the point, the transmission capacity used at the first router to forward the packet to the second router could have been much more profitably used to transmit a different packet. (For example, when selecting a packet for transmission, it might be better for a router to give priorty to packets that have already traversed some number of upstream routers).  So here we see yet another cost of dropping a packet due to congestion - when a packet is dropped along a path, the transmission capacity that was used at each of the upstream routers to forward that packet to the point at which it is dropped ends up having been wasted.
 

3.6.2 Approaches Toward Congestion Control

In Section 3.7, we will examine TCP's specific approach towards congestion control in great detail.  Here, we identify the two broad approaches that are taken in practice towards congestion control, and discuss specific network architectures and congestion control protocols embodying these approaches.

At the broadest level, we can distinguish among congestion control approaches based on the whether or not the network layer provides any explicit assistance to the transport layer for congestion control purposes:

For network-assisted congestion control, congestion information is typically fed back from the network to the sender in one of two ways, as shown in Figure 3.6-7.  Direct feedback may be sent from a network router to the sender.  This form of notification typically takes the form of a choke packet (essentially saying, "I'm congested!").  The second form of notification occurs when a router marks/updates a field in a packet flowing from sender to receiver to indiciate congestion.  Upon receipt of a marked packet, the receiver then notifies the sender of the congestion indication.  Note that this latter form of notification takes up to a full round-trip time.

3.6.3 ATM ABR Congestion Control

Our detailed study of TCP congestion control in Section 3.7 will provide an in-depth case study of an end-end approach towards congestion control.  We conclude this section with a brief case study of the network-assisted congestion control mechanisms used in ATM ABR (Available Bit Rate) service. ABR has been designed as an elastic data transfer service in a manner reminiscent of TCP. When the network is underloaded, ABR service should be able to take advantage of the spare available bandwidth; when the network is congested, ABR service should throttle its transmission rate to some predetermined minimum transmititon rate. A detailed tutorial on ATM ABR congestion control and traffic management is provided in [Jain 1996].

Figure 3.6-8 shows the framework for ATM ABR congestion control.  In our discussion below we adopt ATM terminology (e.g., using the term "switch" rather than "router," and the term "call" rather than "packet).  With ATM ABR service, data cells are transmitted from a source to a destination through a series of intermediate switches.  Interpersed with the data cells are so-called RM (Resource Management) cells; we will see shortly that these RM cells can be used to convey congestion-related information among the hosts and switches.  When an RM cell is at a destination, it will be "turned around" and sent back to the sender (possibly after the destination has modified the contents of the RM cell). It is also possible for a switch to generate an RM cell itself and send this RM cell directly to a source.  RM cells can thus be used to provide both direct network feedback and network-feedback-via-the-receiver, as shown in Figure 3.6-8.

Congestion control framework for ATM ABR service
Figure 3.6-8: Congestion control framework for ATM ABR service

ATM ABR congestion control is a rate-based approach.  That is, the sender explicitly computes a maximum rate at which it can send and regulates itself accordingly.  ABR provides three mechanisms for signaling congestion-related information from the siwtches to the receiver:

An ATM ABR source adjusts the rate at which it can send cells as a function of the CI, NI and ER values in a returned RM cell.  The rules for making this rate adjustment are rather complicated and tedious.  The interested reader is referred to [Jain 1996] for details.

References

[Floyd 1994] Floyd, S.,  "TCP and Explicit Congestion Notification," ACM Computer Communication Review, V. 24 N. 5, October 1994, p. 10-23.
[Jain 1989] R. Jain, "A Delay-Based Approach for Congestion Avoidance in Interconnected Heterogeneous Computer Networks," ACM Comp. Commun. Rev., vol. 19, no. 5, 1989, pp. 56-71.
[Jain 1996] R. Jain. S Kalyanaraman, S. Fahmy, R. Goyal, S. Kim, "Tutorial Paper on ABR Source Behavior ," ATM Forum/96-1270, October 1996
[Ramakrishnan 1990] K. K. Ramakrishnan and Raj Jain, "A Binary Feedback Scheme for Congestion Avoidance in Computer Networks", ACM Transactions on Computer Systems, Vol.8, No.2, pp. 158-181, May 1990.
[Ramakrishnan 1998] Ramakrishnan, K.K., and Floyd, S., A Proposal to add Explicit Congestion Notification (ECN) to IP . Internet draft draft-kksjf-ecn-03.txt, October 1998, work in progress.
[Schwartz 1982] M. Schwartz, "Performance Analysis of the SNA Virtual Route Pacing Control," IEEE Transactions on Communications, Vol COM-30, No. 1 (Jan. 1982), pp. 172-184.