Next Article in Journal
Logics for Finite UL and IUL-Algebras Are Substructural Fuzzy Logics
Previous Article in Journal
Design of Sampling Plan Using Regression Estimator under Indeterminacy
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Optimal Allocation of Virtual Machines in Cloud Computing

1
Department of Urban Industrial Management and Marketing, University of Taipei, Taipei 11153, Taiwan
2
Department of Business Management, National Taipei University of Technology, Taipei 10608, Taiwan
3
Department of Business Administration, Chung Yuan Christian University, Chung-Li 32023, Taiwan
4
Department of Information Technology and Management, Shih Chien University, Taipei 10462, Taiwan
*
Author to whom correspondence should be addressed.
Submission received: 23 November 2018 / Revised: 8 December 2018 / Accepted: 12 December 2018 / Published: 15 December 2018

Abstract

:
Virtualization is one of the core technologies used in cloud computing to provide services on demand for end users over the Internet. Most current research allocates virtual machines to physical machines based on CPU utilization. However, for many applications that require communication between services running on different servers, communication costs influence the overall performance. Therefore, this study focuses on the optimal allocation of virtual machines across multiple geographically dispersed data centers, with the objective of minimizing communication costs. The original problem can be constructed as a quadratic assignment problem that is a classical NP-hard combinatorial optimization problem. This study adopts an efficient deterministic optimization approach to reformulate the original problem as a mixed-integer linear program that may be solved to obtain a globally optimal solution. Since the required bandwidth matrix and communication cost matrix are symmetric, the mathematical model of virtual machine placement can be simplified. Several numerical examples drawn from the literature are solved to demonstrate the computational efficiency of the proposed method for determining the optimal virtual machine allocation in cloud computing.

1. Introduction

Cloud computing has become a popular technology used to provide services on demand for end users over the Internet within the last decade. It enables users to dynamically scale up software, platforms, and hardware infrastructure services. The main advantages for enterprises of adopting cloud-computing services such as Amazon EC2 Services are flexibility, reliability, and cost savings. In addition, the rapid growth of mobile devices has encouraged enterprises to move applications to the Internet. Because of this, more and more data centers are being built to satisfy increasing demand for cloud-computing services.
The expansion of data centers has significantly increased the costs of data center operators. Indeed, the average server utilization varies dramatically over time and physical resources in data centers are seriously underutilized. In order to efficiently use physical resources in data centers, most physical servers in data centers adopt virtualization technology. Visualization enables the sharing of computer hardware by multiplexing virtual machines on the same set of hardware hosts. Based on a service level agreement (SLA), data centers may provide services for use by separate virtual machines that are located in different physical machines. Each virtual machine maintains a specific level of resources, such as CPU, storage, bandwidth, and memory, to guarantee application performance isolation and security. Since many services only occupy a small portion of physical resources, visualization technology provides flexible resource management and reduces the wastage of resources in data centers [1,2,3].
Most current research allocates virtual machines to physical machines based on CPU utilization. However, for many applications requiring communication between services, communication costs influence the overall performance. Due to the shared nature of multi-tenant data centers [4], network bandwidth becomes a scarce resource shared among many applications. Generally, data centers are placed all across the world following consideration of reliability, security and user demand. For distributed data centers, communication costs are the major cost. With limited bandwidth links between data centers, bandwidth-intensive applications compete for scarce network resources and execution times become unpredictable. Therefore, the quality of service cannot be guaranteed [5].
This study focuses on the optimal virtual machine placement across multiple geographically dispersed data centers. The aim of the virtual machine placement in this study is to minimize communication costs between network services under quality of service requirements. The original problem can be constructed as a quadratic assignment problem (QAP) that is a classical NP-hard problem. Many heuristic methods have been developed to solve the QAP. However, they cannot be guaranteed to converge on a globally optimal solution, especially for large-scale problems. This study adopts transformation techniques to reformulate the original problem as a mixed-integer linear program that may be solved to obtain a globally optimal solution. Several numerical examples drawn from the literature are solved to indicate computational efficiency by comparing the proposed method with the current method for virtual machine placement problems.
When compared with existing methods, this study has the following merits:
  • Global optimality guarantee: Compared with heuristic methods, the proposed approach transforms the virtual machine placement problem into a mixed-integer linear programming problem and is thus guaranteed to reach a global optimum.
  • Computational efficiency enhancement: Compared with the existing deterministic method [5], the proposed method adds appropriate constraints to reduce the number of feasible solutions for enhancing computational efficiency.
The rest of this paper is organized as follows. In Section 2, we discuss relevant research on the optimal allocation of virtual machines. Section 3 introduces the proposed method for determining the placement of virtual machines across multiple data centers. Computational results are presented in Section 4. Finally, concluding remarks are made in Section 5.

2. Literature Review

Since use of server virtualization technology is an effective way to improve resource utilization and reduce energy costs in data centers, the virtual machine placement problem has received much attention from both researchers and practitioners. Virtual machine placement is the process of selecting the most suitable physical machine (PM) for running a given virtual machine (VM). Therefore, a VM placement algorithm aims to design the most appropriate mapping of VM to PM. Cloud service providers may use different VM placement approaches. Silva Filho et al. [3] have provided a complete survey on optimizing virtual machine placement and migration in cloud environments. They have discussed the problem formulations, advantages, and shortcomings of relevant research.
Many different goals for VM placement have been considered in previous works, including energy saving, cost reduction, load balancing, reduction of SLA violations, network delays, congestion, and service downtime [3]. According to the goals of placement, VM placement approaches can be generally divided into two types [1]:
  • Power-based approach: Determines an energy-efficient VM-PM mapping based on resource utilization [6,7,8].
  • QoS-based approach: Determines a VM-PM mapping using the maximum fulfillment of quality of service requirements [7,8,9].
According to the type of optimization techniques used to obtain a VM-PM mapping, the VM placement techniques can largely be categorized into six categories [1,10]:
  • Heuristic Bin Packing: The VM placement problem is formulated as vector bin packing. VMs are considered to be small items that are tightly packed into the minimum number of bins, each considered a PM. Several heuristic methods are developed to approximate the optimal solution to this packing problem.
  • Biology-based optimization: Several bio-inspired optimization techniques such as the ant colony optimization method, the self-adaptive particle swarm optimization method, and genetic algorithms are applied to pack VMs into the smallest number of PMs, given the current workload.
  • Linear programming: The VM placement problem is constructed as a linear programming problem which considers a number of constraints derived from practical applications. LP-relaxation-based methods are developed to solve the formulated model.
  • Constraint programming: Van et al. [11] have presented a resource management framework, which includes a dynamic utility-based VM provisioning manager and a dynamic VM placement manager, to obtain a suitable VM-PM mapping. Both management tasks are regarded as constraint satisfaction problems. More practical aspects can be taken into consideration by extending the constraints in these problems.
  • Stochastic integer programming: Because the future demand of VM for providing network services is uncertain, the stochastic integer programming technique is used to predict a suitable VM-PM mapping.
  • Simulated annealing optimization: Liao et al. [12] have proposed a dynamic runtime mapping framework that adopts a simulated annealing optimization algorithm to map VMs onto a small set of PMs in order to minimize power consumption without significant system degradation.
Usmani & Singh [1] and Zheng et al. [10] have reviewed state-of-the-art VM placement and consolidation techniques. The challenge with the VM placement problem is how to find an optimal solution efficiently, especially when the VM placement problem is a kind of NP-hard problem. Most VM placement methods only consider CPU and memory resources and ignore networking limitations. However, communication between network services running on servers located in different data centers makes the limited network bandwidth an important issue for allocating VMs to PMs. Some research [13,14,15] has investigated networking needs in addition to CPU and memory needs, but most scenarios have only involved a single data center [5,16].
This study discusses the VM placement problem, with reference to Stefanello et al. [5], with consideration of multiple data centers interconnected with limited bandwidth links. We assume there are multiple users connected to different data centers who use cloud-computing services. The latency between every pair of data centers is known. To guarantee application performance for users, the maximum latency between users and the virtual machines assigned for the application must be lower than a specific level. To meet quality of service guarantees for the applications, the minimum bandwidth and maximum latency between each pair of virtual machines assigned for the applications must satisfy requirements. The objective is to derive an optimal VM placement that satisfies performance requirements and minimizes communication costs. The notations used throughout this study, with reference to Stefanello et al. [5], are as follows.
Parameters:
  • N: set of data centers;
  • K: set of virtual machines;
  • U: set of users;
  • a i : capacity in number of VMs that data center i can host;
  • B i j : bandwidth between data centers i and j;
  • L i j : latency between data centers i and j;
  • C i j : cost of transferring a unit of data between data centers i and j;
  • b v w : required bandwidth between VMs v and w;
  • l v w : required latency between VMs v and w;
  • t v u : required latency between user u and VM v;
  • d(u): the data center which hosts user u;
  • c i v : cost of allocating VM v in data center i;
  • z : scaling cost factor.
Decision variables:
x i v : x i v = 1 if VM v is allocated to data center i, and otherwise x i v = 0 .
The VM placement problem, with reference to Stefanello et al. [5], can be formulated as follows.
Minimize
i N v K c i v x i v + z i N j N v K w K x i v x j w C i j b v w ,
subject to:
v K x i v a i , i N ,
i N x i v = 1 , v K ,
v K w K x i v x j w b v w B i j , i , j N ,
i N j N x i v x j w L i j l v w , v , w K ,
i N x i v L i , d ( u ) t v u , u U , v K ,
x i v { 0 , 1 } , i N , v K .
The objective function (1) consists of two parts. The first part is the initial cost and the second part is the cost of communication. The VM placement problem considered in this study aims to minimize the cost of allocating VMs to PMs and communication costs resulting from each pair of virtual machines. Constraint (2) indicates that the number of VMs allocated to a data center cannot exceed the capacity of the data center. Constraint (3) ensures that each VM is assigned to exactly one data center. Constraint (4) guarantees that the total bandwidth required by all pairs of VMs allocated to data centers i and j must be less than or equal to the given bandwidth between the data centers i and j. Constraint (5) ensures that the latency between each pair of VMs allocated to data centers i and j should be less than or equal to the given latency between data centers i and j. Constraint (6) indicates that the latency between data centers i and d(u) should be less than or equal to the given latency between VM v and user u if user u is located in data center d(u) and accesses network services on VM v in data center i. Constraint (7) defines the variables domain.
The above model of the VM placement problem is a quadratic assignment problem (QAP) because the objective function and constraints (4) and (5) involve bilinear terms x i v x j w of discrete variables. Since multiple virtual machines may be assigned to a VM, the VM placement problem is, more precisely, a generalized quadratic assignment problem (GQAP), which has been proven to be a definitively NP-hard problem [17]. Additionally, the complexity of the GQAP is significantly higher than that of the QAP [17].
Letting y i v j w = x i v x j w , i , j N , v , w K , Stefanello et al. [5] proposed a mixed-integer linear mathematical model for the VM placement problem, named the LMVMP (Linear Model for the VM Placement), with reference to the Frieze and Yadegar [18] method for the QAP and the Lee and Ma [17] method for the GQAP. The LMVMP can be formulated as follows.
LMVMP [5]:
Minimize
i N v K c i v x i v + z i N j N v K w K y i v j w C i j b v w ,
subject to:
v K x i v a i , i N ,
i N x i v = 1 , v K ,
i N y i v j w = x j w , v , w K ,   j N ,
y i v j w = y j w i v , v , w K ,   i , j N ,
v K w K y i v j w b v w B i j , i , j N ,
i N j N y i v j w L i j l v w , v , w K ,
i N x i v L i , d ( u ) t v u , u U ,   v K ,
x i v { 0 , 1 } , i N ,   v K ,
0 y i v j w 1 , i , j N ,   v , w K .
In the LMVMP model, all bilinear terms x i v x j w are replaced with y i v j w . Constraints (11) and (12) define the relationship between variables x i v , x j w and y i v j w , i , j N , v , w K . However, the number of variables changes from O ( | N | | K | ) to O ( | N | 2 | K | 2 ) [5].

3. Proposed Method

Since the LMVMP model [5] introduces numerous variables, the combination of variables increases rapidly as the number of virtual machines and/or the number of data centers increases. This study improves the LMVMP model [5] by adding three constraints (22), (28), and (29) to reduce the number of feasible solutions for enhancing computational efficiency. The proposed model is described as follows.
Minimize
i N v K c i v x i v + z i N j N v K , v ( | K | 1 ) w K , w ( v + 1 ) ( C i j b v w + C j i b w v ) y i v j w ,
subject to:
v K x i v a i , i N ,
i N x i v = 1 , v K ,
i N y i v j w = x j w , v , w K ,   j N ,
j N y i v j w = x i v , v , w K , v < w K , j N ,
v K w K y i v j w b v w B i j , i , j N ,
i N j N y i v j w L i j l v w , v , w K ,
i N x i v L i , d ( u ) t v u , u U ,   v K ,
x i v { 0 , 1 } , i N ,   v K ,
0 y i v j w 1 , i , j N ,   v , w K ,
y i v i v = x i v , i N ,     v K ,
y i v j v = 0 , i , j N ,     j i , v K .
Since the required bandwidth matrix and communication cost matrix are symmetric, the objective function in the model above considers half of the y i v j w variables. Because each VM is assigned to exactly one data center, in constraint (22)
j N y i v j w = ( j N x j w ) x i v = x i v .
x i v is a binary variable. Therefore, in constraint (28)
y i v i v = x i v x i v = x i v .
Because each VM can be only assigned to a single data center, x i v and x j v are not equal to one simultaneously if j i . In constraint (29),
y i v j v = x i v x j v = 0 ,     j i .
The fact that there are numerous feasible solutions in the integer programming problem is a key factor to solving performance. The proposed method uses appropriate constraints so that only a fraction of the feasible solutions actually need to be evaluated.

4. Numerical Experiments

The purpose of the numerical experiments in this section is to demonstrate the effectiveness and efficiency of the proposed method in globally solving the VM placement problem. The experiments were conducted on a PC with a 4.3 GHz Intel Core i7-4770K CPU and 16 GB memory. All reformulated models were solved using an optimization solver IBM ILOG CPLEX 12.5 with default settings to evaluate the computational efficiency of optimization methods.
In order to compare the computational efficiency of the proposed method with the LMVMP model [5], the examples drawn from Stefanello et al. [5] were solved. Table 1 lists the experimental results of solving the VM placement problems with the proposed method and the LMVMP model [5]. All instances are encoded with the name of the number of data centers, the number of virtual machines, the number of users and the percentage of overall data center occupation. The CPU time is the average running time of CPLEX to solve each instance over five runs.
As seen in Table 1, CPU time increased as the number of virtual machines increased, but CPU time did not obviously increase as the number of users increased. In most cases, the proposed method required less CPU time to solve the problem. Additionally, out of seventeen cases, two cases (005_025_012_090 and 005_025_025_090) formulated by the LMVMP model [5] were solved by CPLEX and reported an error due to out-of-memory. However, the proposed method could solve all test cases. Compared with the LMVMP model [5], the proposed method that reduces the number of feasible solutions requires less memory when solving the formulated models.
In order to clearly compare the results of the proposed method with those of the LMVMP model [5], CPU times for solving the VM placement problems using the two methods, with 15 VMs and 20 VMs, respectively, are illustrated in Figure 1 and Figure 2. Figure 1 shows that the proposed method requires less CPU time for solving Cases 1, 2, 4, and 6. Figure 2 indicates that the proposed method requires less CPU time for solving Cases 8, 10, 11 and 12. Although the proposed method does not require less CPU time than the LMVMP model [5] in all cases, the proposed method outperforms the LMVMP model [5] for all cases with 90% overall data center occupation, that is, Cases 2, 4, 6, 8, 10, and 12. For the VM placement problems with 5 data centers and 25 VMs, the experimental results are not plotted in a figure because the LMVMP model [5] could not solve Cases 14 and 16 due to out-of-memory error. Hence, the out-of-memory errors shown in Table 1 indicate that the LMVMP model [5] cannot solve Cases 14 and 16, but that the proposed method can solve these two problems in an identical software and hardware environment.

5. Conclusions

Visualization technology provides an effective solution for flexible resource management within data centers. Virtual machine placement significantly affects resource utilization and quality-of-service guarantees. This study focuses on the optimal placement of virtual machines across multiple geographically dispersed data centers with minimal communication costs. The original problem is reformulated as a mixed-integer linear program which may be solved to reach a globally optimal solution. Experimental results indicate the proposed method can enhance computational efficiency in most cases compared with the current method for determining the optimal allocation of virtual machines across multiple data centers. The obtained solution suggests the optimal virtual machine placement for IT managers to use to reduce the costs of data center operators.
Experimental results indicated that CPU time for solving VM placement problems tends to grow exponentially as the number of virtual machines increases. Although the proposed deterministic approach guarantees the obtaining of a globally optimal VM placement under the specified constraints, its complexity grows rapidly as the number of virtual machines increases. More research will be required to optimize virtual machine allocation in large-scale problems, including, for instance, developing a more efficient linearization method or integrating heuristic algorithms. These issues are important to solving practical VM placement problems and are worthy of future investigation.

Author Contributions

Conceptualization, M.-H.L. and J.-F.T.; methodology, M.-H.L. and J.-F.T.; software, T.-H.S.; validation, M.-H.L. and T.-H.S.; formal analysis, M.-H.L. and J.-F.T.; investigation, M.-H.L., T.-H.S. and Y.-C.H.; data curation, T.-H.S. and Y.-C.H.; writing—original draft preparation, M.-H.L.; writing—review and editing, M.-H.L., J.-F.T. and Y.-C.H.; supervision, M.-H.L.; project administration, M.-H.L.; funding acquisition, M.-H.L. and J.-F.T.

Funding

This research was supported in part by the Ministry of Science and Technology in Taiwan under the Grants MOST 106-2410-H-845-029 and MOST 107-2410-H-027-005.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Usmani, Z.; Singh, S. A survey of virtual machine placement techniques in a cloud data center. Procedia Comput. Sci. 2016, 78, 491–498. [Google Scholar] [CrossRef]
  2. Dong, J.; Jin, X.; Wang, H.; Li, Y.; Zhang, P.; Cheng, S. Energy-saving virtual machine placement in cloud data centers. In Proceedings of the 13th IEEE/ACM International Symposium on Cluster, Cloud, and Grid Computing (CCGrid 2013), Delft, The Netherlands, 13–16 May 2013; pp. 618–624. [Google Scholar]
  3. Silva Filho, M.C.; Monteiro, C.C.; Inácio, P.R.M.; Freire, M.M. Approaches for optimizing virtual machine placement and migration in cloud environments: A survey. J. Parallel Distrib. Comput. 2018, 111, 222–250. [Google Scholar] [CrossRef]
  4. Greenberg, A.; Hamilton, J.R.; Jain, N.; Kandula, S.; Kim, C.; Lahiri, P.; Sengupta, S. VL2: A scalable and flexible data center network. ACM SIGCOMM Comput. Commun. Rev. 2009, 39, 51–62. [Google Scholar] [CrossRef]
  5. Stefanello, F.; Buriol, L.S.; Aggarwal, V.; Resende, M.G. A new linear model for placement of virtual machines across geo-separated data centers. Simpsio Bras. Pesqui. Oper. 2005, 47, 1–11. [Google Scholar]
  6. Song, W.; Xiao, Z.; Chen, Q.; Luo, H. Adaptive resource provisioning for the cloud using online bin packing. IEEE Trans. Comput. 2014, 63, 2647–2660. [Google Scholar] [CrossRef]
  7. Beloglazov, A.; Buyya, R. Managing overloaded hosts for dynamic consolidation of virtual machines in cloud data centers under quality of service constraints. IEEE Trans. Parallel Distrib. Syst. 2013, 24, 1366–1379. [Google Scholar] [CrossRef]
  8. Ghobaei-Arani, M.; Rahmanian, A.A.; Shamsi, M.; Rasouli-Kenari, A. A learning-based approach for virtual machine placement in cloud data centers. Int. J. Commun. Syst. 2018, 31. [Google Scholar] [CrossRef]
  9. Bobroff, N.; Kochut, A.; Beaty, K. Dynamic placement of virtual machines for managing SLA violations. In Proceedings of the 10th IFIP/IEEE International Symposium on Integrated Network Management, Munich, Germany, 21–25 May 2007; pp. 119–128. [Google Scholar]
  10. Zheng, Q.; Li, R.; Li, X.; Shah, N.; Zhang, J.; Tian, F.; Chao, K.M.; Li, J. Virtual machine consolidated placement based on multi-objective biogeography-based optimization. Future Gener. Comput. Syst. 2016, 54, 95–122. [Google Scholar] [CrossRef]
  11. Van, H.N.; Tran, F.D.; Menaud, J.-M. Performance and power management for cloud infrastructures. In Proceedings of the IEEE 3rd International Conference on Cloud Computing (CLOUD 2010), Miami, FL, USA, 5–10 July 2010; pp. 329–336. [Google Scholar]
  12. Liao, X.; Jin, H.; Liu, H. Towards a green cluster through dynamic remapping of virtual machines. Future Gener. Comput. Syst. 2012, 28, 469–477. [Google Scholar] [CrossRef]
  13. Guo, C.; Lu, G.; Wang, H.J.; Yang, S.; Kong, C.; Sun, P.; Wu, W.; Zhang, Y. SecondNet: A Data Center Network Virtualization Architecture with Bandwidth Guarantees. In Proceedings of the 6th International Conference (Co-NEXT ’10), Philadelphia, PA, USA, 30 November–3 December 2010. Article No. 15. [Google Scholar]
  14. Ballani, H.; Costa, P.; Karagiannis, T.; Rowstron, A. Towards predictable datacenter networks. ACM SIGCOMM Comput. Commun. Rev. 2011, 41, 242–253. [Google Scholar] [CrossRef]
  15. Xie, D.; Hu, Y.C. The only constant is change: Incorporating time-varying network reservations in data centers. ACM SIGCOMM Comput. Commun. Rev. 2012, 42, 199–210. [Google Scholar] [CrossRef]
  16. Stefanello, F.; Aggarwal, V.; Buriol, L.S.; Gonçalves, J.F.; Resende, M.G. A biased random-key genetic algorithm for placement of virtual machines across geo-separated data centers. In Proceedings of the 2015 Conference on Genetic and Evolutionary Computation (GECCO’15), Madrid, Spain, 11–15 July 2015; pp. 919–926. [Google Scholar]
  17. Lee, C.G.; Ma, Z. The Generalized Quadratic Assignment Problem; Technical Report; Department of Mechanical and Industrial Engineering at the University of Toronto: Toronto, ON, Canada, 2004. [Google Scholar]
  18. Frieze, A.M.; Yadegar, J. On the quadratic assignment problem. Discret. Appl. Math. 1983, 5, 89–98. [Google Scholar] [CrossRef]
Figure 1. Comparisons of CPU time for VM placement problems with 5 data centers and 15 VMs.
Figure 1. Comparisons of CPU time for VM placement problems with 5 data centers and 15 VMs.
Symmetry 10 00756 g001
Figure 2. Comparisons of CPU time for VM placement problems with 5 data centers and 20 VMs.
Figure 2. Comparisons of CPU time for VM placement problems with 5 data centers and 20 VMs.
Symmetry 10 00756 g002
Table 1. Experimental results of the LMVMP (Linear Model for the VM Placement) model [5] and the proposed method.
Table 1. Experimental results of the LMVMP (Linear Model for the VM Placement) model [5] and the proposed method.
Case No.InstanceObjectiveCPU Time (Seconds)
LMVMPProposed Method
1005_015_007_07025,844.020.730.66
2005_015_007_09023,557.307.273.25
3005_015_015_07010,904.780.370.39
4005_015_015_09024,354.961.150.69
5005_015_022_07014,163.600.370.41
6005_015_022_09032,318.021.811.53
7005_020_010_07038,572.6233.2441.43
8005_020_010_09064,710.8016.0712.86
9005_020_020_07055,288.7625.6531.81
10005_020_020_09057,574.900.830.70
11005_020_030_07028,433.342.421.68
12005_020_030_09066,088.700.730.70
13005_025_012_07043,300.76154.39151.15
14005_025_012_09010,0865.02N/A *6877.55
15005_025_025_07042,890.4010.7513.96
16005_025_025_090103.791.96N/A *8021.09
17005_025_037_07097,335.1216.2427.81
* error due to out-of-memory.

Share and Cite

MDPI and ACS Style

Lin, M.-H.; Tsai, J.-F.; Hu, Y.-C.; Su, T.-H. Optimal Allocation of Virtual Machines in Cloud Computing. Symmetry 2018, 10, 756. https://0-doi-org.brum.beds.ac.uk/10.3390/sym10120756

AMA Style

Lin M-H, Tsai J-F, Hu Y-C, Su T-H. Optimal Allocation of Virtual Machines in Cloud Computing. Symmetry. 2018; 10(12):756. https://0-doi-org.brum.beds.ac.uk/10.3390/sym10120756

Chicago/Turabian Style

Lin, Ming-Hua, Jung-Fa Tsai, Yi-Chung Hu, and Tzu-Hsuan Su. 2018. "Optimal Allocation of Virtual Machines in Cloud Computing" Symmetry 10, no. 12: 756. https://0-doi-org.brum.beds.ac.uk/10.3390/sym10120756

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