Routing and wavelength assignment

The routing and wavelength assignment (RWA) problem is an optical networking problem with the goal of maximizing the number of optical connections.

Definition

The general objective of the RWA problem is to maximize the number of established connections. Each connection request must be given a route and wavelength. The wavelength must be consistent for the entire path, unless the usage of wavelength converters is assumed. Two connections requests can share the same optical link, provided a different wavelength is used.

The RWA problem can be formally defined in an integer linear program (ILP). The ILP formulation given here is taken from.[1]

Maximize:

C_0(\rho,q) = \sum_{i=1}^{N_{sd}} m_i

subject to

m_i \geq 0, integer, i = 1, 2, ..., N_{sd}
c_{ij} \in {0,1}, i = 1, 2, ..., P, j = 1, 2, ..., W
C^TB \leq l_{W \times L}
m \leq 1_WC^TA
m_i  \leq q_i\rho, i = 1, 2, ..., N_{sd}

N_{sd} is the number of source-destination pairs, while m_i is the number of connections established for each source-destination pair. L is the number of links and W is the number of wavelengths. P is the set of paths to route connections. A:P \times N_{sd} is a matrix which shows which source-destination pairs are active, B:P \times L is a matrix which shows which links are active, and C:P \times W is a route and wavelength assignment matrix.

Note that the above formulation assumes that the traffic demands are known a priori. This type of problem is known as Static Lightpath Establishment (SLE). The above formulation also does not consider the signal quality.

It has been shown that the SLE RWA problem is NP-complete in.[2] The proof involves a reduction to the n-graph colorability problem. In other words, solving the SLE RWA problem is as complex as finding the chromatic number of a general graph. Given that dynamic RWA is more complex than static RWA, it must be the case that dynamic RWA is also NP-complete.

Another NP-complete proof is given in.[3] This proof involves a reduction to the Multi-commodity Flow Problem.

The RWA problem is further complicated by the need to consider signal quality. Many of the optical impairments are nonlinear, so a standard shortest path algorithm can't be used to solve them optimally even if we know the exact state of the network. This is usually not a safe assumption, so solutions need to be efficient using only limited network information.

Methodology

Given the complexity of RWA, there are two general methodologies for solving the problem:

First routing, then wavelength assignment

Routing algorithms

Fixed path routing

Fixed path routing is the simplest approach to finding a lightpath. The same fixed route for a given source and destination pair is always used. Typically this path is computed ahead of time using a shortest path algorithm, such as Dijkstra's Algorithm. While this approach is very simple, the performance is usually not sufficient. If resources along the fixed path are in use, future connection requests will be blocked even though other paths may exist.

The SP-1 (Shortest Path, 1 Probe) algorithm is an example of a Fixed Path Routing solution. This algorithm calculates the shortest path using the number of optical routers as the cost function. A single probe is used to establish the connection using the shortest path. The running time is the cost of Dijkstra's algorithm: O(m+n\log n), where m is the number of edges and n is the number of routers. The running time is just a constant if a predetermined path is used.

This definition of SP-1 uses the hop count as the cost function. The SP-1 algorithm could be extended to use different cost functions, such as the number of EDFAs.

Fixed alternate routing

Fixed alternate routing is an extension of fixed path routing. Instead of having just one fixed route for a given source and destination pair, several routes are stored. The probes can be sent in a serial or parallel fashion. For each connection request, the source node attempts to find a connection on each of the paths. If all of the paths fail, then the connection is blocked. If multiple paths are available, only one of them would be utilized.

The SP-p (Shortest Path, p Probes, p > 1) algorithm is an example of Fixed Alternate Routing. This algorithm calculates the p shortest paths using the number of optical routers as the cost function. The running time using Yen's algorithm [4] is O(pn(m+n\log n)) where m is the number of edges, n is the number of routers, and p is the number of paths. The running time is a constant factor if the paths are precomputed.

Adaptive routing

The major issue with both fixed path routing and fixed alternate routing is that neither algorithm takes into account the current state of the network. If the predetermined paths are not available, the connection request will become blocked even though other paths may exist. Fixed Path Routing and Fixed Alternate Routing are both not quality aware. For these reasons, most of the research in RWA is currently taking place in Adaptive algorithms. Five examples of Adaptive Routing are LORA, PABR, IA-BF, IA-FF, and AQoS.

Adaptive algorithms fall into two categories: traditional and physically aware. Traditional adaptive algorithms do not consider signal quality, however, physically aware adaptive algorithms do.

Traditional adaptive RWA

The lexicographical routing algorithm (LORA) algorithm was proposed in.[5] The main idea behind LORA is to route connection requests away from congested areas of the network, increasing the probability that connection requests will be accepted. This is accomplished by setting the cost of each link to be  cost(l) = \beta^{usage(l)} where \beta is parameter that can be dynamically adjusted according to the traffic load and usage(l) is the number of wavelengths in use on link l. A standard shortest path algorithm can then be used to find the path. This requires each optical switch to broadcast recent usage information periodically. Note that LORA does not consider any physical impairments.

When \beta is equal to one, the LORA algorithm is identical to the SP algorithm. Increasing the value of \beta will increase the bias towards less used routes. The optimal value of \beta can be calculated using the well-known hill climbing algorithm. The optimal values of \beta were between 1.1 and 1.2 in the proposal.

Physically aware adaptive RWA

The physically aware backward reservation algorithm (PABR) is an extension of LORA. PABR is able to improve performance in two ways: considering physical impairments and improved wavelength selection. As PABR is searching for an optical path, paths with an unacceptable signal quality due to linear impairments are pruned. In other words, PABR is LORA with an additional quality constraint.

Note that PABR can only consider linear impairments. The nonlinear impairments, on the other hand, would not be possible to estimate in a distributed environment due to their requirement of global traffic knowledge.

PABR also considers signal quality when making the wavelength selection. It accomplishes this by removing from consideration all wavelengths with an unacceptable signal quality level. The approach is called Quality First Fit and it is discussed in the following section.

It should also be noted that both LORA and PABR can be implemented with either single-probing or multi-probing. The maximum number of probes p is denoted as LORA-p or PABR-p. With single-probing, only one path is selected by the route selection. With multi-probing, multiple paths are attempted in parallel, increasing the probability of connection success.

Other routing approaches

IA-BF - The Impairment Aware Best Fit (IA-BF) algorithm was proposed in.[6] This algorithm is a distributed approach that is dependent upon a large amount of communication to use global information to always pick the shortest available path and wavelength. This is accomplished through the use of serial multi-probing. The shortest available path and wavelength are attempted first, and upon failure, the second shortest available path and wavelength are attempted. This process continues until a successful path and wavelength have been found or all wavelengths have been attempted.

The multi-probing approach will allow IA-BF to outperform both PABR-1 and LORA-1. However, as the number of probes increases, the performance of the algorithms is similar.

IA-FF - Impairment Aware First Fit (IA-FF) is a simple extension of IA-BF. Instead of picking the wavelengths in terms of the minimum cost, the wavelengths are selected in order according to their index. IA-BF tends to outperform IA-FF under most scenarios.

AQoS - Adaptive Quality of Service (AQoS) was proposed in.[7] This algorithm is unique in a couple of ways. First, each node maintains two counters: N_{BER} and N_{wave}. The purpose of each counter is to determine which issue is a bigger factor in blocking: Path and wavelength availability or Quality requirements. The algorithm chooses routes differently based upon the larger issue.

Another distinction is that AQoS uses the Q-factor as the link cost. The cost of the i_{th} link is calculated by this formula D_i = \frac{\sum_{j=1}^{N_i} 10\log[Q_{i,j}^{(s)} / Q_{i,j}^{(d)}]} {N_i} where N_i is the number of lightpaths on the i_{th} link, Q_{i,j}^{(s)} and Q_{i,j}^{(d)} are the quality factor measurements of the j_{th} lightpath at the source and destination nodes of the i_{th} link, respectively. The repeated quality factor estimations are computationally very expensive.

This algorithm is single probing approach. The multi-probing approach, which the paper names ALT-AQoS (alternate AQoS) is a simple extension upon the same basic idea.

Wavelength assignment

Two of the most common methods for wavelength assignment are First Fit and Random Fit. First Fit chooses the available wavelength with the lowest index. Random Fit determines which wavelengths are available and then chooses randomly amongst them. The complexity of both algorithms is O(w), where w is the number of wavelengths. First Fit outperforms Random Fit.

An extension to First Fit and Random Fit was proposed in [5] to consider signal quality. Quality First Fit and Quality Random Fit eliminate from consideration wavelengths which have an unacceptable signal quality. The complexity of these algorithms is higher though, as up to w calls to estimate the Q-factor are required.

There are several other wavelength assignment algorithms: Least Used, Most Used, Min Product, Least Loaded, Max Sum,[8] and Relative Capacity Loss.[9] Most Used outperforms Least Used use significantly, and slightly outperforms First Fit. Min Product, Least Loaded, Max Sum, and Relative Capacity Loss all try to choose a wavelength that minimizes the probability that future requests will be blocked.

A significant disadvantage of these algorithms is that they require a significant communication overhead, making them unpractical to implement unless you have a centralized network structure.

Joint routing and wavelength assignment

An alternate approach to selecting a route and wavelength separately is to consider them jointly. These approaches tend to more theoretical and not very practical. As this is a NP-complete problem, any exact solution is likely not be possible. The approximation techniques usually aren't very useful either, as they will require centralized control and, usually, predefined traffic demands. Two joint approaches are ILP formulation and Island Hopping.

The ILP formulation listed above can be solved using a traditional ILP solver. This is typically done by temporarily relaxing the integer constraints, solving the problem optimally, and converting the real solution to an integer solution. Additional constraints can be added and the process repeated indefinitely using a branch and bound approach.

In [10] the authors report on the algorithm which can be used to solve efficiently and optimally a constrained RWA problem. The authors study a constrained routing and spectrum assignment (RSA) problem, which can be reduced to a constrained RWA problem by requesting one slice. The constriction limits the path length.

References

  1. H. Zang, J. Jue, and B. Mukherjee, "A Review of Routing and Wavelength Assignment Approaches for Wavelength Routed Optical WDM Networks," {\it Optical Networks Magazine}, January 2000.
  2. I. Chlamtac, A. Ganz, and G. Karmi, "Lightpath communications: an approach to high bandwidth optical WAN's," {\it IEEE Transactions on Communications}, Vol 40, No 7, pp. 1171-1182, July 1992.
  3. S. Evan, A. Itai, and A. Shamir, "On the Complexity of Timetable and Multicommodity Flow Problems," SIAM Journal of Computing, Vol 5, pp 691-703, 1976
  4. M. Pascoal and E. Martins. "A new implementation of Yen’s ranking loopless paths algorithm." 4OR–Quarterly Journal of the Belgian, French and Italian Operations Research Societies, 2003
  5. 1 2 W. Lin, "Physically Aware Agile Optical Networks," Ph.D. Dissertation, Montana State University, Bozeman, July 2008.
  6. Y. Huang, J. Heritage, and B. Mukherjee, "Connection Provisioning With Transmission Impairment Consideration in Optical WDM Networks With High-Speed Channels," Journal of Lightwave Technology, Vol 23, No 3, March 2005.
  7. T. Deng and S. Subramaniam, "Adaptive QoS Routing in Dynamic Wavelength-Routed Optical Networks," Broadband Networks 2005, pp. 184-193, 2005
  8. R. Barry and S. Subramaniam, "The MAX-SUM Wavelength Assignment Algorithm for WDM Ring Networks," Proceedings of Optical Fiber Conference, February 1997.
  9. X. Zhang and C. Qiao, "Wavelength Assignment for Dynamic Traffic in Multi-Fiber WDM Networks," Proceedings of International Conference on Communications, Vol 1, pp 406-410, June 1997.
  10. I. Szcześniak and B. Woźna-Szcześniak, "Adapted and Constrained Dijkstra for Elastic Optical Networks", Proceedings of the 20th Optical Network Design and Modeling Conference, Cartagena, Spain, May 2016
This article is issued from Wikipedia - version of the 5/18/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.