Methods and systems for alleviating network congestion

Information

  • Patent Application
  • 20090161546
  • Publication Number
    20090161546
  • Date Filed
    May 27, 2004
    20 years ago
  • Date Published
    June 25, 2009
    14 years ago
Abstract
Methods and systems for detecting and predicting congestion patterns from network feedback are described. In the inventive embodiments, network feedback in the form of binary feedback messages is received. The network feedback can comprise any suitable feedback messages and, in the illustrated and described embodiments comprise packet loss events or ECN marks, to name just a few. The inventive embodiment uses the network feedback to predict when congestion is likely to occur in the future. Based on these predictions, the behavior of end users within the system can be modified so that congestion is reduced. Specifically, the data packets that are typically transmitted by the end users can be delayed until such a time when the predicted congestion is mitigated. Thus, the inventive systems and methods take a predictive, proactive approach to addressing network congestion issues, rather than a reactive approach.
Description
TECHNICAL FIELD

This invention relates to methods and systems for alleviating network congestion, and particularly to methods and systems for alleviating network congestion that can be experienced by the Internet due to packet traffic-induced network oscillations.


BACKGROUND

Of the many protocols available for transferring data across networks such as the Internet, TCP/IP (which stands for Transmission Control Protocol/Internet Protocol) is the one most widely accepted. TCP ensures reliable transfers by transmitting data in separate packets. More precisely, TCP segments the data, and a TCP segment with an IP header forms an IP packet. The size of a TCP segment is bounded by the Maximum Segment Size (MSS), which is connection dependent with a default value of 536 bytes. A “sliding window” or “handshake” protocol partitions the transmission into three distinct phases. The first phase represents data ready to be sent. The second phase represents data that is either in transit or has arrived but has not yet been acknowledged. The third phase represents data that arrived successfully and has been acknowledged. Thus a 256 Kb file is broken into a number of packets, each of which passes sequentially through all three phases. An excellent text that provides a discussion of TCP/IP is Comer, Internetworking with TCP/IP, Volume I: Principles, Protocols, and Architecture Third Edition.


Not surprisingly, data traffic over networks can be susceptible to congestion. Congestion is a condition of severe delay caused by an overload of packets (or datagrams) at one or more switching points (e.g. at routers). When congestion occurs, delays increase and the router begins to enqueue packets until it can route them. Each router has a finite storage capacity and packets or datagrams have to compete for that storage (i.e. in a datagram-based Internet, there is no preallocation of resources to individual TCP connections). In the worst case, the total number of packets or datagrams arriving at the congested router grows until the router reaches capacity and starts to drop packets.


End points of a communication connection do not usually know the details of where congestion has occurred or why. To them, congestion simply means an increased delay or lost packets. Unfortunately, most transport protocols use timeout and retransmission, so they respond to increased delay or loss by retransmitting packets or datagrams. Retransmissions aggravate congestion instead of alleviating it. If unchecked, the increased traffic will produce increased delay, leading to increased traffic, and so on, until the network becomes useless. This condition is known as “congestion collapse”.


To avoid congestion collapse, TCP must reduce transmission rates when congestion occurs. Routers watch queue lengths and use certain techniques to inform hosts that congestion has occurred, but transport protocols like TCP can help avoid congestion by reducing transmission rates automatically whenever delays occur. Of course, algorithms to avoid congestion must be constructed carefully because even under normal operating conditions networks can exhibit wide variation in round trip delays.


To avoid congestion, the TCP standard now recommends using two techniques: slow-start and multiplicative decrease. These techniques are related and can be implemented easily. For each TCP connection, TCP must remember the size of the receiver's window (i.e. a “window” is defined as the buffer size advertised in acknowledgements). To control congestion, TCP maintains a second limit, called the “congestion window limit” or simply the “congestion window”. At any time, TCP acts as if the window size is the smaller of (1) the receiver's window, and (2) the congestion window.


In the steady state on a non-congested connection, the congestion window is the same size as the receiver's window. Reducing the congestion window size reduces the traffic TCP will inject into the connection. To estimate congestion window size, TCP assumes that most packet or datagram loss comes from congestion and uses the following strategy:


Multiplicative Decrease Congestion Avoidance: Upon loss of a segment, reduce the congestion window by half (down to a minimum of at least one segment). For those segments that remain in the allowed window, backoff the retransmission timer exponentially.


Because TCP reduces the congestion window by half for every loss, it decreases the window exponentially if loss continues. In other words, if congestion continues, TCP reduces the volume of traffic exponentially and the rate of retransmission exponentially. If loss continues, TCP eventually limits transmission to a single packet or datagram and continues to double timeout values before retransmitting. The idea is to provide a quick and significant traffic reduction to allow routers enough time to clear the packets or datagrams already in their queues.


To recover from congestion, one might think that this process is simply reversed and that the congestion window is doubled when traffic begins to flow again. However, doing so produces an unstable system that oscillates wildly between no traffic and congestion. Instead, TCP uses a technique called slow-start to scale up transmission:


Slow-Start (Additive) Recovery: Whenever starting traffic on a new connection or increasing traffic after a period of congestion, start the congestion window at the size of a single segment and increase the congestion window by one segment each time an acknowledgement arrives.


Slow-start avoids swamping the Internet with additional traffic immediately after congestion clears or when new connections suddenly-start.


The term “slow start” may be a misnomer because under ideal conditions, the start is not very slow. TCP initializes the congestion window to 1, sends an initial segment, and waits. When the acknowledgement arrives, it increases the congestion window to 2, sends two segments and waits. When the two acknowledgements arrive they each increase the congestion window by 1, so TCP can send 4 segments. Acknowledgements for those will increase the congestion window to 8. Within four round-trip times, TCP can send 16 segments, often enough to reach the receiver's window limit. Even for extremely large windows, it takes only log2N round trips before TCP can send N segments.


To avoid increasing the window size too quickly and causing additional congestion, TCP adds one additional restriction. Once the congestion window reaches one half of its original size before congestion, TCP enters a congestion avoidance phase and slows down the rate of the increment. During congestion avoidance, it increases the congestion window by 1 only if all segments in the window have been acknowledged. This is known as a linear increase phase.


Taken together, the slow-start increase, linear increase and multiplicative decrease behaviour of congestion avoidance, and exponential timer backoff improve the performance without adding any significant computational overhead to the protocol software.


Thus, it has been recognized for some time that TCP traffic sources tend to synchronize their behavior, producing oscillations in buffer occupancy levels at the bottleneck links of the networks. These oscillations are not desirable, as they are likely to imply greater queuing delays, or more packet loss, for a given level of bandwidth utilization.


Random Early Detection (“RED”) has been proposed to desynchronize TCP sources, and hence reduce the impact of these oscillations. RED is discussed in detail in Floyd and Jacobson, Random early detection gateways for congestion avoidance, IEEE/ACM Trans. On Networking, 1(4), 1993. RED attempts to reduce the impact of oscillations by smoothing the binary feedback signals sent by the congested buffer resource. Such binary feedback signals can take the form of packet loss events, or Early Congestion Notification (ECN) marks. See, for example, Floyd, TCP and explicit congestion notification, ACM Computer Communication Review, 24 pp. 10-23, 1994. Many variations of this initial proposal have been suggested and some recent work addressed the delicate issue of how to tune RED parameters to obtain maximal efficiency. See, for example, Firoiu and Borden, A study of active queue management for congestion control, Infocom 2000. A complementary proposal proposes the use of ECN marks which advocates marking packets instead of dropping them at times an active buffer management decision is made, informing the sources to back-off while avoiding unnecessary packet transmissions.


From ongoing work on implementations of RED and its variants, it appears that the achieved oscillation reduction in buffer occupancy is not as dramatic as was initially expected. One could reasonably argue that the rules proposed for deciding when to mark or drop packets can be further improved.


Accordingly, this invention arose out of concerns associated with improving the methods and systems that are used to address network congestion issues, particularly in the environment of the Internet.


SUMMARY

Methods and systems for detecting and predicting congestion patterns from network feedback are described. In the inventive embodiments, network feedback in the form of binary feedback messages is received. The network feedback can comprise any suitable feedback messages and, in the illustrated and described embodiments comprise packet loss events or ECN marks, to name just a few. The inventive embodiment uses the network feedback to predict when congestion is likely to occur in the future. Based on these predictions, the behavior of end users within the system can be modified so that congestion is reduced. Specifically, the data packets that are typically transmitted by the end users can be delayed until such a time when the predicted congestion is mitigated. Thus, the inventive systems and methods take a predictive, proactive approach to addressing network congestion issues, rather than a reactive approach.





BRIEF DESCRIPTION OF THE DRAWINGS


FIG. 1 is a block diagram of an exemplary network in which the inventive embodiments can be employed.



FIG. 2 is a block diagram of a computer system that is suitable for use in implementing the described embodiments.



FIG. 3 is a graph that describes the arrival rate of background traffic.



FIG. 4 is a graph that describes oscillations in a queue size.



FIG. 5 contains four graphs that describe data analysis for aggregate marks.



FIG. 6 contains two graphs that describe data analysis for individual marks.



FIG. 7 contains two graphs that describe congestion window evolution in (a) ECN aware TCP and (b) Smooth TCP.



FIG. 8 is a table that describes sent rates and proportion of marked packets for varying number of TCP and Smooth TCP streams.



FIG. 9 contains two graphs that describe send and marked rates (a) 49 TCP, 1 Smooth TCP and (b) 1 TCP, 49 Smooth TCP.



FIG. 10 is a flow diagram that describes steps in a method in accordance with the described embodiment.



FIG. 11 is a graph that illustrates predicted values versus actual values in accordance with the described embodiment.



FIG. 12 is a graph that illustrates predicted values and associated belief, based on Tchebitchev inequality and Gaussian distribution.



FIG. 13 is a graph that illustrates confidence intervals and estimates for τ0, gathered by a passive predictor.



FIG. 14 is a graph that illustrates confidence intervals and estimates for τ1, gathered by a passive predictor.



FIG. 15 is a graph that illustrates actual and predicted states, gathered by a passive predictor.



FIG. 16 is a graph that illustrates beliefs of predictions made by a passive predictor.



FIG. 17 is a table that describes sent rates and proportion of marked packets for varying number of TCP and PredTCP streams.



FIG. 18 is a graph that describes global rates for varying numbers of PredTCP sources.



FIG. 19 is a graph that describes individual rates for varying numbers of PredTCP sources.



FIG. 20 is a graph that describes marking rates for varying numbers of PredTCP sources.



FIG. 21 is a diagram illustrating a protocol layering scheme in accordance with the described embodiment.





DETAILED DESCRIPTION

Overview


Methods and systems for detecting and predicting congestion patterns from network feedback are described. In the inventive embodiments, network feedback in the form of binary feedback messages is received. The network feedback can comprise any suitable feedback messages and, in the illustrated and described embodiments comprise packet loss events or ECN marks, to name just a few. The feedback can be received by relying on the return path of TCP if, for example, loss events or ECN marks are used. The inventive embodiment uses the network feedback to predict when congestion is likely to occur in the future. Based on these predictions, the behavior of end users within the system can be modified so that congestion is reduced. Specifically, the data packets that are typically transmitted by the end users can be delayed until such a time when the predicted congestion is mitigated. Thus, the inventive systems and methods take a predictive, proactive approach to addressing network congestion issues, rather than a reactive approach typified by the systems mentioned in the “Background” section above.


Exemplary Operating Environment


One exemplary operating environment in which the described embodiments can operate encompasses a general distributed computing environment which can include, generally, local area networks with hubs, routers, gateways, tunnel-servers, applications servers, etc. connected to other clients and other networks via the Internet. Some of the elements of a typical internet network configuration are shown in FIG. 1, and include a number of client machines 105 connected to a Gateway/hub/tunnel-server/etc. 106 which is itself connected to the internet 107 via some internet service provider (ISP) connection 108. Also shown are other possible clients 101, 103 similarly connected to the internet 107 via an ISP connection 104, with these units communicating to possibly a home office via an ISP connection 109 to a gateway/tunnel-server 110 which is connected at 111 to various enterprise application servers 112, 113, 114 which could be connected through another hub/router 115 to various local clients 116, 117, 118. It will be appreciated that this constitutes but one exemplary network computing environment in which the inventive embodiments can be employed.


Exemplary Computing Environment


The network environment shown above is made up of a number of computing units. The individual computing units can be described by the computing unit of FIG. 2.



FIG. 2 illustrates an example of a suitable computing environment 220 on which the inventive techniques described below can be implemented.


Exemplary computing environment 220 is only one example of a suitable computing environment and is not intended to suggest any limitation as to the scope of use or functionality of the described techniques. Neither should the computing environment 220 be interpreted as having any dependency or requirement relating to any one or combination of components illustrated in the exemplary computing environment 220.


The described techniques can be operational with numerous other general purpose or special purpose computing system environments or configurations. Examples of well known computing systems, environments, and/or configurations that may be suitable for use with the described techniques include, but are not limited to, personal computers, server computers, thin clients, thick clients, hand-held or laptop devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.


The described techniques can be described in the general context of computer-executable instructions, such as program modules, being executed by a computer. Generally, program modules include routines, programs, objects, components, data structures, etc. that perform particular tasks or implement particular abstract data types. The described techniques can also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network. In a distributed computing environment, program modules can be located in both local and remote computer storage media including memory storage devices.


As shown in FIG. 2, the computing environment 220 includes a general-purpose computing device in the form of a computer 230. The components of computer 220 can include, but are not limited to, one or more processors or processing units 232, a system memory 234, and a bus 236 that couples various system components including the system memory 234 to the processor 232.


Bus 236 represents one or more of any of several types of bus structures, including a memory bus or memory controller, a peripheral bus, an accelerated graphics port, and a processor or local bus using any of a variety of bus architectures. By way of example, and not limitation, such architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnects (PCI) bus also known as Mezzanine bus.


Computer 230 typically includes a variety of computer readable media. Such media can be any available media that is accessible by computer 230, and includes both volatile and non-volatile media, removable and non-removable media.


In FIG. 2, the system memory includes computer readable media in the form of volatile memory, such as random access memory (RAM) 240, and/or non-volatile memory, such as read only memory (ROM) 238. A basic input/output system (BIOS) 242, containing the basic routines that help to transfer information between elements within computer 230, such as during start-up, is stored in ROM 238. RAM 240 typically contains data and/or program modules that are immediately accessible to and/or presently operated on by processor 232.


Computer 230 can further include other removable/non-removable, volatile/non-volatile computer storage media. By way of example only, FIG. 2 illustrates a hard disk drive 244 for reading from and writing to a non-removable, non-volatile magnetic media (not shown and typically called a “hard drive”), a magnetic disk drive 246 for reading from and writing to a removable, non-volatile magnetic disk 248 (e.g., a “floppy disk”), and an optical disk drive 250 for reading from or writing to a removable, non-volatile optical disk 252 such as a CD-ROM, DVD-ROM or other optical media. The hard disk drive 244, magnetic disk drive 246, and optical disk drive 250 are each connected to bus 236 by one or more interfaces 254.


The drives and their associated computer-readable media provide nonvolatile storage of computer readable instructions, data structures, program modules, and other data for computer 230. Although the exemplary environment described herein employs a hard disk, a removable magnetic disk 248 and a removable optical disk 252, it should be appreciated by those skilled in the art that other types of computer readable media which can store data that is accessible by a computer, such as magnetic cassettes, flash memory cards, digital video disks, random access memories (RAMs), read only memories (ROM), and the like, may also be used in the exemplary operating environment.


A number of program modules may be stored on the hard disk, magnetic disk 248, optical disk 252, ROM 238, or RAM 240, including, by way of example, and not limitation, an operating system 58, one or more application programs 260, other program modules 262, and program data 264.


A user can enter commands and information into computer 230 through input devices such as keyboard 266 and pointing device 268 (such as a “mouse”). Other input devices (not shown) may include a microphone, joystick, game pad, satellite dish, serial port, scanner, or the like. These and other input devices are connected to the processing unit 232 through an user input interface 270 that is coupled to bus 236, but may be connected by other interface and bus structures, such as a parallel port, game port, or a universal serial bus (USB).


A monitor 272 or other type of display device is also connected to bus 236 via an interface, such as a video adapter 274. In addition to the monitor, personal computers typically include other peripheral output devices (not shown), such as speakers and printers, which may be connected through output peripheral interface 275.


Computer 230 may operate in a networked environment using logical connections to one or more remote computers, such as a remote computer 282. Remote computer 282 may include many or all of the elements and features described herein relative to computer 230.


Logical connections shown in FIG. 2 are a local area network (LAN) 277 and a general wide area network (WAN) 279. Such networking environments are commonplace in offices, enterprise-wide computer networks, intranets, and the Internet.


When used in a LAN networking environment, the computer 230 is connected to LAN 277 network interface or adapter 286. When used in a WAN networking environment, the computer typically includes a modem 278 or other means for establishing communications over the WAN 279. The modem 278, which may be internal or external, may be connected to the system bus 236 via the user input interface 270, or other appropriate mechanism.


Depicted in FIG. 2, is a specific implementation of a WAN via the Internet. Over the Internet, computer 230 typically includes a modem 278 or other means for establishing communications over the Internet 280. Modem 278, which may be internal or external, is connected to bus 236 via interface 270.


In a networked environment, program modules depicted relative to the personal computer 230, or portions thereof, may be stored in a remote memory storage device. By way of example, and not limitation, FIG. 2 illustrates remote application programs 289 as residing on a memory device of remote computer 282. It will be appreciated that the network connections shown and described are exemplary and other means of establishing a communications link between the computers may be used.



FIG. 2 illustrates an example of a suitable operating environment 220 in which the described techniques can be implemented. Specifically, the described techniques can be implemented by any program 260-262 or operating system 258 in FIG. 2.


The operating environment is only an example of a suitable operating environment and is not intended to suggest any limitation as to the scope of use of functionality of the described techniques. Other well known computing systems, environments, and/or configurations that may be suitable for use with the described techniques include, but are not limited to, personal computers, server computers, hand-held or laptop devices, multiprocessor systems, microprocessor-based systems, programmable consumer electronics, wireless communications equipment, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.


An implementation of the described techniques can be described in the general context of computer-executable instructions, such as program modules, executed by one or more computers or other devices. Generally, program modules include routines, programs, objects, components, data structures, etc. that perform particular tasks or implement particular abstract data types. Typically, the functionality of the program modules may be combined or distributed as desired in various embodiments.


An implementation of the described techniques can be stored on or transmitted across some form of computer readable media. Computer readable media can be any available media that can be accessed by a computer. By way of example, and not limitation, computer readable media may comprise computer storage media and communications media.


Computer storage media include volatile and non-volatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules, or other data. Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can be accessed by a computer.


Communication media typically embodies computer readable instructions, data structures, program modules, or other data in a modulated data signal such as carrier wave or other transport mechanism and includes any information delivery media. The term “modulated data signal” means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal. By way of example, and not limitation, communication media includes wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared, and other wireless media. Combinations of any of the above are also included within the scope of computer readable media.


Synchronized TCP Sources and Oscillations


The discussion in this section pertains to a simulation that helps to illustrate the oscillatory nature of the networking environment in which the inventive embodiments can be employed. The simulation that is described consists of the following: A single bottleneck link, with a capacity of 4000 packets per second (i.e., 32 Mb/s for a nominal packet size of 1 kB), carries some background, unreactive traffic, as shown in FIG. 3, which uses about 10% of the total bandwidth. In addition, 50 reactive users are competing for the remaining bandwidth. They all have a round-trip propagation delay equal to 0.1 second. Packets receive an ECN mark at the bottleneck resource if, upon their departure from the bottleneck queue, there are at least 10 packets queued behind them. The queue length is set sufficiently high (e.g. 500 packets), so that loss never occurs.


When all 50 users implement ECN-aware TCP, the queue size behaves as in FIG. 4. Synchronization and oscillatory behavior is clearly visible. To illustrate this effect further, consider the process given the number of marks generated by the bottleneck, sampled every millisecond (in which case there can be between 0 to 4 marks in an interval).



FIG. 5 plots the time and frequency analysis. The top left of the figure is the correlogram (the autocorrelation function), and the top right the corresponding periodogram (transform of the correlogram) for a 10-second snapshot of the data. The bottom left diagram is the raw Fast Fourier transform of the data, and the bottom right the energy levels of a discrete Wavelet transform using the Haar Wavelet, based on the finer initial sampling ensuring that the number of marks per interval is 0 or 1.


All of these figures convey the same message—there is a strong periodic component in the “marks” signal, with both positive and negative correlations, and the strongest period of oscillation in this set up is about 0.5 seconds (several round trip times). More precisely, from the periodogram, the strongest signal is at a frequency of 23 cycles per 10 seconds interval, so the period is 10/23=0.43 seconds. The wavelet decomposition was based on samples of 0.1 ms, and the strongest energy is at scale 12 (i.e. 212) which is related to a period of 0.4 seconds.


In practice, an individual only sees their own marks, and not the aggregate marks. This sampling produces a noisier signal and FIG. 6 illustrates this degradation of information using the correlogram and periodogram of the individual signals, which have smaller amplitudes than FIG. 5, but similar periods. In other words, the periodic structure remains, but estimating the period is harder for an individual user.


Smooth TCP


In congestion avoidance mode, TCP halves its congestion window cwnd when an ECN mark is received, and increases it by 1/cwnd when an unmarked acknowledgement is received. There are many possible ways to adapt these rules so as to reach the same equilibrium point, but in a smoother manner. The one that is used in the example simulation amounts to increasing cwnd by 1/(cwnd)2 when receiving an unmarked ACK (a logarithmic rather than linear increase), and decreasing it by ½ when receiving a mark before going into time-out mode (a subtraction, not a multiplicative decrease). Simple fluid models show that this indeed seeks the same equilibrium points as TCP sources, but with an adaptation rate divided by cwnd. The evolution of cwnd for TCP and Smooth TCP is displayed in FIG. 7. This will produce the same throughput if the marking probability is held fixed, but the marking behavior is itself affected by the load, as we conjecture that an aggregate of Smooth TCPs would generate a smoother load, leading to less bursty marking and hence to a lower marking rate for a given throughput.


Consider the same simulation as described above. The fair share for each one of the 50 users is about 72 packets per second. Table 1 (FIG. 8) gives the sent and marked packets as TCP is gradually replaced by smooth TCP. This illustrates how Smooth TCP does smooth the flow, in general increases the utilization with less marks, and typically has less marks and about 8% more throughput than each TCP flow.


The throughputs are stochastic, and FIG. 9 shows the individual sent and mark rates for the 50 flows in the case where 49 are normal TCP flows (left side) and where only one is a normal TCP flow (right side). Despite the variation in the individual values, the improvement achieved by replacing TCP sources by Smooth TCP sources is clear.


Predictive TCP


This section describes the inventive embodiment that provides a prediction scheme that enables end-users to infer, from their feedback history, the current network status. One way to think of the description that is given just below is as follows. As set forth above, network congestion is typically periodic in nature. That is, because of the dynamics of the network environment, congestive periods tend to have a fairly regular and repeatable period. Consider an analogy of a regular square wave that oscillates between 1 and 0, where 1 is considered as congestion and 0 is considered as non-congestion. The inventive approach described below looks at the periodic nature of the network congestion and then predicts the state of the network at some time in the future, based on this periodic nature. Thus, the inventive approach is able to ascertain, with a reasonable degree of certainty, where these square wave 1's and 0's are likely to occur.



FIG. 10 is a flow diagram that describes, generally, processing steps in accordance with the described embodiment. The method can be implemented in any suitable hardware, software, firmware, or combination thereof. In addition, the method can be implemented at any suitable location within a network computing environment, e.g. on a personal computing device, server, etc.


Step 1000 monitors network operating conditions that pertain to or, are indicative in some way of network congestion. These operating conditions can be any suitable conditions that are utilized now, or that might be utilized in the future. These operating conditions are embodied, in the present example, in the form of network feedback which, in the illustrated example, includes, without limitation, binary feedback messages such as packet loss events or notifications, or ECN marks. By monitoring for these conditions, periods of network congestion and non-congestive periods can be ascertained. Step 1002 estimates network congestion at some time in the future based upon the monitored operating conditions. That is, by observing the periods of congestion and non-congestion as evidenced by the operating conditions, the inventive method is able to predict periods of congestion in the future. Step 1004 calculates a confidence measure of the estimated network congestion. Any suitable confidence measure can be used. One particular statistical example of a confidence measure determination is given below. Step 1006 then ascertains whether, in view of the estimated network congestion (and, where appropriate, the confidence in that estimate), a packet is likely to encounter network congestion. If the estimation provided by step 1002 indicates that the packet is not likely to encounter network congestion, then step 1008 sends or transmits the packet. If, on the other hand, the estimation indicates that the packet is likely to be delayed, then step 1010 delays transmission of the packet. The packet can be delayed for any suitable time period, or until it appears that the estimations of the network congestion indicate that congestion will not likely be encountered by the packet. The method advantageously continuously monitors the operating conditions of the network so that the congestion estimates are timely.


Specific Implementation


The following discussion presents but one specific, particular way of implementing a feedback system in which predictive estimations regarding network congestion can be made and used to modify packet transmission activities. It is to be appreciated and understood that this constitutes but one example. Accordingly, other approaches can be utilized without departing from the spirit and scope of the claimed subject matter.


The task of predicting network congestion into the future can generally and mathematically be described as follows: given a set of time instants t1< . . . <tn, and corresponding signals Y(t1), . . . Y(tn) taking values in {0,1}, how to predict the value of the feedback Y(t) to be received at some later time t>tn? The desired strategies are to be implemented on-line, and thus should try to fit the simplest of patterns to the observed data. Namely, we try to match to the data a periodic profile of the following type:







Y


(
t
)


=

{



0





if





t

-

φ






mod


(


τ
0

+

τ
1


)






[

0
,

τ
0


)






1





if





t

-

φ






mod


(


τ
0

+

τ
1


)






[


τ
0

,


τ
0

+

τ
1



)










In order to forecast the feedback value at a future time t, we rely only on the following four variables, to be computed from the past observations: τ0, τ1 which are respectively, the estimates of the sojourn times in the 0 (uncongested) and 1 (congested) states; last_t, which is the estimate of the last time at which the feedback process changed from one state to another (i.e., jumped from 0 to 1, or from 1 to 0); and finally, last_state, which is the state the feedback process is supposed to have entered at time last_t. Based on these four variables, the following estimate is returned:








Y
^



(
t
)


=

{



0





if





last_state

=



0





and





t

-

last_t






mod


(


τ
0

+

τ
1


)






[

0
,

τ
0


)



,





0





if





last_state

=



1





and





t

-

last_t






mod


(


τ
0

+

τ
1


)






[


τ
1

,


τ
0

+

τ
1



)



,





1





if





last_state

=



0





and





t

-

last_t






mod


(


τ
0

+

τ
1


)






[


τ
0

,


τ
0

+

τ
1



)



,





1




if





last_state

=



1





and





t

-

last_t






mod


(


τ
0

+

τ
1


)







[

0
,

τ
1


)

.











The following rules are utilized for updating the variables τ01, last_t and last_state from new observations, i.e. at some time tn+1 where feedback Y(tn+1) is given to us. When the newly observed feedback Y(tn+1) and the previous one Y(t) coincide, no modification is made. When a state change has occurred, the following updates are made:













if






Y


(

t
n

)



=



0





and






Y


(

t

n
+
1


)









=



1


{







τ
0

=



(

1
-
ɛ

)



τ
0


+

ɛ
*


(


t
n

+

t

n
+
1



)

/
2


-
last_t


)

;







last_t
=


(


t
n

+

t

n
+
1



)

/
2


;







last_state
=

Y


(

t

n
+
1


)



;
























if






Y


(

t
n

)



=



1





and






Y


(

t

n
+
1


)









=



0


{





τ
1

=



(

1
-
ɛ

)



τ
1


+

ɛ
*

(



(


t
n

+

t

n
+
1



)

/
2

-
last_t

)










last_t
=


(


t
n

+

t

n
+
1



)

/
2


;







last_state
=

Y


(

t

n
+
1


)



;





















The motivation behind these equations is the following: given the two observations, say 0 and 1 at tn and tn+1, we assume only one state change in the feedback that has occurred between these two instants, and moreover, that it has occurred exactly at (tn+tn+1)/2, the middle point. From this, we assume we have observed a sojourn time in state 0 of exactly (tn+tn+1)/2−last_t; the update rule for τ0 is then the classical exponentially weighted moving average (EWMA) estimate of some assumed “true” sojourn time in state 0. The parameter ε could in principle take any value between 0 and 1. Taking it equal to 1 always uses the last sample as the current estimate. This is suitable in many situations where synchronization is such that most samples take the same value.


Thus, the processing described just above enables predictions of the likelihood that network congestion will be experienced at some time in the future. The inventive approach characterizes a profile that is associated with observable network congestion in terms of various parameters that are associated with the congestion. Based on this characterization, the profile of the congestion is projected mathematically into the future. As will be seen below, this projection of the congestion profile can then serve as the basis for altering user behavior, e.g. packet transmission.


Confidence Measures


In order to complement the above approach, in addition to predicting a value Ŷ(t), it has been found helpful to provide a measure of the confidence that one has in this prediction or estimation. In order to do so, we shall update estimates of the variances of the sojourn times in the states 0 and 1. Updates occur at times when a change of state is observed, and are done according to the EWMA equation, which will be understood and appreciate by those skilled in the art:





if Y(tn)=0 and Y(tn+1)=1, V0=(1−ε′)V0+ε′*((tn+tn+1)/2−lastt−τ0)2,





if Y(tn)=1 and Y(tn+1)=0, V1=(1−ε′)V1+ε′*((tn+tn+1)/2−last_t_τ1)2


Note that the parameter ε′ might differ from the previous parameter ε; indeed, in all the experiments reported in this document, ε′=½. We now evaluate the confidence we have in the estimate Y(t) given by the equation above. In doing so, the following statistical assumptions are made: the successive marking periods are iid, with mean τ1 and variance V1, and independent of the subsequent non-marking periods, which are again iid, with mean τ0 and variance V0. In addition, it is assumed that a change in state occurred exactly at last_t. The estimate Ŷ(t) would be fully reliable if the alternating marking and non-marking periods from last_t until t lasted for exactly their expected durations. Consider, for example, the situation depicted in FIG. 11, where the estimate Ŷ(t)=0 is returned, because it is assumed that t lies in an interval [t,t+) corresponding to a non-marking period. However, when their probability distribution has positive variance, the marking and non-marking time intervals will differ from their expected value. Again, from the example of FIG. 11, the non-marking period assumed to coincide with [t,t+] has slightly different end-points, i.e., it consists of [t+Δt,t++Δt+]. Here, under the statistical assumptions that have been made, the random variable Δt,Δt+ have respective variances V=2(V0+V1) and V+=2(V0+V1)+V0. The prediction Ŷ(t)=0 will surely be correct provided the following conditions hold:





Δt<t−t, and Δt+>t−t+.


By using Tchebitchev's inequality, the probability that these events do not occur is bounded above by:








P


(


Δ






t
-




t
-

t
-



)





V
-



(

t
-

t
-


)

2



,






P


(


Δ






t
+




t
-

t
+



)






V
+



(

t
-

t
+


)

2


.






If we make the further assumption that the distributions of the Δt variables is symmetric around zero, these upper bounds can be further divided by 2. Note also that the two events considered are mutually exclusive so that that probability of their union equals the sum of their probabilities.


Summarizing, we get the following estimate:









P


(



Y
^



(
t
)


=

Y


(
t
)



)




1
-

p
-

-



p
+

.




where







p
-




=


V
-


2



(

t
-

t
-


)

2




,


p
+

=



V
+


2



(

t
-

t
+


)

2



.






Formulas for the parameters t±, and V± are easily derived, so that this bound can effectively be computed. The resulting bounds, relying on the Tchebitchev inequality, may be quite loose. Sharper bounds are obtained by assuming the marking and non-marking durations are distributed according to a fixed probability distribution. For instance, assuming these durations are Gaussian, tighter bounds can be computed from quantiles of the standard normal distribution. The estimate Ŷ(t) together with the lower bounds on the probability that it is correct (thin line), which are a measure of the belief in the estimate Ŷ(t), resulting from either Tchebitchev inequality or Gauss distribution are plotted on FIG. 12.


Exemplary Congestion Control Application


The above-described method can be implemented in connection with end-user control systems that can advantageously affect performance. As will be seen, the inventive method can impact the performance for not only so-called “oscillation aware” users, but also user that are not “oscillation aware” as well.


Passive Predictor


Consider first the case when all 50 sources use standard ECN-aware TCP, and add a Predictor module to one source, which stores the values of τ0, τ1, last_t, last_state, V0, and V1, computed according to the previously described approach. However, this source decides when to send packets according to its TCP module, with no influence from the Predictor module.



FIGS. 13 and 14 show the successive estimates of τ0, τ1, respectively, with error bars of width √{square root over (2V0)}, √{square root over (2V1)} respectively. It clearly appears that the observed marking and non-marking durations coincide most of the time with a fixed value, which is an indication that the marking periods should be predictable. For instance, the marking durations typically last for 0.1 second, which is the round trip propagation delay of all 50 sources.



FIG. 15 displays the predicted and actual states of the packets sent by the tagged source, and FIG. 16 shows the associated belief.


Active Predictor


Now, a number of the sources are modified, denoted in further discussion as “Pred TCP” sources, in the following way. The sources still implement TCP, but when a packet would normally be sent at time t, TCP asks the predictor if this packet is likely to be marked. If the predicted value Ŷ(t) equals 1, and if the predictor is confident about this, i.e. if the quantities p and p+ computed as described above verify p+p+<σ, for some confidence level σ, the TCP is not entitled to send the packet, and has to wait for the next time when the predictor is no longer confident that a mark will be incurred.



FIG. 17 is a table that illustrates the impact of replacing TCP sources by Pred TCP sources.



FIG. 18 is a graph of the global rates for varying numbers of Pred TCP sources. Notice that, although replacing TCP sources with Pred TCP sources marginally reduces the overall utilization, it increases the rate at which packets not receiving marks are sent.



FIG. 19 is a graph of the individual rates for varying numbers of Pred TCP sources. Notice that the graph indicates that by replacing TCP sources with Pred TCP sources, both the TCP sources and the Pred TCP sources increase their sending rate. Finally, FIG. 20 illustrates the impact of replacing TCP sources by Pred TCP sources on the marking rates. In particular, Pred TCP sources get a slightly smaller marking rate than TCP sources do, but their introduction lowers the marking rate achieved by the TCP sources. Hence, the experimental results show that it is possible to achieve an improvement on TCP by getting a smaller marking rate, while still being “TCP-friendly”, in that the improvement is shared with the TCP sources. Note also that reactivity has not been sacrificed, as was the case with Smooth TCP. Interestingly, FIG. 20 shows that background traffic typically receives the smallest marking rate. Hence, lack of reactivity seems to pay here as it did with Smooth TCP.



FIG. 21 shows a protocol layering scheme 2100 that describes the conceptual layering of various components in an exemplary predictive system. A packet classifier 2102 includes a packet scheduler 2104 that schedules packets for sending over a network, such as the Internet. TCP 2106 resides above IP 2108 in the layering scheme and generates IP packets that are scheduled by the packet scheduler 2104 on the network interface. A predictive algorithm component 2110 resides above TCP 2106 and operates as described above in connection with information that is received from the network. A predictor module 2112 is linked with the packet scheduler 2104 so that information developed by the predictor can be used by the packet scheduler 2104 to delay or schedule packets relative to the predicted congestion situation. This allows TCP to operate as usual—that is, TCP simply creates the packets for transmission which are then managed by the packet scheduler 2104. The packet scheduler 2104 then reacts to the information that is provided to it by the predictor 2112.


It is to be understood that the above-described system can be utilized in connection with other protocols, and not necessarily just TCP, e.g. ECN streaming protocols and the like.


The embodiment described above thus enables prediction of congestion periods in a telecommunications network, such as the Internet, so that the rate at which data is sent into the network can be altered. One benefit to the end-system or end-user is an improved “goodput” (effective throughput); and, the benefit to the network is improved efficiency/utilization and overload prevention. If congestion were mediated to the user via some form of congestion pricing, then the benefit to the user would also be a decreased price for a given throughput.


The embodiment described above can be implemented in a number of ways. For example, an application can be provided on a computer which reacts to congestion information in the form of lost packets, or in a specific implementation, ECN marks, by predicting congestion intervals and sending packets at a low rate 7 when congestion is predicted, and at a higher rate when the congestion is unlikely. Alternately, a programmed device can be provided between a computer (or a plurality of computers, a LAN, etc.) and a network, and estimate congestion periods, and interrupt the sending rate of the computer (or plurality of computers, LAN, etc.). In a specific implementation, this could be achieved by delaying the acknowledgement (ACKs) of packets at the transport layer. This is can be applicable to a single channel or an aggregate of channels.


CONCLUSION

The described embodiment can be utilized to reduce oscillations in network 17 resource utilization by modifying the congestion avoidance behavior of some sources. By introducing modified sources, benefits can be enjoyed by all sources—even those that still use standard TCP implementations.


Although the invention has been described in language specific to structural features and/or methodological steps, it is to be understood that the invention defined in the appended claims is not necessarily limited to the specific features or steps described. Rather, the specific features and steps are disclosed as preferred forms of implementing the claimed invention.

Claims
  • 1. A method of processing data packets comprising: predicting network congestion; anddelaying transmission of data packets intended to be transmitted over the network in view of the predicted network congestion.
  • 2. The method of claim 1, wherein said predicting comprises receiving feedback from the network and predicting congestion based upon the feedback.
  • 3. The method of claim 2, wherein said feedback comprises binary feedback messages.
  • 4. The method of claim 2, wherein said feedback comprises data pertaining to packet loss events.
  • 5. The method of claim 2, wherein said feedback comprises data pertaining to ECN marks.
  • 6. The method of claim 1, wherein said delaying comprises delaying data packet transmission from an end-user's computer.
  • 7. The method of claim 1, wherein the network congestion is periodic in nature, and delaying comprises delaying data packet transmission from an end-user's computer.
  • 8. The method of claim 1, wherein the data packets are generated in accordance with TCP.
  • 9. One or more computer-readable media having computer-executable instructions thereon which, when executed by one or more computers, implement the method of claim 1.
  • 10. One or more computers configured to implement the method of claim 1.
  • 11. One or more servers configured to implement the method of claim 1.
  • 12. One or more network devices configured for placement between one or more end user computers and a network, and being configured to implement the method of claim 1.
  • 13. One or more computer-readable media having computer-executable instructions thereon which, when executed by one or more end user computers, cause the computer(s) to: predict network congestion using feedback received from the network, the feedback taking the form of one or more of (a) data pertaining to packet loss events and (b) data pertaining to ECN marks; anddelay transmission of data packets from an end user's computer in view of the predicted network congestion.
  • 14. A method of operating within a network comprising: monitoring network operating conditions that pertain to network congestion; andestimating network congestion at some time in the future based upon the monitored operating conditions.
  • 15. The method of claim 14, wherein said monitoring takes place from an end user's computer.
  • 16. The method of claim 14, wherein said monitoring comprises receiving feedback from the network.
  • 17. The method of claim 16, wherein said feedback comprises binary feedback messages.
  • 18. The method of claim 16, wherein said feedback comprises data pertaining to packet loss events.
  • 19. The method of claim 16, wherein said feedback comprises data pertaining to ECN marks.
  • 20. The method of claim 14, wherein said operating conditions pertain to congestion that has a periodic nature.
  • 21. The method of claim 14 further comprising calculating a confidence measure of the estimated network congestion, the confidence measure providing a degree of confidence that network congestion will occur at said future time.
  • 22. The method of claim 21 further comprising ascertaining, in view of the estimate and the confidence measure, whether a data packet is likely to encounter network congestion.
  • 23. The method of claim 22 further comprising transmitting a data packet if network congestion is not likely, and delaying a packet if network congestion is likely.
  • 24. The method of claim 14 further comprising ascertaining, in view of the estimate, whether a data packet is likely to encounter network congestion.
  • 25. The method of claim 24 further comprising transmitting a data packet if network congestion is not likely, and delaying a packet if network congestion is likely.
  • 26. One or more computer-readable media having computer-executable instructions thereon which, when executed by one or more computers, implement the method of claim 14.
  • 27. One or more computers configured to implement the method of claim 14.
  • 28. A method of operating within a network comprising: monitoring, with an end-user's computer, network operating conditions that pertain to network congestion;estimating network congestion at some time in the future based upon the monitored operating conditions;calculating a confidence measure of the estimated network congestion, the confidence measure providing a degree of confidence that network congestion will occur at said future time;ascertaining, in view of the estimate and the confidence measure, whether a data packet to be sent from the user's computer is likely to encounter network congestion; andtransmitting a data packet if network congestion is not likely, otherwise, delaying a packet if network congestion is likely.
  • 29. One or more computer-readable media having computer-executable instructions thereon which, when executed by one or more end user computers, cause the computer(s) to: monitor network operating conditions that pertain to network congestion by receiving feedback from the network in the form of binary messages, the operating conditions pertaining to congestion that is periodic in nature;estimate network congestion at some time in the future based upon the monitored operating conditions;calculate a confidence measure of the estimated network congestion, the confidence measure providing a degree of confidence that network congestion will occur at said future time;ascertain, in view of the estimate and the confidence measure, whether a data packet is likely to encounter network congestion; andtransmit a data packet if network congestion not likely, otherwise delay packet if network congestion likely.
  • 30. A method of processing data packets comprising: estimating a future state of a network based on past observations of a plurality of variables, the network being capable of assuming an uncongested state and a congested state as a future state; anddelaying transmission of one or more data packets if the network is estimated to have a future congested state.
  • 31. The method of claim 30, wherein said estimating and delaying are implemented on an end user's computer.
  • 32. One or more computer-readable media having computer-executable instructions thereon which, when executed by one or more computers, implement the method of claim 30.
  • 33. A system configured to process data packets comprising: one or more protocol modules for generating data packets that are to be sent over a network;a packet scheduler for scheduling data packets generated by the protocol modules for transmission over the network; anda predictor module configured to monitor network operating conditions that pertain to network congestion and estimate network congestion at some time in the future based upon the monitored operating conditions, the predictor module further providing information to the packet scheduler that can be used by the packet scheduler to delay packet transmission if it appears likely that there will be network congestion at said future time.
  • 34. The system of claim 33 embodied on an end-user's computer.
  • 35. The system of claim 33 not embodied on an end-user's computer.
  • 36. The system of claim 33 embodied between an end-user's computer and the network.
  • 37. The system of claim 33, wherein the one or more protocol modules comprise a TCP module.
  • 38. The system of claim 33, wherein the network comprises the Internet.
RELATED APPLICATION

This application is a continuation of and claims priority to U.S. patent application Ser. No. 09/654,737, the disclosure of which is incorporated by reference herein.

Continuations (1)
Number Date Country
Parent 09654737 Sep 2000 US
Child 10857687 US