/
TCP flow control (Congestion Window Control) TCP flow control (Congestion Window Control)

TCP flow control (Congestion Window Control) - PowerPoint Presentation

kylie
kylie . @kylie
Follow
67 views
Uploaded On 2023-11-12

TCP flow control (Congestion Window Control) - PPT Presentation

Ashkan Paya 1 Based on An argument for increasing TCPs initial congestion window Nandita Dukkipati Tiziana Refice Yuchung Cheng Jerry Chu Tom Herbert Amit Agarwal Arvind Jain and Natalia Sutin Google Inc ID: 1031554

control congestion data tcp congestion control tcp data initial window number flow slow web cwnd sequence sending bytes receiver

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "TCP flow control (Congestion Window Cont..." is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

1. TCP flow control(Congestion Window Control)Ashkan Paya 1

2. Based onAn argument for increasing TCP’s initial congestion window Nandita Dukkipati, Tiziana Refice, Yuchung Cheng, Jerry Chu, Tom Herbert, Amit Agarwal, Arvind Jain and Natalia Sutin. Google Inc.2

3. ContentTerminologyTCP explanation and originOSI modelTCP header formats and fieldsTCP Flow Control3

4. Terminology ITCP: Transmission Control Protocol IP : Internet ProtocolACK : acknowledgementURG : Urgent Pointer field significancePSH : Push or send data to applicationSYN : Synchronize sequence numbersRST : Reset (abort) the connectionFIN : No more data4

5. Terminology IIcwnd : Congestion Window(an interval that sender choose a number of sending bytes from that)awnd : advertised window (how many more bytes the receiver is willing to accept beyond the last acknowledged byte)ss_thresh : defined constant as a critical valueRTT : Round Trip TimeBDP : Bandwidth Delay ProductTime Out : duration from sending a packet that will be lost and retransmission of that until receiving acknowledgement.5

6. What is TCP?TCP is one of the main protocols in TCP/IP networks. TCP enables two hosts to establish a connection and exchange streams of data (packets) and guarantees delivery of them in the same order which they were sent. In other words, TCP provides reliable, ordered delivery of a stream of bytes from a program on one computer to another program on another computer. TCP is the protocol that major Internet applications such as the World Wide Web, email and file transfer rely on. Packet loss is one of the major concerns here.6

7. What is TCP?On the other hand, other applications, which do not require reliable data stream service, may use the User Datagram Protocol (UDP), which provides a datagram service that emphasizes reduced latency over reliability. Applications like Skype, ooVoo and almost all of the video/audio stream based applications using UDP protocol. Packet loss is not important here.7

8. OSI model8

9. 9

10. TCP Header format10

11. TCP header fieldsSource and destination port : identifies the sending and receiving ports. (16 bits)Sequence Number : random number from (2^32 _ 1)ACK Number : A dedicated ACK or piggybacked ACK contains the sequence number of the next data segment the receiver expects. (= sequence number)Heather LengthReserved : reserved for future use. Must be zero11

12. TCP header fieldsFlags : URG, ACK , PSH, RST, SYN and FIN. (6 bits)Window : flow control credit allocation, value of advertised window. (16 bits)Checksum : this field is used for error-checking of the header and data. (16 bits)Urgent Pointer :  if the URG flag is set, then this 16-bit field is an offset from the sequence number indicating the last urgent data byte . Indicates data that is to be delivered as quickly as possible. This pointer specifies the position where urgent data ends. Options : Variables such that time stamping to augment seq.num in high speed connections12

13. TCP Connection Establishment sender receiver 1. SYN, sequence number =x 2. SYN+ACK seq.num = y Acknowledgement x+1 3. ACK, acknowledgement y+1 13231Three-way Hand shake Protocol(Client)(server)

14. TCP Connection Termination client server 1. FIN, seqNum = x 2. acknowledgement = x+1 3. FIN, seqNum = y 4. acknowledgement = y+1 141234

15. TCP Flow Control [1]15

16. Flow control is needed to:16

17. Flow control is needed to:Prevent sender from “swamping” receiver with data e.g. a fast server sending to a slow client.17

18. Flow control is needed to:Prevent sender from “swamping” receiver with data e.g. a fast server sending to a slow client.Provide congestion control inside the network, e.g. in gateways or routers. 18

19. Flow control is needed to:Prevent sender from “swamping” receiver with data e.g. a fast server sending to a slow client.Provide congestion control inside the network, e.g. in gateways or routers. * In either case, a node can be forced to discard packets due to lack of buffer space.19

20. Flow control can solve:20

21. Flow control can solve: end-to-end flow control 21

22. Congestion control mechanism22

23. Congestion control mechanism1. Slow start phase initial_cwnd = 123

24. Congestion control mechanism1. Slow start phase initial_cwnd = 12. Congestion avoidance phase24

25. Congestion control mechanism1. Slow start phase initial_cwnd = 12. Congestion avoidance phase3. Congestion detection and recovery a) Standard Recovery ( recovery by timeout) b) Fast retransmission and fast recovery 25

26. 26

27. Increasing initial cwnd TCP initial_cwnd has remained unchanged since 2002. in 2009 one paper[2] indicated that average connection bandwidth is 1.7 Mbps with more than 50% of clients have bandwidth above 2 Mbps, while the usage of narrowband (<256 Kbps) has shrunk to about 5% of clients.Applications like IE8, Firefox 3 devised their own mechanism.27

28. Advantages:Reduce latency latency of a transfer completing in slow start without losses is: 28

29. Advantages:Reduce latency latency of a transfer completing in slow start without losses is: 29

30. Advantages:Keep up with growth in Web page sizes The Internet average Web page size is 384 KB [2] including HTTP headers and composed resources . Now web browsers using multiple TCP connection using slow start. e.g. IE8 can open 180 connections, Firefox open more than 24 connections[4] Therefore, increasing initial_cnwd mitigate that need.30

31. Advantages:Allow short transfers to compete fairly with bulk data traffic. Internet measurements indicate that most of the network traffic are bulk data transfers ( such as video), while majority of connections are short-lived and transfer small amount of data.31

32. Therefore, I)Minimize average Web page download time,II)Minimize impact on tail latency due to increased packet loss,III)Maintain fairness with competing flows,32

33. Init_cwnd and latency33

34. Now…What is the best initial congestion window number?34

35. Now…What is the best initial congestion window number? Based on experiments and charts presented in this paper, 10 segments (≈15KB)* Ethernet and maximum size of segment is 1430 bytes.35

36. Negative impact The effect on retransmission rate TCP’s retransmission rate represents an upper bound for the percentage of packets lost due to congestion.36

37. Ratio of retransmitted bytes to that of unique bytes transmitted, expressed as a percentage. Initial_cwnd=10AllWeb searchMaps PhotosExp2.291.734.172.64Base1.981.553.272.25Diff0.310.180.900.3937Avg DCSlow DCAllWeb searchMapsPhotosExp4.213.505.796.10Base3.542.983.944.97Diff0.670.521.851.12

38. ConclusionIncreasing initial congestion window is a small change with a significant positive impact on Web transfer latency.Mitigate the need for multiple TCP connections to increase download speedIETF trying to standardize the TCP’s initial congestion window to at least 10 segmentsFurther work should focus on eliminating the initial congestion window as a manifest constant to scale even large network speeds and Web page sizes38

39. Thank you for your time and I appreciate your consideration39

40. ReferencesAn Argument for Incresing TCP’s Initial Congestion Window google IncAkamai. The state of the internet. 3rd quarter 2009 http://www.akamai.com/stateofinternetS.Ramachandran and A. jain : size and number of resources http://code.google.com/speed/article/web-metrics.html 40