Next Article in Journal
eHealth Integrity Model Based on Permissioned Blockchain
Next Article in Special Issue
Location-Based Deferred Broadcast for Ad-Hoc Named Data Networking
Previous Article in Journal
An Overview on Push-Based Communication Models for Information-Centric Networking
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Dynamic SDN Controller Load Balancing

1
Department of Computer Science, Jerusalem College of Technology, Jerusalem 91160, Israel
2
The Open University of Israel, Raanana 43107, Israel
3
Technical University of Denmark (DTU), 2800 Kgs. Lyngby, Denmark
*
Author to whom correspondence should be addressed.
Future Internet 2019, 11(3), 75; https://doi.org/10.3390/fi11030075
Submission received: 23 January 2019 / Revised: 17 February 2019 / Accepted: 1 March 2019 / Published: 21 March 2019
(This article belongs to the Special Issue Content Centric Future Internet Architectures)

Abstract

:
The software defined networking (SDN) paradigm separates the control plane from the data plane, where an SDN controller receives requests from its connected switches and manages the operation of the switches under its control. Reassignments between switches and their controllers are performed dynamically, in order to balance the load over SDN controllers. In order to perform load balancing, most dynamic assignment solutions use a central element to gather information requests for reassignment of switches. Increasing the number of controllers causes a scalability problem, when one super controller is used for all controllers and gathers information from all switches. In a large network, the distances between the controllers is sometimes a constraint for assigning them switches. In this paper, a new approach is presented to solve the well-known load balancing problem in the SDN control plane. This approach implies less load on the central element and meeting the maximum distance constraint allowed between controllers. An architecture with two levels of load balancing is defined. At the top level, the main component called Super Controller, arranges the controllers in clusters, so that there is a balance between the loads of the clusters. At the bottom level, in each cluster there is a dedicated controller called Master Controller, which performs a reassignment of the switches in order to balance the loads between the controllers. We provide a two-phase algorithm, called Dynamic Controllers Clustering algorithm, for the top level of load balancing operation. The load balancing operation takes place at regular intervals. The length of the cycle in which the operation is performed can be shorter, since the top-level operation can run independently of the bottom level operation. Shortening cycle time allows for more accurate results of load balancing. Theoretical analysis demonstrates that our algorithm provides a near-optimal solution. Simulation results show that our dynamic clustering improves fixed clustering by a multiplicative factor of 5.

1. Introduction

In a software defined network (SDN) architecture [1], the logical separation between control plane and data plane, in the architecture and functional behavior of network nodes, is dissociated, allowing for centralization of all the logic related to control plane procedures in a so-called SDN Controller. In turn, this allows for simplified network nodes designed and streamlined for data plane performance. Such an architecture enables developers to devise new algorithms to be collocated at the SDN controller, which are able to manage the network and change its functionality [2,3]. Even though only one controller may handle the traffic for a small network [4], this is not realistic when we deal with large network at the internet scale since each controller has limited processing power, therefore multiple controllers are required to respond to all requests on large networks [5,6,7]. One approach to achieve this goal is to use multiple same instantiations of a single controller [8], where each instantiation of the SDN controller does basically the same work as the others, each switch being linked to one SDN controller. Handling multiple controllers gave rise to some important questions, namely: where to place the controllers and how to match each control to a switch. These questions are not only relevant during the network deployment based on static’s information [9,10] but should also be considered regularly due to the network dynamic nature [11]. In this paper we dealt with the matching problem aforementioned. We proposed a novel multi-tier architecture for SDN control plane which can adapt itself to dynamic traffic load and therefore provide a dynamic load balancing.
The rest of this paper is organized as follows. In Section 2 we present the state of the art in dealing with load balancing at the control plane level in SDN. Then in Section 3 we present the updated DCF architecture used to develop our clustering algorithm. In Section 4, the problem is formulated and its hardness explained. The two-phase Dynamic Controllers Clustering (DCC) algorithm, with the running time analysis and optimality analysis, is provided in Section 5. Simulations results are discussed in Section 6. Finally, our conclusions are provided in Section 7.

2. Related Works

The problems of how to provide enough controllers to satisfy the traffic demand, and where to place them, were studied in [4,12,13]. The controllers can be organized hierarchically, where each controller has its own network sections that determine the flows it can serve [14,15,16], or in a flat manner where each controller can serve all types of incoming requests [17,18,19]. In any case, every switch needs a primary controller (it can also have more, as secondary/redundant). In most networks N > > M , where N is the number of switches and M is the number of controllers, each controller has a set of switches that are linked to it. The dynamic requests rate from switches can create a bottleneck at some controllers because each controller has limited processing capabilities. Therefore, if the number of switches requested is too large, the requests will have to wait in the queue before being processed by the controller which will cause long response times for the switches. To prevent the aforementioned issue, switches are dynamically reassigned to controllers according to their request rates [18,20,21]. This achieves a balance between the loads that the controllers have.
In general, these load-balancing methods split the timeline into multiple time slots (TSs) in which the load balancing methods are executed. At the beginning of each TS, these methods propose to run a load balancing algorithm based on the input gathered in the previous TS. Therefore, these methods assume the input is also relevant for the current TS. The load-balancing algorithm is executed by a central element called the Super Controller (SC).
Some of the methods presented in the literature are adapted to dynamic traffics [18,19]. They suggest changing the number of controllers and their locations, turning them on and off in each cycle according to the dynamic traffic. In addition to load balancing, some other methods [6,18] deal with additional objectives such as minimal set-up time and maximal utilization, which indirectly help to balance loads between controllers. (The reassignment protocol between switches and controllers is out of the scope of this paper. Here we focus on the optimization and algorithmic aspects of the reassignment process. More details on reassignment protocol can be found in [22]. For instance, switch migration protocol [22] is used for enabling such load shifting between controllers and conforms with the Openflow standard. The reassignment has no impact on flow table entries.) Changing the controller location causes reassignment of all its switches, thus, such approaches are designed for networks where time complexity is not a critical issue.
However, in our work, we do consider time sensitive networks, and therefore, we adopted a different approach that causes less noise in the network, whereby the controllers remain fixed and the reassignment of switches is performed only if necessary in the ongoing TS (as detailed further in this paper).
In [18,20,21] the SC runs the algorithm that reassigns switches according to the dynamic information (e.g., switch requests per second) it gathers each time cycle (finding the optimal time cycle duration is the goal of our future works and is not considered in this paper) from all controllers, and changes the default controllers of switches. Note that each controller should publish its load information periodically to allow SC to partition the loads properly.
In [20] a load balancing strategy called “Balance flow” focuses on controller load balancing such that (1) the flow-requests are dynamically distributed among controllers to achieve quick response, (2) the load on an overloaded controller is automatically transferred to appropriate low-loaded controllers to maximize controller utilization. This approach requires each switch to enable to get service from some controllers for different flow. The accuracy of the algorithm is achieved by splitting the switch load between some controllers according to the source and destination of each flow.
DCP-GK and DCP-SA are greedy algorithms for Dynamic Controller Placement (DCP) from [18], which employ for the reassignment phase, Greedy Knapsack (GK) and Simulated Annealing (SA) respectively, dynamically changing the number of controllers and their locations under different conditions, then, reassign switches to controllers.
Contrary to the methods in [18,20], the algorithm suggested by [21], called Switches Matching Transfer (SMT), takes into account the overhead derived from the switch-to-controller and controller-to-switch messages. This method achieves good results as shown in [21].
In the approaches mentioned earlier in this section, all the balancing work is performed in the SC, thus, the load on the super controller can cause a scalability problem. This motivated the architecture defined in [23] called “Hybrid Flow”, where controllers are grouped into fixed clusters. In order to reduce the load on the SC, the reassignment process is performed by the controllers in each cluster, where the SC is used only to gather load data and send it to/from the controllers. “Hybrid Flow” suffers from long run time caused by the dependency that exists between the SC operation and other controllers operations.
When the number of controllers or switches increases, the time required for the balancing operation increases as well. Table 1 summarizes the time complexity of the methods mentioned above.
The running time of the central element algorithm defines the bound on the time-cycle length. Thus, the bigger the increase of the run time in the central element (i.e., causing a larger time cycle), the lower is the accuracy achieved in the load balancing operation. This is crucial in dynamic networks that need to react to frequent changes in loads [24].
In a previous work [25,26], a new architecture called Dynamic Cluster Flow (DCF) [25] was presented. DCF facilitates a decrease in the running time of the balance algorithm. The DCF architecture partitions controllers into clusters. The architecture defines two levels of load balancing: A high level called “ C l u s t e r i n g ”, and an operational level called “ R e a s s i g n m e n t ”. A super controller performs the “ C l u s t e r i n g ”, by re-clustering the controllers in order to balance their global loads. The “ R e a s s i g n m e n t ” level is under the responsibility of each cluster that balances the load between its controllers by reassigning switches according to their request rate. For communication between the two levels, each controller has a Cluster Vector (CV), which contains the addresses of all the controllers in its cluster. This CV, which is updated by the SC each time cycle, allows the two levels to run in different independent elements, where the “ C l u s t e r i n g ” operation runs at the start time of each unit.
In [26] we presented a heuristic for the “ C l u s t e r i n g ” operation which balances between clusters according to the loads with a time complexity of O ( M 2 ) , and suggest to use the method presented in [23] for the “ R e a s s i g n m e n t ” level. In this initial architecture, the “ R e a s s i g n m e n t ” level is not sufficiently flexible for various algorithms, which served as a motivation for us to extend it.
In this paper, the target is to leverage previous work [25,26] and achieve load balancing among controllers. This is done by taking into account: network scalability, algorithm flexibility, minor complexity, better optimization and overhead reduction. To achieve the above objectives, we use the DCF architecture, and considered distance and load at the “ C l u s t e r i n g ” level that influence the overhead and response time at the “ R e a s s i g n m e n t ” level, respectively.
Towards that target, the DCF architecture has been updated to enable the application of existing algorithms [18,20,21,23] in the “ R e a s s i g n m e n t ” process in each cluster. Furthermore, a clustering algorithm has been developed that takes into account the controller-to-controller distances in the load balancing operation. The problem has been formulated as an optimization problem, aiming at minimizing the difference between cluster loads with constraints on the controller-to-controller distance. This is a challenging problem due to these opposite objectives. We assume that each controller has the same limit capacity in terms of requests per second that it can manage. The controllers are dynamically mapped to clusters when traffic changes. The challenge is to develop an efficient algorithm for the above-mentioned problem i.e., re-clustering in response to variations of network conditions, even in large-scale SDN networks. We propose a novel Dynamic Controllers Clustering (further denoted as DCC) algorithm by defining our problem as a K-Center problem at the first phase and developing, in a second phase, a replacement rule to swap controllers between clusters. The idea for the second phase is inspired by Game Theory. The replacements shrink the gap between cluster loads while not exceeding the constraint of controller-to-controller distances within the cluster. We assume that M controllers are sufficient for handling the maximal request rate in the network (as mentioned earlier, there are already many works that found the optimal number of controllers).
Our architecture and model are different from aforementioned existing works since we enable not only dynamicity inside the cluster but also between clusters which did not exist before.

3. Network Architecture

3.1. Dynamic Cluster Flow Architecture

In the architecture we presented in [25,26], we considered always only one controller called Super Controller (SC) that is connected to all other controllers in the control plane. In this sense, we considered a two-tier hierarchy where the SC is in the top tier and all other controllers are in the lower tier. The SC gathers load information from all controllers and is responsible for grouping the controllers into clusters according to their load. For each cluster, the SC handles a Cluster Vector (CV), which includes the addresses of all the controllers inside the given cluster. The CV provides each controller inside a cluster the ability to identify to which controller it can transfer part of its overload. In order for each controller to intelligently decide where to transfer its load, an efficient communication scheme between the controllers is necessary. This is because each overloaded controller that requires the help of another controller becomes dependent on the other controller which itself can be also overloaded, etc. This whole interdependency requires a complete and synchronized coordination between all the controllers.

3.2. Three Level Load Balancing Architecture

In this paper, we consider the architecture, presented in [25,26] as briefly presented in the previous section but we add a new, additional intermediate tier.
Thus we consider a three-tier hierarchy, where the SC is in the top tier, some Master Controllers are in the intermediate tier and all other controllers are in the lower tier. In Figure 1 we show an illustration of our proposed architecture with an example of reclustering process where in green we see the master of each cluster and SC denotes the super controller. In this three-tier architecture, we observe two levels of load operations: “ C l u s t e r i n g ” and “ R e a s s i g n m e n t s ”. In the top level of “ C l u s t e r i n g ”, the SC organizes the controllers into clusters. In the lower level of “ R e a s s i g n m e n t s ”, for each cluster, there is a Master Controller ( M C ) responsible for the load balancing inside the cluster by reassigned switches to controllers dynamically. In order to define the problem of the “ C l u s t e r i n g ” for the high level of the load balancing operation, two aspects are considered: first, the minimal differences between clusters’ loads are set as targets, and second, the minimal distances between controllers in each cluster.
In this paper, we do not propose a new method for performing load balancing inside each cluster since many efficient algorithms already exist, for instance see [18,20,21]. However, the method employed, which is designed for the top level in which clusters are rearranged (as described in the next section), is sufficiently generic that it will operate with any of the existing load-balancing algorithms.
At the start of each time cycle, the MC sends to the SC the Cluster Vector Loads (CVL), which includes the load of each controller inside the cluster. Then the SC may update the CV of each cluster in order to balance the load of some overloaded clusters, and may also update who is the new MC of some cluster. In parallel to the “ C l u s t e r i n g ” operation performed by the SC, the “ R e a s s i g n m e n t s ” operations of the load balancing are performed by the MS independently.
Due to the three level DCF architecture, the load balancing runtime of both the SC and MC is very low, and enables a reduction in the TS duration accordingly. Thus the greater the reduction in the timeline, the greater the accuracy achieved [25].

4. DCC Problem Formulation

In this section, the assignment problem of controllers to clusters is presented. This problem is considered here as a minimization problem with constraints.

4.1. Notations

We consider a control plane C with M controllers, denoted by C = { C 1 , C 2 , , C M } where C i is a single controller. We assume that the processing power of each controller is the same and equal to P, which stands for the number of requests per second that it can handle. Let d i j be the distance (number of hops) between C i and C j . We denote by G i the i t h cluster and by G = { G 1 , G 2 , , G K } , the set of all clusters. We assume that M K is an integer and is actually the number of controllers per cluster. Thus, the size of the CV is M K , i.e., we assume that each cluster consists of the same number of controllers. Y denotes a matrix, handled by SC, which consists of the matching of each controller to a single cluster. Each column of Y represents a cluster and each row a controller.
Figure 2 shows an example of such a matrix Y ( 9 X 3 ) corresponding to nine controllers split into three clusters. On the left part we see Y matrix before re-clustering process and on the right after it is completed. Thanks to Y one can know which controller is in which cluster as follows. If a controller is included in a cluster then in the corresponding row of the controller and corresponding column of the cluster the value will be 1, otherwise it will be 0. For instance, we see that before re-clustering, controller number 5 is in cluster b. After re-clustering (on the right matrix), we see that controller 5 is no longer in b but has been moved to cluster c.
Therefore, Y is a binary M X K matrix as follows:
Y ( t ) i j = 0 C j G i 1 else
1 j M i = 1 K Y ( t ) i j = 1 a n d 1 j K i = 1 M Y ( t ) i j = K
The load of controller j in time slot t is denoted l t j . This information arrives to the SC from the controllers. Its value is the average of requests per second from all the switches associated to the controller, in time slot t. C V L i denotes the Cluster Vector Load of M a s t e r i . The SC contains the addresses of the masters for each cycle in the Master Vector (MV). Table 2 summarizes the key notations for ease of reference.

4.2. Clusters’ Load Differences

As we mentioned in Section 3, the first aspect of the high-level load balancing is to achieve balanced clusters (in this paper we assume that all controllers have the same processing capabilities, therefore balanced clusters is the overall optimal allocation). For this purpose, the gaps between their loads must be narrowed. A cluster load is defined as the sum of the controllers’ average loads included in it, as follows:
θ t i = j = 1 M l t j Y t j i
where i is the cluster number and M is the number of controllers in the cluster.
To measure how far a cluster load is from other clusters’ loads, we derive the global cluster’s load average:
A v g = j M l t j K
where, k is the number of clusters.
Then, we define the distance of a cluster’s load from the global average’s load (denoted above A v g ) as:
ϑ t i = | θ t i A v g |
In a second step, we define a metric that measures the total load difference between clusters’ load as follows:
ς t = i = 1 k ϑ t i K

4.3. Distances between Controllers within Same Cluster

In this section, we focus on the second aspect of the high level load balancing (mentioned in Section 3.2). The rationale behind this distance optimization is as follows. Since in the initialization phase, switches are matched to the closest controller, we then perform load balancing inside the same cluster; we want the other controllers to also be close to each other, otherwise this would imply that the switch might now be matched to a new controller far from it. For that purpose we define the maximal distance between controllers within the same cluster (over all the clusters) as follows:
η t = m a x 1 c K m a x 1 i , j M d i j Y t i c Y t j c
where c is the cluster number, and i, j are the controllers in cluster c.
Obviously, the best result would be to reach the minimum n ( t ) possible. Because if the controllers are close to each other, then the overhead consisting of the message exchanged between them will be less significant whereas if they are far from each other, then a multihop path will be required which will clearly impact the traffic on the control plane. However, if the constraint on n ( t ) is too strict this might not allow us enough flexibility to perform load balancing. Therefore, we propose to define the minimum distance required to provide enough flexibility for the load balancing operation, denoted as “ m i n M a x D i s t a n c e ”. If the value of m i n M a x D i s t a n c e is not large enough, it is possible to adjust it by adding an offset to it. Finally, we denote by C n t the constraint on the maximal distance as follows:
C n t = m a x D i s t a n c e + offset

4.4. Optimization Problem: Dynamic Controllers’ Clustering

Our goal is to find the best clustering assignment as defined by Y ( t ) which minimize ς t (Equation (6)) and at the same time fulfills the distance constraint (Equation (8)). Therefore, the problem can be formulated as follows:
M i n i m i z e ς t
subject to:
j M Y t j i = M K , i
j K Y t j i = 1 , j
η t < C n t
Y t i j 0 , 1 , i , j
Equation (10) ensures that each cluster has exactly M / K controllers at a given time while Equation (11) ensures that each controller is assigned to exactly one cluster at a time. Equation (12) puts a constraint on the maximum distance between controllers within the same cluster.
Regarding the distance constraint, the problem is a variant of a k-Center problem [27].
On the other hand, the load balancing problem is a variant of a coalition-formation game problem [28], where the network structure and the cost of cooperation play major roles.
These two general problems are NP-Complete because finding an optimal partition requires iterating over all the partitions of the player set, where the number of these partitions grows exponentially with the number of players, and is given by a value known as the Bell Number [29]. Hence, finding an optimal partition in general is computationally intractable and impractical (unless P = N P ).
In this paper, we propose an approximation algorithm to solve these problems. We adapt the K-Center problem solution for initial clustering, and use game theoretic techniques to satisfy our objective function with the distance constraint.

5. DCC Two Phase Algorithm

In this section, we divide the DCC problem into two phases and present our solutions for each of them. In the first phase, we define the initial clusters. We show some possibilities for the initialization that refer to distances between controllers and load differences between clusters. In the second phase, we improve the results. We further reduce the differences of cluster loads without violating the distance constraint by means of our replacement algorithm. We also discuss the connections between these two phases, and the advantages of using this two-phase approach for optimizing the overall performance.

5.1. Phase 1: Initial Clustering

The aim of initial clustering is to enable the best start that provides the best result for the second phase. There are two possibilities for the initialization. The first possibility is to focus on the distance, that is, seeking an initial clustering which satisfies the distance constraint while the second possibility is to focus on minimizing load difference between clusters.

5.1.1. Initial Clustering with the Distance Constraint

Most of the control messages concerning the cluster load balancing operation are generated due to the communication between the controllers and their MC. Thus, we use the K-Center problem solution to find the closer MC [27,30]. In this problem, C = { C 1 , C 2 , , C K } is the center’s set and P = { P 1 , P 2 , , P M } contains M controllers. We define P C = d p 1 , C , d p 2 , C , , d p M , C , where the ith coordinate of P C is the distance of p i to its closest center in C. The k-Center inputs are: a set P of M points and an integer number K, where M N , K < M . The goal is to find a set of k points C P such that the maximum distance between a point in P and its closest point in C is minimized. The network is a complete graph, and the distance definition [see Table 2] satisfies the triangle inequality. Thus, we can use an approximate solution to the k-Center problem to find MCs. Given a set of centers, C, the k-center clustering price of P by C is P C = m a x p P d p , C . Algorithm 1 is an algorithm similar to the one used in [31]. This algorithm computes a set of k centers, with a 2-approximation to the optimal k-center clustering of P, i.e., P K 2 o p t P , K with O ( M K ) time and O ( M ) space complexity [31].
In Line 2 the algorithm chooses a random controller as the first master. In Lines 4–6 the algorithm computes the distances of all other controllers from the masters chosen in the previous iteration. In each iteration, in line 9, another master is added to the collection, after calculating the controller located in the farthest radius of all controllers already included in the master group, in line 8. After ( K 1 ) iterations in line 11 the set of masters is ready.
Algorithm 1 Find Masters by 2-Approximation Greedy k-Center Solution
input: P = { p 1 , p 2 , , p M } controllers set, controller-to-controller matrix distances
output: C = { c 1 , c 2 , , c K } masters set
procedure:
 1:
C
 2:
c 1 p i // an arbitrary point p i from
 3:
C C c 1
 4:
for i = 1 : K do
 5:
  for all p P do
 6:
     d i [ p ] m i n c C d ( p , c )
 7:
  end for
 8:
   c i m a x p P d i [ p ]
 9:
   C C c i
10:
end for
11:
returnC // The master set
After Algorithm 1 finds K masters, we partition controllers between the masters by keeping the number of controllers in each group under M / K as illustrated in Heuristic 1.
As depicted in Heuristic 1, lines 1–2 prepare set S that contains the list of controllers to assign. Lines 3–5 define the initial empty clusters with one master for each one. Lines 7–15 (while loop) are the candidate clusters which have less than M / K controllers, and each controller is assigned to the nearest master of these candidates. After the controllers are organized into clusters, we check the maximal distance between any two controllers in lines 16–19; this value is used for the “ m a x D i s t a n c e ” (that was used for Equation (8)).
Heuristic 1 Distance initialization
input:
C = { c 1 , c 2 , , c M } Controller list
M = { m 1 , m 2 , , m k } masters list
controller-to-controller matrix distances
output:
C L = { c l 1 , c l 2 , , c l k } Clusters list, where C L i = { c l i 1 , c l i 2 , , c l i ( m / k ) }
m a x D i s t a n c e -maximum distance between controllers in a cluster.
procedure:
 1:
S C
 2:
S S M
 3:
for i = 1 : K do
 4:
     C L i M i
 5:
end for
 6:
C a n d i d a t e s C L
 7:
while S do
 8:
     C n e x t The next controller in S
 9:
     C L n e a r Find the nearest master from Candidates list
10:
   C L n e a r C L n e x t C L n e a r
11:
   S S C n e x t
12:
  if C L n e a r = M / K then
13:
         C a n d i d a t e s C a n d i d a t e s C L n e a r
14:
  end if
15:
end while
16:
for all C L i C L do
17:
   m a x D i s t a n c e C L i max distance between two controllers in C L i
18:
end for
19:
m a x D i s t a n c e maximum of all m a x D i s t a n c e C L i
20:
return C L , m a x D i s t a n c e
Regarding the time complexity, Lines 1–6 take O ( K ) time. For each controller Line 8–12 checks the distance of a controller from all candidates, which takes O ( M K ) time. In lines 16–18 for each cluster the heuristic checks the maximum distance between any two controllers in the cluster. There are M / K 2 different distances for all clusters, thus taking O ( M 2 ) time. Line 19 takes O ( K ) time ( K < M ). The initial process with Heuristic 1 entails an O ( M 2 ) time complexity.
Heuristic 1 is based on the distances between the controllers. When the controllers’ position is fixed, the distances do not change. Consequently, Heuristic 1 can be calculated only one time (i.e., before the first cycle) and the results are used for the remaining cycles.

5.1.2. Initial Clustering Based on Load Only

If the overhead generated by additional traffic to distant controllers is not an issue (for example due to broadband link) then we should consider this type of initialization, which put an emphasis on the controllers’ load. In this case, we must arrange the controllers into clusters according to their loads. To achieve a well-distributed load for all the clusters we want to reach a “ m i n m a x ”, i.e., we would like to minimize the load in the most loaded cluster. As mentioned earlier (in Section 4.1) we assume the same number of controllers in each cluster. We enforce this via a constraint on the size of each cluster (see further Heuristic 2).
In the following, we present a greedy technique to partition the controllers into clusters (Heuristic 2). The basic idea is that in each iteration it fills the less loaded clusters with the most loaded controller.
In Heuristic 2, Line 1 sorts the controllers by loads. In Line 2–9, each controller, starting with the heaviest one, is matched to the group with the minimum cost function, C o s t g ( C ) , if the group size is less than K, where
C o s t g ( C ) = C u r r e n t C l u s t e r S u m + C l o a d .
The “ C u r r e n t C l u s t e r S u m ” is the sum of the controllers’ loads already handled by cluster g, and C l o a d is the controller’s load that will be handled by that cluster. Regarding the time complexity, sorting M controllers takes O ( M · l o g 2 M ) time. Adding each controller to the current smallest group takes M · K operations. Therefore, Heuristic 2 has O ( m a x ( M · K , M · l g M ) ) time complexity.
Heuristic 2 Load initialization
input:
C = { c 1 , c 2 , , c M } Controller list
Masters C V L i ’s (average flow-request number (loads) for each controller)
integer K for number of clusters
output:
P = { p 1 , p 2 , , p K } Clusters list, where P i = { c i 1 , c i 2 , , c i ( M / K ) }
procedure:
 1:
S o r t e d L i s t C descending order of controllers list according to their loads
 2:
C a n d i d a t e s P
 3:
for all c S o r t e d L i s t C do
 4:
   P m i n the cluster with minimal C o s t g ( C ) from candidates
 5:
   P m i n P m i n c u p C
 6:
  if P m i n = M / K then
 7:
     C a n d i d a t e s C a n d i d a t e s P m i n
 8:
  end if
 9:
end for
10:
returnP

5.2. Initial Clustering as Input to the Second Phase

The outcomes of the two types of initialization, namely “ d i s t a n c e ” and “ l o a d ”, presented so far (Section 5.1) are used as an input for the second phase.
It should be noted that since the “ m a x D i s t a n c e ” constraint is an output of the initialization based on the distance (Heuristic 1), the first phase is mandatory in case the distance constraint is tight. On the other hand, the initialization based on the load (Heuristic 2) is not essential to performing load balancing in the second phase, but it can accelerate convergence in the second phase.

5.3. Phase 2: Decreasing Load Differences Using a Replacement Rule

In the second phase, we apply the coalition game theory [28]. We can define a rule to transfer participants from one coalition to another. The outcome of the initial clustering process is a partition denoted Θ defined on a set C that divides C into K clusters with M / K controllers for each cluster. Each controller is associated with one cluster. Hence, the controllers that are connected to the same cluster can be considered participants in a given coalition.
We now leverage the coalition game-theory in order to minimize the load differences between clusters or to improve it if an initial load balancing clustering has been performed such as in Section 5.1.2.
A coalition structure is defined by a sequence B = { B 1 , B 2 , , B l } where each B i is a coalition. In general, a coalition game is defined by the triplet ( N , v , B ) , where v is a characteristic function, N are the elements to be grouped and B is a coalition structure that partitions the N elements [28]. In our problem, the M controllers are the elements, G is the coalition structure, where each group of controllers G i is a coalition. Therefore, in our problem we can define the coalition game by the triplet M , v , G where v = ς t . The second phase can be considered as a coalition formation game. In a coalition formation game each element can change its coalition providing this can increase its benefit as we will define in the following. For this purpose, we define the Replacement Value ( R V ) as follows:
R V ( C i , C j , a , b , C n t ) = 0 n ( t ) n e w C n t 0 b e l o w A v e r a g e   is   true 0 a b o v e A v e r a g e   is   true s u m n e w s u m o l d else
where s u m n e w = ϑ ( t ) a n e w + ϑ ( t ) b n e w and s u m o l d = ϑ ( t ) a o l d + ϑ ( t ) b o l d . b e l o w A v e r a g e is true where ( ϑ ( t ) a o l d A v g ) & ( ϑ ( t ) b o l d A v g ) and a b o v e A v e r a g e is true where ( ϑ ( t ) a o l d A v g ) & ( ϑ ( t ) b o l d A v g ) . Each replacement involves two controllers C i and C j with loads C l t i and l t j , respectively, and two clusters a and b with loads L a and L b , respectively. We use the notations “ o l d ” and “ n e w ” to indicate a value before and after the replacement.
When n t n e w C n t (see Equations (7) and (8)), the controllers, after the replacement, are organized into clusters such that the maximum distance between controllers within a particular cluster exceeds the distance constraint C n t . In this case, the value of the R V is set to zero, because the replacement is not relevant at all.
When ( ϑ ( t ) a o l d A v g ) & ( ϑ ( t ) b o l d A v g ) or ( ϑ ( t ) a o l d A v g ) & ( ϑ ( t ) b o l d A v g ) (see Equations (4) and (5)), ς ( t ) o l d = ς ( t ) n e w (see Equation (6)). When one of the cluster’s load moves to another side of the global average then we have ς t n e w ς t o l d . With both options, ς t o l d do not improve and therefore the R V is set to zero.
Figure 3 and Figure 4 provide an illustration of these two options. The dotted line denotes the average of all clusters.
In Figure 3, the sum of the loads’ distances from the global average, before the replacement is x + y . After the replacement the sum is ( x ( l ( t ) i + l ( t ) j ) + y + ( l ( t ) i + l ( t ) j ) = x + y . In the other symmetrical options, the result is the same.
In Figure 4 the sum of distances from the global average, before the replacement is x + y , and this sum after the replacement is ( x + ( l ( t ) i + l ( t ) j ) + ( l ( t ) i + l ( t ) j ) y > x + y . In the other symmetrical options, the result is the same.
In Equation (14), if none of the first three conditions are met, R V is calculated by ϑ t a n e w + ϑ t b n e w ϑ t a o l d + ϑ t b o l d , a value that can be greater than or less than zero. Using the R V , we define the following “ R e p l a c e m e n t R u l e ”:
Definition 1.
Replacement Rule. In a partition Θ, a controller c i has incentive to replace its coalition a with controller c j from coalition b (forming the new coalitions a n e w = a o l d c i c j and b n e w = b o l d c j c i if it satisfies both of the following conditions: (1) The two clusters a n e w and b n e w that participate in the replacement do not exceed their capacity K · P . (2) The R V satisfies: R V C i , C j , a , b , C n t < 0 R V defined in Equation (14)).
In order to minimize the load difference between the clusters, we find iteratively a pair of controllers with minimum R V , which then implement the corresponding replacement. This is repeated until all R V ’s are larger than or equal to zero: RV C i , C j , a , b , C n t > 0 . Procedure 1 describes the replacement procedure.
Regarding the time complexity of Line 1 in Procedure 1, i.e., find the best replacement, it takes: M k k 1 + M k k 2 + + M k k k 1 = M 2 k 2 · k k 1 2 = M 2 k 1 2 k = o M 2 time.
Line 3 invokes the replacement within O ( 1 ) time. Since in each iteration the algorithm chooses the best solution, there will be a maximum of M / 2 iterations in the loop of Lines 2–5. Thus, in the worst case Procedure 1 takes an O ( M 3 ) time complexity. In practice, the number of iterations is much smaller, as can be seen in the simulation section.
Procedure 1 Replacements
input:
C L = { c l 1 , c l 2 , , c l K } Clusters list, where C L i = { c l i 1 , c l i 2 , , c l i ( M / K ) }
distance constraint C n t
output:
C L = { c l 1 , c l 2 , , c l K } Clusters list after replacements
procedure:
1:
b e s t V a l min c i C L x , c j C L y , x y , 1 x , y , k R V ( c i , c j , C L x , C L y , C n t )
2:
while b e s t V a l < 0 do
3:
  invoke replacement R V
4:
   b e s t V a l min c i C L x , c j C L y , x y , 1 x , y , k R V ( c i , c j , C L x , C L y , C n t )
5:
end while
6:
return C L

5.4. Dynamic Controller Clustering Full Algorithm

Now we present the algorithm that includes the two stages of initialization and replacement, in order to obtain clusters in which the loads are balanced (Algorithm 2).
Algorithm 2 DCC Algorithm
input:
n t Network contain C = { c 1 , c 2 , , c M } Controller list, and distances between controllers.
K and M for the number of clusters and controllers, respectively
c o n s t a i n t A c t i v e to indicate that it meets the controller-to-controller distance constraint
o f f s e t to calculate the distance constraint (optional).
output:
P = { p 1 , p 2 , , p k } Clusters list, where P i = { c i 1 , c i 2 , , c i ( m / k ) }
procedure:
 1:
if c o n s t a i n t A c t i v e = t r u e then
 2:
     M a s t e r s Algorithm 1( n t )
 3:
    ( i n i t i a l D i s t a n c e C l u s t e r s , m a x D i s t a n c e ) ← Heuristic 1(C, M a s t e r s )
 4:
     C n t m a x D i s t a n c e + o f f s e t
 5:
     f i n a l P a r t i t i o n Procedure 1( i n i t i a l D i s t a n c e C l u s t e r s , t r u e , C n t )
 6:
else
 7:
     i n i t i a l S t r u c t u r e Cluster structure from the previous cycle
 8:
     i n i t i a l L o a d s O n l y Heuristic 2(c)
 9:
     i n i t i a l W i t h R e p l a c e m e n t Procedure 1( i n i t i a l L o a d s O n l y , f a l s e )
10:
   R e p l a c e m e n t O n l y Procedure 1( i n i t i a l S t r u c t u r e , f a l s e )
11:
   f i n a l P a r t i t i o n best solution from( i n i t i a l L o a d s O n l y , i n i t i a l W i t h R e p l a c e m e n t , R e p l a c e m e n t O n l y )
12:
end if
13:
return f i n a l P a r t i t i o n
The DCC Algorithm runs the appropriate initial clustering, according to a Boolean flag called “ c o n s t r a i n t A c t i v e ”, indicating whether the distance between the controllers should be considered or not (Line 1). If the flag is true, the distance initialization procedure (Heuristic 1) is called (Line 3). Using the “ m a x D i s t a n c e ” output from Heuristic 1, the DCC calculates the C n t = m a x D i s t a n c e + o f f s e t (Line 4). Using the partition and C n t outputs, the DCC runs the “ r e p l a c e m e n t p r o c e d u r e ” (Procedure 1) (Line 5).
The DCC can run the second option without any distance constraint (Line 6). In Line 11 it chooses the best solution in such cases, (referring to the minimal load differences) from the following three options: (1) Partition by loads only (Line 8); (2) Start partition by loads and improve with replacements (Line 9) (3) Partition by replacements only (using the previous cycle partition) (Line 10).
Regarding the time complexity, DCC uses Heuristics 1 and 2, Algorithm 1 and Procedure 1, thus it has a O M 3 time complexity.

5.5. Optimality Analysis

In this section, our aim is to prove how close our algorithm is to the optimum. Because the capacity of controllers is identical, the minimal difference between clusters is achieved when the controllers’ loads are equally distributed among the clusters, where the clusters’ loads are equal to the global average, namely ς t = 0 . Since in the second phase, i.e., in the replacements, the DCC full algorithm is the one that sets the final partition and therefore determines the optimality, it is enough to provide proof of this.
As mentioned before, the replacement process is finished when all R V s are 0, at which time any replacement of any two controllers will not improve the result. Figure 5 shows the situation for each of the two clusters at the end of the algorithm.
For each two clusters, where the load of one cluster is above the general average and the load of the second cluster is below the general average, the following formula holds:
ϑ ( t ) a + ϑ ( t ) b = L a L b l ( t ) i l ( t ) j , c i a , c j b
We begin by considering the most loaded cluster and the most under-loaded cluster. When the cluster size is g, we define X 1 to contain the lowest g / 2 controllers, and X 2 to contain the next lowest g / 2 controllers. In the same way, we define Y 1 to contain the highest g / 2 controllers and Y 2 to contain the next highest g / 2 controllers.
In the worst case, the upper cluster has the controllers from the Y 1 group and the lower cluster has the controllers from the X 1 group. Since the loads of the clusters are balanced, one half of the controllers in the upper cluster are from X 1 , and the other half of controllers in the lower cluster are controllers from Y 1 .
According to Formula (15), we can take the lowest difference between a controller in the upper cluster and a controller in the lower cluster to obtain a bound on the sum of the distance of loads of these two clusters from the overall average. The sum of distances from the overall average of these two clusters is equal to or smaller than the difference between the two controllers, i.e., between the one with the lowest load of the g most loaded controller and the one with the highest load of the g lowest controllers.
ϑ t m o s t _ l o a d e d + ϑ t m o s t _ u n d e r _ l o a d e d l t g _ t h _ b i g g e r l t g _ t h _ s m a l l e r
The bound derived in (Equation (16)) is for the two most distant clusters. Since a bound for the whole network (i.e., for all the clusters is needed) we just have to multiply this bound by the number of cluster pairs we have in the network. There are k clusters in the networks so k / 2 pairs of clusters, therefore the bound in (Equation (16)) is multiplied by K / 2 in order to determine a bound. However, to obtain a more stringent bound, we can consider bounds of other cluster pairs, and summarize all bounds as follows:
d i f f e r e n c e B o u n d i = 1 M 2 g s o r t L i s t M i g s o r t L i s t i g
The s o r t L i s t indicates the load list of the controllers sorted in ascending order, M. In Table 3 we show a summary of the time complexity of each of the algorithms we developed in this paper. Explanation on how each time complexity has been derived can be found in the corresponding sections.

6. Simulations

We simulated a network, with several clusters and one super controller. The controllers are randomly deployed over the network. The number of flows (the controller load) of each controller is also randomly chosen. The purpose of the simulation is to show that our DCC algorithm (see Section 5.4) meets the difference bound (defined in Section 5.5), and the number of replacements bound while providing better results than the fixed clustering method. The simulator we used has been developed with Visual Studio environment in .Net. This simulator enables to choose the number of controllers, the distance between each of them and the loads on each controller. In order to consider a global topology, the simulator enables also to perform a random deployment of the controllers and to allocate random load on each controller. We used this latter option to generate each scenario in the following figures.
First we begin by showing that the bound for the s ( t ) function is met. We used 30 controllers divided into five clusters. We ran 60 different scenarios. In each scenario, we used a random topology, and random controllers’ loads. Figure 6 shows the optimality bound (Equation (15)), which appears as a dashed line, and the actual results for the differences achieved after all replacements. For each cluster, we chose randomly a minimalNumber in the range [20,10,000], and set the controllers’ loads for this cluster randomly in a range of [minimalNumber, innerBalance]. We set the innerBalance to 40. X In such a way, we get unbalance between clusters, and a balance in each cluster. The balance in each cluster simulated the master operation. The innerBalance set the quality of the balance inside the cluster. Our algorithm balanced the load between clusters and showed the different results that indicate the quality of the balance. The distances between controllers were randomly chosen in a range of [1,100].
We ran these simulations with different clusters size of: 2, 3, 5, 10 and 15. The results showed that when the cluster size increases, the distance of the different bound from the actual bound also increases. We can also see that when the cluster size is too big (15) or too small (2), the final results are less balanced. The reason is because too small of cluster size does not contain enough controllers for flexible balancing, and too big a cluster size does not allow flexibility between clusters since it decreases the number of clusters.
We got similar results when running 50 controllers with cluster sizes: 2, 5, 10, 25.
As the number of controllers increases, the distance between the difference bound and the actual difference increases. This is because the bound is calculated according to the worst case scenario. Figure 7 shows the increase in distance between the actual difference distance from the difference bound when the number of controllers increases. The results are for five controllers in a cluster with 50 network scenarios.
We now refer to the number of replacements required. As shown in Figure 8, the actual replacement number is lower than the bound. The results are for 30 controllers and 10 clusters over 40 different network scenarios (as explained above for Figure 6).
The number of clusters affects the number of replacements. As the number of clusters increases, the number of replacements increases. Figure 9 shows the average number of replacements over the 30 network configurations, with 100 controllers, where the number of clusters increases.
As noted, the initialization of step 1 in the DCC algorithm reduces the number of replacements required in step 2. Figure 10 depicts the number of replacements required, with and without initialization of step 1. The results are for 75 controllers and 15 clusters over 50 different network scenarios.
As mentioned previously in Section 5.1.1, during the initialization we can also consider the constraint on the distance (although it is not mandatory and in Section 5.1.2 we presented an initialization based on load only). Thus, if a controller-to-controller maximal distance constraint is important, we have to compute the lower bound on the maximal distance. By adding this lower bound to the offset defined by the user, an upper bound called “ C n t ” is calculated (Equation (8)). Figure 11 shows the final maximal distance that remains within the upper and lower bounds. The results are for 30 controllers and 10 clusters with offset 20 over 30 network scenarios.
Finally, we compare our method of dynamic clusters with another method of fixed clusters. As a starting point, the controllers are divided into clusters according to the distances between them (Heuristic 1). In each time cycle, the clusters are rearranged according to the controllers’ loads of the previous time cycle. The change in the load status from cycle to cycle is defined by the following transition function:
f ( n ) = c c m a x ( l ( t ) i + r a n d o m ( r a n g e ) , P ) r a n d o m ( 0 , 1 ) = 1 m a x ( l ( t ) i + r a n d o m ( r a n g e ) , 0 ) e l s e
where P is the number of requests per second a controller can handle. The load in each controller increases or decreases randomly. We set the range at 20, and P at 1000. Figure 12 depicts the results with 50 controllers partitioned into 10 clusters. The results show that the differences between the clusters’ loads are lower when the clusters are dynamic.
Following Figure 12, we ran simulation (see Table 4) for different configuration than the one in Figure 12, where 50 controllers were considered. Here, we simulated the comparison on different random topologies, with a different number of controllers and clusters in each topology. The number of cycles we run is also randomly chosen. The simulation results indicate that the difference is improved fivefold by the dynamic clusters in comparison to the fixed clusters.

7. Conclusions

In this paper, an improved approach to reduce the time complexity of the load balancing in the SDN control plane is presented. The goal is to split the requests (from the switches to controllers) among different controllers in order to avoid overload on some of them. For this purpose, we leverage a three-tier control plane architecture with a super controller and master controllers, which can perform load-balancing action independently. Therefore, the whole load balancing process can be executed in parallel and reduce the time complexity.
We propose a system (made of multiple algorithms) that assigns controllers to clusters with an optimization and the maximal distance between two controllers in the same clusters.
We show that using dynamic clusters provides better results than fixed clustering.
In future research, we plan to explore the optimal cluster size, and allow clusters of different sizes. An interesting direction concerns overlapping clusters. Another direction is to examine the required ratio between the runtime of the load balancing algorithm and the length of the unit on the timeline. Finally, optimal placement of the master controllers in each cluster is also an important open issue.

Author Contributions

Conceptualization and Methodology, H.S. and Y.H.; Validation, H.S.; Formal Analysis, H.S. and Y.H.; Writing—Original Draft Preparation, H.S. and Y.H.; Writing—Review & Editing, J.S.; Supervision, Y.H. and L.B.

Funding

This research was (partly) funded by the Office of the Chief Scientist of the Israel Ministry of Economy under the Neptune generic research project. Neptune is the Israeli consortium for network programming.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Scott-Hayward, S.; O’Callaghan, G.; Sezer, S. SDN security: A survey. In Proceedings of the 2013 IEEE SDN For Future Networks and Services (SDN4FNS), Trento, Italy, 11–13 November 2013; pp. 1–7. [Google Scholar]
  2. Hu, T.; Guo, Z.; Yi, P.; Baker, T.; Lan, J. Multi-controller Based Software-Defined Networking: A Survey. IEEE Access 2018, 6, 15980–15996. [Google Scholar] [CrossRef]
  3. Zhang, Y.; Cui, L.; Wang, W.; Zhang, Y. A survey on software defined networking with multiple controllers. J. Netw. Comput. Appl. 2018, 103, 101–118. [Google Scholar] [CrossRef]
  4. Heller, B.; Sherwood, R.; McKeown, N. The controller placement problem. In Proceedings of the First Workshop on Hot Topics in Software Defined Networks, Helsinki, Finland, 13 August 2012; pp. 7–12. [Google Scholar]
  5. Lu, J.; Zhang, Z.; Hu, T.; Yi, P.; Lan, J. A Survey of Controller Placement Problem in Software-defined Networking. IEEE Access 2019. [Google Scholar] [CrossRef]
  6. Hu, Y.; Wang, W.; Gong, X.; Que, X.; Cheng, S. Reliability-aware controller placement for software-defined networks. In Proceedings of the 2013 IFIP/IEEE International Symposium on Integrated Network Management (IM 2013), Ghent, Belgium, 27–31 May 2013; pp. 672–675. [Google Scholar]
  7. Yeganeh, S.H.; Tootoonchian, A.; Ganjali, Y. On scalability of software-defined networking. IEEE Commun. Mag. 2013, 51, 136–141. [Google Scholar] [CrossRef]
  8. Tootoonchian, A.; Ganjali, Y. HyperFlow: A distributed control plane for OpenFlow. In Proceedings of the 2010 Internet Network Management Conference on Research on Enterprise Networking, San Jose, CA, USA, 27 April 2010. [Google Scholar]
  9. Lange, S.; Gebert, S.; Zinner, T.; Tran-Gia, P.; Hock, D.; Jarschel, M.; Hoffmann, M. Heuristic approaches to the controller placement problem in large scale SDN networks. IEEE Trans. Netw. Serv. Manag. 2015, 12, 4–17. [Google Scholar] [CrossRef]
  10. Saadon, G.; Haddad, Y.; Simoni, N. A survey of application orchestration and OSS in next-generation network management. Comput. Stand. Interfaces 2019, 62, 17–31. [Google Scholar] [CrossRef]
  11. Auroux, S.; Draxler, M.; Morelli, A.; Mancuso, V. Dynamic network reconfiguration in wireless DenseNets with the CROWD SDN architecture. In Proceedings of the 2015 European Conference on Networks and Communications (EuCNC), Paris, France, 29 June–2 July 2015; pp. 144–148. [Google Scholar]
  12. Dixit, A.; Hao, F.; Mukherjee, S.; Lakshman, T.; Kompella, R. Towards an elastic distributed SDN controller. ACM SIGCOMM Comput. Commun. Rev. 2013, 43, 7–12. [Google Scholar] [CrossRef]
  13. Krishnamurthy, A.; Chandrabose, S.P.; Gember-Jacobson, A. Pratyaastha: An efficient elastic distributed sdn control plane. In Proceedings of the Third Workshop on Hot Topics in Software Defined Networking, Chicago, IL, USA, 22 August 2014; pp. 133–138. [Google Scholar]
  14. Liu, Y.; Hecker, A.; Guerzoni, R.; Despotovic, Z.; Beker, S. On optimal hierarchical SDN. In Proceedings of the 2015 IEEE International Conference on Communications (ICC), London, UK, 8–12 June 2015; pp. 5374–5379. [Google Scholar]
  15. Fu, Y.; Bi, J.; Chen, Z.; Gao, K.; Zhang, B.; Chen, G.; Wu, J. A hybrid hierarchical control plane for flow-based large-scale software-defined networks. IEEE Trans. Netw. Serv. Manag. 2015, 12, 117–131. [Google Scholar] [CrossRef]
  16. Bhole, P.D.; Puri, D.D. Distributed Hierarchical Control Plane of Software Defined Networking. In Proceedings of the 2015 International Conference on Computational Intelligence and Communication Networks (CICN), Jabalpur, India, 12–14 December 2015; pp. 516–522. [Google Scholar]
  17. Kreutz, D.; Ramos, F.M.; Verissimo, P.E.; Rothenberg, C.E.; Azodolmolky, S.; Uhlig, S. Software-defined networking: A comprehensive survey. Proc. IEEE 2015, 103, 14–76. [Google Scholar] [CrossRef]
  18. Bari, M.F.; Roy, A.R.; Chowdhury, S.R.; Zhang, Q.; Zhani, M.F.; Ahmed, R.; Boutaba, R. Dynamic controller provisioning in software defined networks. In Proceedings of the 2013 9th International Conference on Network and Service Management (CNSM), Zurich, Switzerland, 14–18 October 2013; pp. 18–25. [Google Scholar]
  19. Görkemli, B.; Parlakışık, A.M.; Civanlar, S.; Ulaş, A.; Tekalp, A.M. Dynamic management of control plane performance in software-defined networks. In Proceedings of the 2016 IEEE NetSoft Conference and Workshops (NetSoft), Seoul, Korea, 6–10 June 2016; pp. 68–72. [Google Scholar]
  20. Hu, Y.; Wang, W.; Gong, X.; Que, X.; Cheng, S. Balanceflow: Controller load balancing for openflow networks. In Proceedings of the 2012 IEEE 2nd International Conference on Cloud Computing and Intelligent Systems (CCIS), Hangzhou, China, 30 October–1 November 2012; Volume 2, pp. 780–785. [Google Scholar]
  21. Wang, T.; Liu, F.; Guo, J.; Xu, H. Dynamic sdn controller assignment in data center networks: Stable matching with transfers. In Proceedings of the The 35th Annual IEEE International Conference on Computer Communications (IEEE INFOCOM 2016), San Francisco, CA, USA, 10–14 April 2016; pp. 1–9. [Google Scholar]
  22. Dixit, A.; Hao, F.; Mukherjee, S.; Lakshman, T.; Kompella, R.R. ElastiCon; An elastic distributed SDN controller. In Proceedings of the 2014 ACM/IEEE Symposium on Architectures for Networking and Communications Systems (ANCS), Marina del Rey, CA, USA, 20–21 October 2014; pp. 17–27. [Google Scholar]
  23. Yao, H.; Qiu, C.; Zhao, C.; Shi, L. A multicontroller load balancing approach in software-defined wireless networks. Int. J. Distrib. Sens. Netw. 2015, 11, 454159. [Google Scholar] [CrossRef]
  24. Kim, H.; Feamster, N. Improving network management with software defined networking. IEEE Commun. Mag. 2013, 51, 114–119. [Google Scholar] [CrossRef]
  25. Sufiev, H.; Haddad, Y. DCF: Dynamic cluster flow architecture for SDN control plane. In Proceedings of the 2017 IEEE International Conference on IEEE Consumer Electronics (ICCE), Las Vegas, NV, USA, 8–10 January 2017; pp. 172–173. [Google Scholar]
  26. Sufiev, H.; Haddad, Y. A dynamic load balancing architecture for SDN. In Proceedings of the IEEE International Conference on the Science of Electrical Engineering (ICSEE), Eilat, Israel, 16–18 November 2016; pp. 1–3. [Google Scholar]
  27. Likas, A.; Vlassis, N.; Verbeek, J.J. The global k-means clustering algorithm. Pattern Recognit. 2003, 36, 451–461. [Google Scholar] [CrossRef] [Green Version]
  28. Kahan, J.P.; Rapoport, A. Theories of Coalition Formation; Psychology Press: London, UK, 2014. [Google Scholar]
  29. Apostol, T.M. Introduction to Analytic Number Theory; Springer Science & Business Media: Berlin, Germany, 2013. [Google Scholar]
  30. Hochbaum, D.S. Approximation Algorithms for NP-Hard Problems; PWS Publishing Co.: Boston, MA, USA, 1996. [Google Scholar]
  31. Lim, A.; Rodrigues, B.; Wang, F.; Xu, Z. k-Center problems with minimum coverage. In Proceedings of the International Computing and Combinatorics Conference, Jeju Island, Korea, 17–20 August 2004; Springer: Berlin, Germany, 2004; pp. 349–359. [Google Scholar]
Figure 1. Three-tier control plane.
Figure 1. Three-tier control plane.
Futureinternet 11 00075 g001
Figure 2. Y matrix examples before and after re-clustering.
Figure 2. Y matrix examples before and after re-clustering.
Futureinternet 11 00075 g002
Figure 3. Clusters loads after replacement on the same side with reference to the average.
Figure 3. Clusters loads after replacement on the same side with reference to the average.
Futureinternet 11 00075 g003
Figure 4. Clusters’ loads after replacement on different sides with reference to the average.
Figure 4. Clusters’ loads after replacement on different sides with reference to the average.
Futureinternet 11 00075 g004
Figure 5. The loads of each of the two clusters at the end of all replacements.
Figure 5. The loads of each of the two clusters at the end of all replacements.
Futureinternet 11 00075 g005
Figure 6. Difference bound and the final difference results.
Figure 6. Difference bound and the final difference results.
Futureinternet 11 00075 g006
Figure 7. Distance between the difference bound and actual difference.
Figure 7. Distance between the difference bound and actual difference.
Futureinternet 11 00075 g007
Figure 8. Replacements bound and actual number of replacements.
Figure 8. Replacements bound and actual number of replacements.
Futureinternet 11 00075 g008
Figure 9. Increase in the number of replacements with an increase in the number of clusters.
Figure 9. Increase in the number of replacements with an increase in the number of clusters.
Futureinternet 11 00075 g009
Figure 10. Number of replacements with and without initialization.
Figure 10. Number of replacements with and without initialization.
Futureinternet 11 00075 g010
Figure 11. Maximal distance between lower and upper bounds.
Figure 11. Maximal distance between lower and upper bounds.
Futureinternet 11 00075 g011
Figure 12. Comparison results of dynamic clusters vs. fixed clusters.
Figure 12. Comparison results of dynamic clusters vs. fixed clusters.
Futureinternet 11 00075 g012
Table 1. Time complexity comparison.
Table 1. Time complexity comparison.
ApproachBalance FlowSMTDCP-Assignment PhaseHybrid Flow
Time Complexity O ( m a x ( ( N 2 ) · l o g ( N 2 ) , N 2 · M ) ) O ( M · N · l o g N ) O ( M · N · l o g N ) O ( N · M 2 )
Table 2. Key notations.
Table 2. Key notations.
SymbolSemantics
C j jth controller
G i ith cluster
Pthe number of requests a controller can handle per second
d i j Minimal hop distance between C i and C j
Y t j i Y t j i = 1 if jth controller is in cluster i in time slot t, else Y t j i = 1
l t j Controller load—Average flow request of jth controller per second in time slot t
SCSuper Controller—collects controllers’ loads from masters and re-clustering
Table 3. Time Complexity of heuristics and algorithm used for Dynamic Controllers Clustering (DCC).
Table 3. Time Complexity of heuristics and algorithm used for Dynamic Controllers Clustering (DCC).
Algorithm 1Find Masters O ( M · K )
Heuristic 1Distance Initialization O ( M 2 )
Heuristic 2Load Initialization O ( m a x ( M · lg M , M · K ) )
Procedure 1Replacements O ( M 2 )
Algorithm 2General DCC O ( M 3 )
Table 4. Dynamic vs. Fixed Clustering in different network topologies.
Table 4. Dynamic vs. Fixed Clustering in different network topologies.
No. of ControllersNo. of ClustersCyclesFixed ClusteringDynamic ClusteringImprovement Factor
16420319.8161.645.2
441129999.09185.335.3
7014181501.95267.335.6
4214281044.48209.154.9
306226101095.6

Share and Cite

MDPI and ACS Style

Sufiev, H.; Haddad, Y.; Barenboim, L.; Soler, J. Dynamic SDN Controller Load Balancing. Future Internet 2019, 11, 75. https://doi.org/10.3390/fi11030075

AMA Style

Sufiev H, Haddad Y, Barenboim L, Soler J. Dynamic SDN Controller Load Balancing. Future Internet. 2019; 11(3):75. https://doi.org/10.3390/fi11030075

Chicago/Turabian Style

Sufiev, Hadar, Yoram Haddad, Leonid Barenboim, and José Soler. 2019. "Dynamic SDN Controller Load Balancing" Future Internet 11, no. 3: 75. https://doi.org/10.3390/fi11030075

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop