Presentation is loading. Please wait.

Presentation is loading. Please wait.

Katz, Stoica F04 EECS 122: Introduction to Computer Networks Congestion Control Computer Science Division Department of Electrical Engineering and Computer.

Similar presentations


Presentation on theme: "Katz, Stoica F04 EECS 122: Introduction to Computer Networks Congestion Control Computer Science Division Department of Electrical Engineering and Computer."— Presentation transcript:

1 Katz, Stoica F04 EECS 122: Introduction to Computer Networks Congestion Control Computer Science Division Department of Electrical Engineering and Computer Sciences University of California, Berkeley Berkeley, CA 94720-1776

2 Katz, Stoica F04 2 Today’s Lecture: 10 Network (IP) Application Transport Link Physical 2 7, 8, 9 10, 11 17, 18, 19 14, 15, 16 21, 22, 23 25 6

3 Katz, Stoica F04 Finishing Last Lecture

4 Katz, Stoica F04 4  Where do IP routers belong? Big Picture Communication Network Switched Communication Network Broadcast Communication Network Circuit-Switched Communication Network Packet-Switched Communication Network Datagram Network Virtual Circuit Network

5 Katz, Stoica F04 5 Packet (Datagram) Switching Properties  Expensive forwarding -Forwarding table size depends on number of different destinations -Must lookup in forwarding table for every packet  Robust -Link and router failure may be transparent for end-hosts  High bandwidth utilization -Statistical multiplexing  No service guarantees -Network allows hosts to send more packets than available bandwidth  congestion  dropped packets

6 Katz, Stoica F04 6 Virtual Circuit (VC) Switching  Packets not switched independently -Establish virtual circuit before sending data  Forwarding table entry -(input port, input VCI, output port, output VCI) -VCI – Virtual Circuit Identifier  Each packet carries a VCI in its header  Upon a packet arrival at interface i -Input port uses i and the packet’s VCI v to find the routing entry (i, v, i’, v’) -Replaces v with v’ in the packet header -Forwards packet to output port i’

7 Katz, Stoica F04 7 VC Forwarding: Example 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 5 …… 114 …… … 3 … in out in-VCI 11 out-VCI … … 5 …… 73 …… … 2 … in out in-VCIout-VCI … … 11 7 …… 14 …… … 1 … in out in-VCIout-VCI … … 7 1 source destination

8 Katz, Stoica F04 8 VC Forwarding (cont’d)  A signaling protocol is required to set up the state for each VC in the routing table -A source needs to wait for one RTT (round trip time) before sending the first data packet  Can provide per-VC QoS -When we set the VC, we can also reserve bandwidth and buffer resources along the path

9 Katz, Stoica F04 9 VC Switching Properties  Less expensive forwarding -Forwarding table size depends on number of different circuits -Must lookup in forwarding table for every packet  Much higher delay for short flows -1 RTT delay for connection setup  Less Robust -End host must spend 1 RTT to establish new connection after link and router failure  Flexible service guarantees -Either statistical multiplexing or resource reservations

10 Katz, Stoica F04 10 Circuit Switching  Packets not switched independently -Establish circuit before sending data  Circuit is a dedicated path from source to destination -E.g., old style telephone switchboard, where establishing circuit means connecting wires in all the switches along path -E.g., modern dense wave division multiplexing (DWDM) form of optical networking, where establishing circuit means reserving an optical wavelength in all switches along path  No forwarding table

11 Katz, Stoica F04 11 Circuit Switching Properties  Cheap forwarding -No table lookup  Much higher delay for short flows -1 RTT delay for connection setup  Less robust -End host must spend 1 RTT to establish new connection after link and router failure  Must use resource reservations

12 Katz, Stoica F04 12 Forwarding Comparison pure packet switching virtual circuit switching circuit switching forwarding cost highlownone bandwidth utilization highflexiblelow resource reservations noneflexibleyes robustnesshighlow

13 Katz, Stoica F04 13 Summary  Routers -Key building blocks of today a network in general, and Internet in particular  Main functionalities implemented by a router -Packet forwarding -Buffer management -Packet scheduling -Packet classification  Forwarding techniques -Datagram (packet) switching -Virtual circuit switching -Circuit switching

14 Katz, Stoica F04 Starting New Lecture Congestion Control

15 Katz, Stoica F04 15 What We Know We know:  How to process packets in a switch  How to route packets in the network  How to send packets reliably We don’t know:  How fast to send

16 Katz, Stoica F04 16 What’s at Stake?  Send too slow: link is not fully utilized -wastes time  Send too fast: link is fully utilized but.... -queue builds up in router buffer (delay) -overflow buffers in routers -overflow buffers in receiving host (ignore)  Why are buffer overflows a problem? -packet drops (mine and others) -Interesting history....(Van Jacobson rides to the rescue)

17 Katz, Stoica F04 17 Abstract View  We ignore internal structure of router and model it as having a single queue for a particular input- output pair Sending HostBuffer in Router Receiving Host AB

18 Katz, Stoica F04 18 Three Congestion Control Problems  Adjusting to bottleneck bandwidth  Adjusting to variations in bandwidth  Sharing bandwidth between flows

19 Katz, Stoica F04 19 Single Flow, Fixed Bandwidth  Adjust rate to match bottleneck bandwidth -without any a priori knowledge -could be gigabit link, could be a modem AB 100 Mbps

20 Katz, Stoica F04 20 Single Flow, Varying Bandwidth  Adjust rate to match instantaneous bandwidth -assuming you have rough idea of bandwidth AB BW(t)

21 Katz, Stoica F04 21 Multiple Flows Two Issues:  Adjust total sending rate to match bandwidth  Allocation of bandwidth between flows A2B2 100 Mbps A1 A3 B3 B1

22 Katz, Stoica F04 22 Reality Congestion control is a resource allocation problem involving many flows, many links, and complicated global dynamics

23 Katz, Stoica F04 23 General Approaches  Send without care -many packet drops -not as stupid as it seems  Reservations -pre-arrange bandwidth allocations -requires negotiation before sending packets -low utilization  Pricing -don’t drop packets for the high-bidders -requires payment model

24 Katz, Stoica F04 24 General Approaches (cont’d)  Dynamic Adjustment -probe network to test level of congestion -speed up when no congestion -slow down when congestion -suboptimal, messy dynamics, simple to implement  All three techniques have their place -but for generic Internet usage, dynamic adjustment is the most appropriate -due to pricing structure, traffic characteristics, and good citizenship

25 Katz, Stoica F04 25 TCP Congestion Control  TCP connection has window -controls number of unacknowledged packets  Sending rate: ~Window/RTT  Vary window size to control sending rate

26 Katz, Stoica F04 26 Congestion Window (cwnd)  Limits how much data can be in transit  Implemented as # of bytes  Described as # packets in this lecture EffectiveWindow = MaxWindow – (LastByteSent – LastByteAcked) MaxWindow = min(cwnd, AdvertisedWindow) LastByteAcked LastByteSent sequence number increases MaxWindow EffectiveWindow

27 Katz, Stoica F04 27 Two Basic Components  Detecting congestion  Rate adjustment algorithm -depends on congestion or not -three subproblems within adjustment problem finding fixed bandwidth adjusting to bandwidth variations sharing bandwidth

28 Katz, Stoica F04 28 Detecting Congestion  Packet dropping is best sign of congestion -delay-based methods are hard and risky  How do you detect packet drops? ACKs -TCP uses ACKs to signal receipt of data -ACK denotes last contiguous byte received actually, ACKs indicate next segment expected  Two signs of packet drops -No ACK after certain time interval: time-out -Several duplicate ACKs (ignore for now)

29 Katz, Stoica F04 29 Rate Adjustment  Basic structure: -Upon receipt of ACK (of new data): increase rate -Upon detection of loss: decrease rate  But what increase/decrease functions should we use? -Depends on what problem we are solving

30 Katz, Stoica F04 30 Problem #1: Single Flow, Fixed BW  Want to get a first-order estimate of the available bandwidth -Assume bandwidth is fixed -Ignore presence of other flows  Want to start slow, but rapidly increase rate until packet drop occurs (“slow-start”)  Adjustment: -cwnd initially set to 1 -cwnd++ upon receipt of ACK

31 Katz, Stoica F04 31 Slow-Start  cwnd increases exponentially: cwnd doubles every time a full cwnd of packets has been sent -Each ACK releases two packets -Slow-start is called “slow” because of starting point segment 1 cwnd = 1 cwnd = 2 segment 2 segment 3 cwnd = 4 segment 4 segment 5 segment 6 segment 7 cwnd = 8 cwnd = 3

32 Katz, Stoica F04 32 Problems with Slow-Start  Slow-start can result in many losses -roughly the size of cwnd ~ BW*RTT  Example: -at some point, cwnd is enough to fill “pipe” -after another RTT, cwnd is double its previous value -all the excess packets are dropped!  Therefore, need a more gentle adjustment algorithm once have rough estimate of bandwidth

33 Katz, Stoica F04 33 Problem #2: Single Flow, Varying BW  Want to be able to track available bandwidth, oscillating around its current value  Possible variations: (in terms of RTTs) -multiplicative increase or decrease: cwnd  a*cwnd -additive increase or decrease: cwnd  cwnd + b  Four alternatives: -AIAD: gentle increase, gentle decrease -AIMD: gentle increase, drastic decrease -MIAD: drastic increase, gentle decrease (too many losses) -MIMD: drastic increase and decrease

34 Katz, Stoica F04 34 Problem #3: Multiple Flows  Want steady state to be “fair”  Many notions of fairness, but here all we require is that two identical flows end up with the same bandwidth  This eliminates MIMD and AIAD  AIMD is the only remaining solution!

35 Katz, Stoica F04 35 Buffer and Window Dynamics  No congestion  x increases by one packet/RTT every RTT  Congestion  decrease x by factor 2 AB C = 50 pkts/RTT x

36 Katz, Stoica F04 36 AIMD Sharing Dynamics AB x DE  No congestion  rate increases by one packet/RTT every RTT  Congestion  decrease rate by factor 2 Rates equalize  fair share y

37 Katz, Stoica F04 37 AIAD Sharing Dynamics AB x DE  No congestion  x increases by one packet/RTT every RTT  Congestion  decrease x by 1 y

38 Katz, Stoica F04 38 AIMD AB x C DE y Limit rates: x = y

39 Katz, Stoica F04 39 AIAD AB x C DE y Limit rates: x and y depend on initial values

40 Katz, Stoica F04 40 Implementing AIMD  After each ACK -increment cwnd by 1/cwnd (cwnd += 1/cwnd) -as a result, cwnd is increased by one only if all segments in a cwnd have been acknowledged  But need to decide when to leave slow-start and enter AIMD  use ssthresh variable

41 Katz, Stoica F04 41 Slow Start/AIMD Pseudocode Initially: cwnd = 1; ssthresh = infinite; New ack received: if (cwnd < ssthresh) /* Slow Start*/ cwnd = cwnd + 1; else /* Congestion Avoidance */ cwnd = cwnd + 1/cwnd; Timeout: /* Multiplicative decrease */ ssthresh = cwnd/2; cwnd = 1;

42 Katz, Stoica F04 42 The big picture (with timeouts) Time cwnd Timeout Slow Start AIMD ssthresh Timeout Slow Start AIMD

43 Katz, Stoica F04 43 Congestion Detection Revisited  Wait for Retransmission Time Out (RTO) -RTO kills throughput  In BSD TCP implementations, RTO is usually more than 500ms -the granularity of RTT estimate is 500 ms -retransmission timeout is RTT + 4 * mean_deviation  Solution: Don’t wait for RTO to expire

44 Katz, Stoica F04 44 Fast Retransmits  Resend a segment after 3 duplicate ACKs -a duplicate ACK means that an out-of sequence segment was received  Notes: -ACKs are for next expected packet -packet reordering can cause duplicate ACKs -window may be too small to get enough duplicate ACKs ACK 2 segment 1 cwnd = 1 cwnd = 2 segment 2 segment 3 ACK 4 cwnd = 4 segment 4 segment 5 segment 6 segment 7 ACK 3 3 duplicate ACKs ACK 4

45 Katz, Stoica F04 45 Fast Recovery: After a Fast Retransmit  ssthresh = cwnd / 2  cwnd = ssthresh -instead of setting cwnd to 1, cut cwnd in half (multiplicative decrease)  for each dup ack arrival -dupack++ -MaxWindow = min(cwnd + dupack, AdvWin) -indicates packet left network, so we may be able to send more  receive ack for new data (beyond initial dup ack) -dupack = 0 -exit fast recovery  But when RTO expires still do cwnd = 1

46 Katz, Stoica F04 46 Fast Retransmit and Fast Recovery  Retransmit after 3 duplicated acks -Prevent expensive timeouts  Reduce slow starts  At steady state, cwnd oscillates around the optimal window size Time cwnd Slow Start AI/MD Fast retransmit

47 Katz, Stoica F04 47 TCP Congestion Control Summary  Measure available bandwidth -slow start: fast, hard on network -AIMD: slow, gentle on network  Detecting congestion -timeout based on RTT robust, causes low throughput -Fast Retransmit: avoids timeouts when few packets lost can be fooled, maintains high throughput  Recovering from loss -Fast recovery: don’t set cwnd=1 with fast retransmits

48 Katz, Stoica F04 48 Issues to Think About  What about short flows? (setting initial cwnd) -most flows are short -most bytes are in long flows  How does this work over wireless links? -packet reordering fools fast retransmit -loss not always congestion related  High speeds? -to reach 10gbps, packet losses occur every 90 minutes!  Why are losses bad? -Tornado codes: can reconstruct data proportional to packets that get through. Why not send at maximal rate?  Fairness: how do flows with different RTTs share link?

49 Katz, Stoica F04 49 Bonus Question  Why is TCP like Blanche Dubois?  Because it “relies on the kindness of strangers...”  What happens if not everyone cooperates?


Download ppt "Katz, Stoica F04 EECS 122: Introduction to Computer Networks Congestion Control Computer Science Division Department of Electrical Engineering and Computer."

Similar presentations


Ads by Google