sohamc0 / Routing-and-Spectrum-Allocation

Solving the Routing and Spectrum Allocation (RSA) problem in optical communication networks with Deep Reinforcement Learning (RL)
2 stars 0 forks source link

The Routing and Spectrum Allocation Problem

Motivation

Efficiently solving the Routing and Spectrum Allocation (RSA) problem in optical communication networks is crucial for maximizing resource utilization, improving quality of service, and reducing operational costs. By allocating spectrum and routing optimally, these networks can handle increasing traffic demands, support emerging technologies, and ensure reliable and high-speed communication services for users. Effective solutions to the RSA problem enable optical networks to scale efficiently, minimize congestion, and support the continued growth of digital communication infrastructure.

The Problem

The objective is to maximize the utilization of optical resources across the network. Let $c(e)$ denote the capacity of a link $e$. When we represent the occupied slots at time $t$ on a link $e$ as $o(e)$, the utilization $u_t$ of the link $e$ at time $t$ can be computed by: $$u_t(e) := \dfrac{o_t(e)}{c(e)}.$$

Therefore, the average utilization $U(e)$ of a link $e$ over $T$ episodes (equivalent to $T$ arrivals of requests) is $$U(e) := \dfrac{1}{T}\sum_{t = 0}^{T-1}\dfrac{ot(e)}{c(e)}.$$ The formal objective is to achieve maximum network-wide utilization. We define the network-wide utilization $U$ as the average of the edge total utility: $$\text{Maximize } U := \dfrac{1}{|E|}\sum{e\in E}U(e)$$

Methods

Routing

Spectrum Allocation

Simulation Settings

Evaluation

Given that a holding time for any request can range from 10 to 19 and that there are 100 rounds, the expected return from an episode should be 1,450 if no blocking is experienced. We see in Case II that DQN converges to this value. Our routing algorithm performs similarly to the simple shortest path algorithm because there is not an overload of requests with the same source and destination pair as seen in Case I. Case II In Case I, however, our algorithm significantly outperforms the shortest path approach. Obviously, when the number of edges and, subsequently, links are constrained in the network, our algorithm would be a smarter choice to use. Case I

Paper