Adaptive service weight assignments for ATM scheduling

Information

  • Patent Grant
  • 6434160
  • Patent Number
    6,434,160
  • Date Filed
    Monday, October 16, 2000
    23 years ago
  • Date Issued
    Tuesday, August 13, 2002
    22 years ago
Abstract
A system and method for adaptively assigning queue service weights to an ATM traffic management controller in order to reduce service weight update calculations. The implementation of a fair weighted queuing scheme on a network is divided into two functions: queue arbitration; and queue weight configuration. Queue arbitration is performed via a virtual time-stamped fair queuing algorithm. The queue weight configuration is performed via a reconfigurable weighted fair queuing controller wherein bandwidth requirements are calculated in response to connection setup and release values.
Description




FIELD OF THE INVENTION




This invention relates to asynchronous transfer mode (ATM) traffic management processes and more particularly to an adaptive service weight assignment algorithm for an ATM traffic manager.




BACKGROUND




The ATM forum traffic management specification currently defines five service categories which classify traffic according to source behavior and quality of service guarantees. The five service categories are: constant bit rate (CBR), real time variable bit rate (rtVBR), non-real time variable bit rate (nrtVBR), available bit rate (ABR) and unspecified bit rate (UBR). The quality of service classifications are: cell delay variation (CDV), cell transfer delay (CTD), and cell loss ratio (CLR). In order to guarantee the quality of service, a network element must employ a versatile and robust scheduling algorithm which is capable of servicing many queues in a fair manner. Simple scheduling disciplines such as exhaustive round-robin (ERR) were sufficient for system with only two queues, but as the number of queues increases to three and more, ERR may result in starvation of the lower priority queues.




S. GOLESTANI “A Self-clocked Fair Queuing Scheme for Broadband Applications” INFOCOM 1994 describes a queue scheduling algorithm, weighted fair queuing (WFQ) which has been adopted by industry vendors of ATM equipment. This scheduling scheme is capable of servicing any number of queues, while providing fair and work-conserving access to bandwidth. One of the key features of WFQ is that the CDV and CTD are bounded for any queue as long as it is given an appropriate weight.




The calculation of an appropriate service weight for a queue is performed given parameters which define the source behavior of all member connections and the defined quality of service for the queue. The device which performs this calculation (WFQ Control) currently operates according to one of the following two disciplines:




On the addition or removal of a connection from the queue, a new service weight is calculated, and the update is downloaded to the WFQ arbiter; or




Service weights are configured for each queue and downloaded to the WFQ arbiter by a network management entity, and connections are rejected by the network element if it is determined that quality of service guarantees will be violated by the addition of the connection.




Both of these current disciplines are not desirable in an ATM LAN Emulation (LANE) environment. The first discipline is undesirable because it requires that new service weights be downloaded on every connection setup. Given the fact that the service weight download operation is real-time expensive, this has an adverse affect on call setup performance. In a LANE environment, in which bandwidth is provided on demand, call setup is very frequent, and a low call setup rate has an adverse effect on network performance. The second discipline is not desirable because the network operator may not be able to predict the demand for a particular service category. The network would require constant monitoring and maintenance in order to ensure that the service partitions reflect demand.




The present invention provides an adaptive queue service weight scheme in the WFQ Control device which minimizes the number of service weight updates, and converges to a bandwidth partition between queues which is representative of demand.




SUMMARY OF THE INVENTION




Therefore in accordance with a first aspect of the present invention there is provided a system for implementing an adaptive service weight assignment algorithm in an ATM traffic manager, the system comprising; queue arbitration means to assign service weights to connections in proportion to bandwidth demands, and queue weight configuration means to process service traffic in accordance with assigned weights.




In accordance with a second aspect of the present invention there is provided a method of assigning fair weight queuing values to service connections in an ATM traffic manager, the method comprising: evaluating each queue in a plurality of service queues and assigning a time incremented weighted value to each queue; and establishing a connection for each queue on the basis of the weighted value.











BRIEF DESCRIPTION OF THE DRAWINGS




The invention will now be described in greater detail with reference to the attached drawings wherein

FIG. 1

is a flow diagram of information flow from the call processor to the queue arbiter driver;





FIG. 2

illustrates the initialization algorithm;





FIG. 3

illustrates the WFQ Control request for bandwidth algorithm; and





FIG. 4

illustrates the WFQ Control bandwidth release algorithm.











DETAILED DESCRIPTION OF THE INVENTION




The implementation of WFQ is divided into two functions: queue arbitration; and parameter (queue weight) configuration.




Queue arbitration is performed via a virtual time-stamped fair queuing (VSFQ) algorithm. The algorithm in the present application is for an architecture in which backpressure may be asserted on a per port basis.




Queue weight configuration is performed in software in response to connection setup and release events. The bandwidth demand of a queue is calculated explicitly by the Connection Admission Control and the information is passed to the WFQ Control. WFQ Control converts the bandwidth requirement into queue weights, and downloads new configuration values if necessary.




The VSFQ algorithm arbitrates between output queues by maintaining a virtual time-stamp for each queue. Each time that a queue is serviced, the time-stamp for that queue is incremented by a pre-configured queue weight. The output queue with the lowest time-stamp is the one which is serviced on the next output cycle.




The VSFQ algorithm is described below for an implementation in which backpressure is asserted from the line card towards the arbitration ASIC. An implementation which does not use backpressure signals is a subset of the algorithm below. Note that in this algorithm, backpressure is asserted on a per port basis, and it therefore affects all queues that feed onto that port.




A distinction is made between queues which service real-time traffic and those which service non-real-time traffic (through the variable rt


ij


). A cell which arrives in an empty real-time queue is serviced immediately, and one which arrives in an empty non-real-time queue is serviced after the time increment period of the queue.




The algorithm described below operates on a single output path from the switching chip. Within a given output cycle, this algorithm is repeated for each output path from the switching core. Define i to represent a port, and j a service queue dedicated to that port. Define the following parameters:





















Q


ij






service queue, j, for port I.







N


ij






number of cells in Q


ij









R


ij






time increment value (weight) for Q


ij


.







s


ij






present time stamp for Q


ij


.







s


now






current virtual time.







b


i






backpressure status for Q


ij


, for all j.







rt


ij






Qij services real-time traffic (i.e. rt


ij


= 1








means rt-designated).















a) Initialization




for all ij{




sij = 0




}




snow = 0;




b) Cell arrival at Q


ij






if (Nij == 0){




if (bi == 0){




if (rtij == 1){




sij = Rij;




} else {




sij =Rij + snow;




}




} else {




if (rtij == 1){




sij = 0;




} else {




sij = Rij;




}




}




}




Nij++;




c) Service time




select minimum sij, for ((Nij>0)&&(bi == 0));




snow =sij;




Nij--;




sij = sij + Rij;




d) Backpressure cleared on port i




for all j {




sij -= snow;




}




bi =1;




e) Backpressure cleared on port i




for all j {




sij=+ snow;




bi = 0;




The configurable parameters for the VSFQ algorithm are the queue weights 1/R


ij


. Each service queue is assigned a weight so that the cell loss and delay statistics for that queue satisfy the requirements of the most demanding connection which occupies that queue. It follows from this that connections with similar quality of service (QoS) requirements are grouped in the same service queue.




The following is a minimal description of the software architecture needed to understand the flow of information; a description of the performance observations and design requirements which drive the design of the configuration algorithm; a description of the software components; and a proposal for an algorithm to minimize the number of queue weight update messages.




The key software components in the queue weight update path are: Call Control; CAC; WFQ Control; and the Arbiter Driver.

FIG. 1

illustrates the flow of information from Call Processing to the queue Arbiter driver.




When a connection is established or released, Call Control


12


requests resources from Connection Admission Control (CAC)


14


. CAC


14


calculates the required bandwidth and buffer based on QoS requirements (CDV, CTD, and CLR), and either admits or rejects the connection. The required bandwidth and the service queue index is then downloaded from CAC


14


to WFQ Control


16


which, if necessary, downloads one or more new queue weights to the Arbiter


18


.




The following describes the performance observations and resulting design requirements of the weight allocation scheme.




OBSERVATIONS




1. The service rate of a real-time queue will generally need a bandwidth allocation of ≧ ΣPCR (Peak Cell Rate) to meet the cell delay requirements. Due to cell level congestion (simultaneous arrival of cells from independent sources) the bandwidth demand on a shared queue servicing real-time traffic is greater than ΣPCR for transient periods of time. A queue servicing at ΣPCR therefore experiences greater cell delay than one servicing at greater than ΣPCR.




2. WFQ arbitration can be used to produce different maximum cell delay statistics in two or more real-time queues. ERR does not provide this flexibility. As a result, more than one real-time queue may be configured per output port, each supporting a different QoS. Real-time occupancy is then increased by intelligently distributing real-time traffic between the real-time queues. The impact of this point is that there is an advantage for weights to be reconfigurable for real-time queues.




3. The cell loss statistics of non-real-time queues are not significantly affected by the bandwidth allocation to real-time queues in the range [ΣPCR,LR] (LR =line rate). The significance of this point is that bandwidth may be allocated to non-real-time queues assuming that only ΣPCR were allocated to the real-time queues.




The following design requirements follow from these observations.




1: The allocation of bandwidth to real-time queues may not exceed LR.




2: The allocation of bandwidth to non-real-time queues may not exceed LR - ΣPCR (of real time queues.)




3: CAC must communicate to WFQ Control the bandwidth requirement and ΣPCR for real-time queues.




4: Although the observation 1 would suggest that an assignment of LR to all real-time queues may be sufficient (i.e. a time increment value of zero to each real-time queue, and therefore exhaustive round-robin between real-time queues), observation 2 indicates that benefit can be derived from actively setting the weights on real-time queues.




The following describes how real time bandwidth requirements are specified.




It follows from design requirement 3 that real-time queues have two bandwidth requirements: one which represents the average bandwidth utilized; and one which represents the maximum bandwidth utilized during transient periods. These requirements are defined as steady-state and transient respectively.




In order to implement an algorithm by which these two requirements are met, two bandwidth totals are maintained: the steady-state total; and the transient total. Bandwidth is said to be allocated from the steady state and transient pools.




The variable, trBW, is defined to represent the transient bandwidth required for a given queue. Table 1 lists the values for trBW for different service categories. The calculation of trBW is performed by CAC.















TABLE 1











Service Category




trBW













CBR




≧ΣPCR







rtVBR




≧ΣPCR







nrtVBR




0







ABR




0







UBR




0















The variable, ssBW, is defined to represent the steady-state bandwidth required for a particular queue. Table 2 lists the values for ssBW for different service categories.















TABLE 2











Service Category




ssBW













CBR




ΣPCR







rtVBR




ΣPCR







nrtVBR




ΣVBW







ABR




ΣMCR







UBR




ΣMCR















The virtual bandwidth (VBW) of a connection represents the dedicated rate required so that the connection does not cause the queue to overflow.




With the addition of each connection, CAC downloads both the transient and steady-state BW requirements to WFQ Control. It is the responsibility of WFQ Control to ensure that the weights are calculated to satisfy both bandwidth demands.




The following describes a high level description of the method by which CAC calculates bandwidth to be downloaded to WFQ Control.




The bandwidth dedicated to the real-time traffic in the transient pool is chosen so as to meet cell loss ratio (CLR), cell transfer delay (CTD), and cell delay variation (CDV) thresholds. CBR connections calculate the maximum utilization recommended in a line before one of the quality of service thresholds is violated. Modifying this approach to queue weight calculation, one can calculate the service rate required, given the current occupancy of CBR traffic. This service rate is generally greater than or equal to ΣPCR, and is used as the transient bandwidth requirement for the CBR queue. A similar approach is taken for rtVBR traffic.




The allocation of bandwidth for real-time queues in the steady-state pool is given as ΣPCR.




The bandwidth dedicated to non-real-time traffic in the steady-state pool is chosen so as to guarantee a certain sustained cell rate, and in the case of nrtVBR traffic, to meet the CLR criterion. The allocation of bandwidth to the nrtVBR queue follows the virtual bandwidth approach.




WFQ Control is responsible for calculating the time increment values for input into the VSFQ algorithm. The queue weights are set in order to represent the bandwidth distribution in each of the transient and steady-state pools.




The steady-state pools contain a total bandwidth allocation for all connections which sum to the line rate, LR






LR
=



i



(


ssBW
i

+

ssSpare
i


)












where ssSpare


i


is the steady-state spare bandwidth allocated to queue i. The transient pool contains a total bandwidth allocation for non-real-time traffic, trTnrt, and a total bandwidth allocation for real-time traffic, trTrt, which sum to the line rate.






LR
=

trTrt
+
trTnrt





trTrt
=





i
ε


rt





(


trBW
i

+

trSpare
i


)

.












where trSpare


i


is the transient spare bandwidth allocated to queue i. Undefined in the above equation is trTnrt because non-real-time queues do not require transient bandwidth (observation 3). The specification of trTnrt is therefore driven by the dimensioning of the R


i


registers in hardware. It is desirable to have equal granularity for both the steady-state and transient pools. If the size of the R


i


register in hardware is n bits, then hardware scaling constants, k


rt


and k


nrt


, are defined for real-time and non-real-time queues respectively, such that R


i


values for real-time queues are given by








R
i

=


k
rt



trBW
i

+

trSpare
i




,






k
rt

=
LR











and for non-real-time queues is given by









R
i

=

k
nrt




ssBW
i

=

ssSpare
i



,






k
nrt

=


2

n
/
2




XLR
.













The minimum bandwidth assigned to a queue is then defined to be minW=LR/2


n/2


. As a result, time increment values for real-time queues are in the range [1, 2


n/2


], and for non-real-time queues are in the range [2


n/2


2


n


]. The value of trTnrt is then given by LR/2


n/2


(the minimum value), and trTrt is fixed at (1-2


n/2


)LR. This represents a value of trTrt = 0.999LR for a 20 bit R register.




The specification of ssBW


i


and trBW


i


is performed by CAC. The allocation of spare bandwidth between the queues is performed in pursuit of one of the following two mutually exclusive design goals.




1. The minimum bandwidth required to satisfy the QoS requirements is allocated to real-time and nrtVBR traffic, and all remaining (spare) bandwidth is allocated to UBR and ABR queues. This is the traffic performance optimal solution.




2. Spare bandwidth is distributed between the service queues so as to minimize the number of queue weight downloads while still guaranteeing the QoS requirements of real-time and nrtVBR queues. This is the call setup performance optimal solution.




The allocation of spare bandwidth to satisfy 1 is trivial. An algorithm to achieve the bandwidth allocation to satisfy 2 is provided below.




When a new bandwidth demand for a queue is received from CAC, WFQ Control determines whether the demand can be met by the existing queue weights by comparing the request with the spare part allocated to the queue. If the demand is less than the spare part, then the spare bandwidth for the queue is reduced. No weight update is necessary. If the demand cannot be met, spare bandwidth is extracted from all queues in equal proportion, and a new weight is calculated for the queue. When bandwidth is returned to a queue (through a connection release,) the queue weight is not changed, and the spare bandwidth for the queue is increased by the released bandwidth.




A feature of this algorithm is that spare bandwidth is allocated to queues which have most recently used that bandwidth. This is an adaptive characteristic in which the switch-converges to a spare bandwidth distribution which reflects actual demand.




The initialization of WFQ Control is performed by CAC, which configures the number of service queues, the total free bandwidth to be shared by all service queues, and the service type of each service queue (real-time or non-real-time). The free bandwidth is distributed equally within the transient and steady-state pools, and the weights for all queues are downloaded to the arbiter driver.

FIG. 2

illustrates this initialization.





FIG. 3

illustrates the algorithm performed by WFQ Control when additional bandwidth is requested by CAC. In this figure ssspare(i) and trspare(i) represent respectively the steady-state and transient spare bandwidth allocated to queue i, ssTnrt is the total bandwidth in the steady-state pool allocated to non-real-time queues, ssSpareTotal and trSpareTotal are the total spare bandwidth in the steady state and transient pools respectively, ssBW(i) and trBW(i) represent respectively the steady-state and transient bandwidth allocated to queue i, and ssNew and trNew are the incremental steady-state and transient BW demands. In the implementation of this algorithm, multiple queue weights would be downloaded in the same message.




When CAC informs WFQ Control that a connection has been released, that bandwidth is placed in the spare parts of the associated service queue. The algorithm is illustrated in FIG.


4


.




While a particular embodiment of the invention has been described and illustrated it will be apparent to one skilled in the art to which the invention pertains that many alternatives and variations can be effected. It is to be understood that such alternatives and variations will come within the scope of the invention as defined by the attached claims.



Claims
  • 1. A method of controlling the assignment of respective service weights by a call processor to multiple queues at a queuing point in a digital communications system, the queuing point including an arbiter providing fair arbitration between said multiple queues in accordance with respective service weights, the method comprising:determining, at the call processor, a bandwidth requirement associated with a new service event respecting one of said multiple queues; determining whether the bandwidth requirement can be accommodated by the service weight currently allocated to said one of said multiple queues; and if said bandwidth requirement can not be accommodated by the currently allocated service weights, calculating new service weight information and downloading said new service weight information to said arbiter.
  • 2. The method as defined in claim 1 wherein said bandwidth requirement associated with the new service event is determined by a Call Admission Control in said call processor.
  • 3. The method as defined in claim 2 wherein the bandwidth requirement is determined in a Weighted Fair Queuing (WFQ) controller at the call processor.
  • 4. The method as defined in claim 3 wherein said new service event is the set up of a new service connection and said determined bandwidth requirement represents an increase in bandwidth required by said one of said multiple queues.
  • 5. The method as defined in claim 3 wherein said new service event is the tearing down of an existing service connection and said determined bandwidth represents a release of bandwidth.
  • 6. The method as defined in claim 4 wherein said increase in bandwidth requirements includes bandwidth for a real time connection.
  • 7. The method as defined in claim 6 wherein said increase in bandwidth includes bandwidth dedicated to steady state requirements.
  • 8. The method as defined in claim 6 wherein said increase in bandwidth also includes bandwidth dedicated to transient requirements.
  • 9. The method as defined in claim 6 wherein said increase in bandwidth requirements includes bandwidth for a non real time connection.
  • 10. The method as defined in claim 1 wherein said step of determining whether the bandwidth requirement can be accommodated by the service weight currently allocated is implemented by comparing the bandwidth requirement with a spare bandwidth allocated to said one of said multiple queues.
  • 11. The method as defined in claim 10 wherein if the requirement is less than the spare bandwidth the spare bandwidth allocated to said one of said multiple queues is reduced.
  • 12. The method as defined in claim 10 wherein if the requirement can not be accommodated spare bandwidth is extracted from all of said queues in equal proportion and a new service weight is calculated for said queue.
  • 13. The method as defined in claim 5 wherein said release in bandwidth is returned to said queue as spare bandwidth.
  • 14. The method as defined in claim 13 wherein spare bandwidth is allocated to queues which have most recently had bandwidth extracted therefrom.
  • 15. A system for controlling the assignment of respective service weights to multiple queues at a queuing point in a digital communications system, comprising:an arbiter at the queuing point to provide fair arbitration between the multiple queues in accordance with respective service weights; means to determine a bandwidth requirement associated with a new service event respecting one of said multiple queues and for determining whether the bandwidth requirements can be accommodated by a service weight currently allocated to said one of said multiple queues; means to calculate new service weight information for said queues if said bandwidth requirement can not be accommodated by the service weight currently allocated to said one of said multiple queues; and means to download said new service weight to said arbiter.
  • 16. A system as defined in claim 15 having a Connection Admission Controller (CAC) to determine the bandwidth requirement associated with a new service event.
  • 17. A system as defined in claim 16 wherein said CAC downloads incremental values for steady state bandwidth requirements and incremental values for transient bandwidth requirements associated with a new service event.
  • 18. A system as defined in claim 17 wherein a weighted fair queing (WFQ) controller maintains lists of information relating to respective queues.
  • 19. A system as defined in claim 18 wherein said lists include; queue identification, required steady state and transient bandwidth for respective queues, spare steady state and transient bandwidth for respective queues, and a weighting factor for each.
  • 20. A system as defined in claim 15 wherein said digital network is an Asynchronous Transfer Mode (ATM) network.
Parent Case Info

This is a continuation of U.S. Ser. No. 08/880,284, filed Jun. 24, 1997 and now U.S. Pat. No. 6,157,654.

US Referenced Citations (12)
Number Name Date Kind
5517495 Lund et al. May 1996 A
5533020 Byrn et al. Jul 1996 A
5577035 Hayter et al. Nov 1996 A
5745490 Ghurfran et al. Apr 1998 A
5748614 Wallmeier May 1998 A
5748629 Caldara et al. May 1998 A
5805577 Jain et al. Sep 1998 A
5872769 Caldara et al. Feb 1999 A
5883895 Davis et al. Mar 1999 A
5889779 Lincoln Mar 1999 A
6229812 Parruck et al. May 2001 B1
6262986 Oba et al. Jul 2001 B1
Continuations (1)
Number Date Country
Parent 08/880284 Jun 1997 US
Child 09/688192 US