Next Article in Journal
Efficient Superpixel-Guided Interactive Image Segmentation Based on Graph Theory
Next Article in Special Issue
Research on Electronic Voltage Transformer for Big Data Background
Previous Article in Journal
Image Denoising via Improved Dictionary Learning with Global Structure and Local Similarity Preservations
Previous Article in Special Issue
Carbon Oxides Gases for Occupancy Counting and Emergency Control in Fog Environment
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Adaptive Incremental Genetic Algorithm for Task Scheduling in Cloud Environments

1
Department of Computer and Information Science, University of Macau, Taipa 999078, Macau
2
School of Computer Science, North China University of Technology, Beijing 100144, China
3
Department of Computer Science and Software Engineering, Xi’an Jiaotong-Liverpool University, Suzhou 215123, China
*
Authors to whom correspondence should be addressed.
Symmetry 2018, 10(5), 168; https://doi.org/10.3390/sym10050168
Submission received: 24 April 2018 / Revised: 11 May 2018 / Accepted: 15 May 2018 / Published: 17 May 2018
(This article belongs to the Special Issue Emerging Approaches and Advances in Big Data)

Abstract

:
Cloud computing is a new commercial model that enables customers to acquire large amounts of virtual resources on demand. Resources including hardware and software can be delivered as services and measured by specific usage of storage, processing, bandwidth, etc. In Cloud computing, task scheduling is a process of mapping cloud tasks to Virtual Machines (VMs). When binding the tasks to VMs, the scheduling strategy has an important influence on the efficiency of datacenter and related energy consumption. Although many traditional scheduling algorithms have been applied in various platforms, they may not work efficiently due to the large number of user requests, the variety of computation resources and complexity of Cloud environment. In this paper, we tackle the task scheduling problem which aims to minimize makespan by Genetic Algorithm (GA). We propose an incremental GA which has adaptive probabilities of crossover and mutation. The mutation and crossover rates change according to generations and also vary between individuals. Large numbers of tasks are randomly generated to simulate various scales of task scheduling problem in Cloud environment. Based on the instance types of Amazon EC2, we implemented virtual machines with different computing capacity on CloudSim. We compared the performance of the adaptive incremental GA with that of Standard GA, Min-Min, Max-Min , Simulated Annealing and Artificial Bee Colony Algorithm in finding the optimal scheme. Experimental results show that the proposed algorithm can achieve feasible solutions which have acceptable makespan with less computation time.

1. Introduction

As the National Institute of Standards and Technology (NIST) defines, cloud computing [1] is a new paradigm that provides configurable resource pool by network access. Resources such as networks, servers and storage can be rapidly provided and released without service provider getting heavily involved. Since Cloud computing technologies offer scalability, are reliable and trustworthy, and offer high performance at relatively low cost, they have a variety of application domains [2], such as virtual computing labs [3], linguistic group decision-making [4], three-dimensional reconstruction [5], etc. In the Cloud model, services including Infrastructure as a Service (IaaS), Platform as a Service (PaaS) and Software as a Service (SaaS) are available to consumers with various demands. Among these three service models, IaaS has the capability to provide Virtual Machines (VMs) and enables customers to control the computational resources or networking components without caring about the location, maintenance or management of the physical devices. In general, IaaS can meet the requirement of performing complex tasks or large applications and measure the service according to the Cloud pricing schemes. However, the process of mapping tasks to VMs, namely task scheduling, becomes more complex due to the large number of physical servers, the complex Cloud environment, the variety of consumer requirements and different Service Level Agreements (SLA) compared with traditional distributed or heterogeneous computing environment.
The task Scheduling problem in Cloud, which is known to be NP-hard, is assigning different tasks to corresponding resource node under the Quality of Services (QoS) constraints. Cloud task scheduling is an NP-hard problem. For an NP-hard algorithm, it is generally believed that no algorithm exists that solves each instance in polynomial time [6]. Some traditional task scheduling algorithms have been applied in heterogeneous computing environments such as Min-Min [7], Max-Min [8], etc. Min-Min algorithm allocates tasks with shortest completion time to the corresponding machine. By contrast, Max-Min algorithm prefers to choose larger tasks which can cause smaller task delays for long time. Although these algorithms are simple and can be easily transplanted to the Cloud environment, they may lead to lower efficiency when the number of tasks is very large.
In recent years, bio-inspired algorithms (also called swarm intelligence algorithms), such as Genetic Algorithm (GA), Particle Swarm Optimization (PSO), Simulated Annealing (SA), and Artificial Bee Colony (ABC), have proven able to solve NP problems effectively. These algorithms originate from the behavior of nature biological group or physical phenomena, and have features such as intelligence, self-organization, parallelism, etc. The nature group can perform complex intelligent behavior, even though the capacity of each individual is very limited. All the individuals can cooperate with each other without any centralized control and spontaneously move toward the optimal direction. For example, ants, bee or birds can always be efficient in finding food sources despite the limited ability of communication and intelligence. Inspired by group intelligence, swarm intelligence algorithms can provide solutions for those complex optimization problems which do not have priori knowledge or global model and have the following characteristics: (1) The ability of each individual in the system is relatively simple and their active period is short. (2) There are no special requirements on the problems to be optimized, such as continuity, linearity, constraint, etc. (3) Individuals have the chance to change the environment and the whole system is self-regulated. (4) Centralized control constraints so human interventions or adjustments are not necessary during the problem solving process. (5) Members in the group are independent and distributed, so they can deal with the problem in parallel. (6) Each individual can perceive the environment and cooperate with others, and the cost of increasing or decreasing the scale of population is low. (7) The complex behavior manifested by the group is acquired through the interaction process of simple individuals. Due to the merits of swarm intelligence algorithms mentioned, researchers have introduced many of them to obtain feasible solutions for non-linear, complex, strong constraint or large-scale problems.
Zhan et al. [9] presented an improved Particle Swarm Optimization algorithm to solve the problem of cloud task scheduling. In the iterative process, PSO is combined with simulated annealing algorithm to achieve global fast convergence while avoiding running into local optimal. Zuo et al. [10] proposed a resource allocation framework in which an IaaS provider can outsource its tasks to External Clouds (ECs) when its own resources are not sufficient to meet the demand. They focused on how to allocate users’ tasks to maximize the profit of IaaS provider while guaranteeing QoS. The task scheduling problem is formulated as an integer programming (IP) model, and solved by a self-adaptive learning particle swarm optimization (SLPSO)-based scheduling approach. Chen et al. [11] presented a parallelized genetic ant colony system (PGACS), which consists of the genetic algorithm, including the new crossover operations and the hybrid mutation operations, and the ant colony systems with communication strategies. Tsai et al. [12] proposed parallel cat swarm optimization method, and, in [13], they used the enhanced parallel cat swarm optimization (EPCSO) to solve the numerical optimization and aircraft schedule recovery problem.
Wu et al. [14] implemented genetic algorithm and Chemical Reaction Optimization (CRO) algorithm to optimize task scheduling problem in Cloud environment. They compared the performance the two algorithms in terms of makespan and energy consumption. Mahmood et al. [15] proposed a greedy and a genetic algorithm with an adaptive selection of suitable crossover and mutation operations to allocate and schedule real-time tasks with precedence constraint on heterogamous virtual machines.
Artificial Bee Colony (ABC) [16] algorithm is an optimization algorithm based on the intelligent behaviour of honey bee swarm, which has the ability to get out of a local minimum and can be efficiently used for multivariable, multimodal function optimization. Babu et al. [17] presented a load balancing algorithm based on Artificial Bee Colony (ABC), in which tasks on overloaded virtual machines are selected and migrated to other VMs. Navimipour et al. [18] applied ABC to the task scheduling problem in the cloud environment. A food source represents a feasible task scheduling scheme and is evaluated by the pre-defined fitness. The population is randomly generated in the initialization phase, after which employed, onlooker and scout bees are sent to mine the food sources until the iteration reach its max value.
Simulated annealing is a heuristic method that has been implemented to obtain good solutions of an objective function defined on a number of discrete optimization problems [19]. It has proven to be a flexible local search method and can be successfully applied to many real-life problems. Mandal et al. [20] implemented three meta-heuristic algorithms to solve Cloud task scheduling, including Simulated Annealing, Firefly Algorithm and Cuckoo Search Algorithm. The main goal of these algorithms is to minimize the overall processing time of the VMs which execute a set of tasks.
With the prevalence of Cloud Computing, more users have obtained benefits from Cloud Computing service. For example, one of the most promising cloud computing applications is online data sharing [21], such as photo sharing in Online Social Networks among more than one billion users [22], and online health record system [23]. Massive data centers and high-speed networks enable processing multiple tasks in parallel, and there is a need to schedule or allocate those tasks to appropriate virtual machines efficiently. However, most of the works mentioned above were simulated or tested in a small scale. The number of tasks is up to decades in [10,17,18,20], hundreds in [9,15], or a little more than one thousand in [14]. Those algorithms may not work effectively under high pressure in Cloud environment. Moreover, the pay-per-use payment method and sustainable development policy also have strong correlations with time consumption and the energy consumed. Therefore, there is a need to research on the task scheduling problem in large scale. Motivated by these considerations and the works mentioned above, we present an incremental genetic algorithm to task scheduling problem in Cloud environment. The main contributions of this paper include: (i) proposing an incremental genetic algorithm to tackle large scale task scheduling problem in Cloud environment; (ii) designing an adaptive mutation and crossover rate for the proposed algorithm; and (iii) experimental results obtained using the proposed method compared with the results of applying Min-Min, Max-Min, Standard GA, Min-Min, Max-Min, Simulated Annealing and Artificial Bee Colony Algorithm, showing that our approach can reduce the computation time. In this paper, we investigate some traditional and bio-inspired algorithms that can be applied in the distributed computing environments and propose an adaptive incremental Genetic Algorithm (AIGA) to address the Cloud task scheduling problem. We model the problem based on IaaS instance and set the minimum makespan as the objective.
The remainder of this paper is organized as follows. In Section 2, we describe the task scheduling problem and optimization objective by mathematic model. We also represent two best-known heuristics, Min-Min and Max-Min algorithms, which are widely used to address task scheduling in many platforms. Section 3 provides details of the proposed adaptive incremental genetic algorithm on IaaS. In Section 4, we compare the performance of Min-Min, Max-Min, standard GA and the adaptive incremental GA and discuss the experimental result. Section 5 concludes the paper.

2. Task Scheduling Problem

In a Cloud model, datacenter consists of many physical servers on which VMs are running and user tasks are bound to different types of VMs according to the specific demand. There are two scheduling problems based on different levels. One is deciding to which host the VM should be deployed. The VM scheduling method directly affects resource utilization, energy consumption and efficiency of datacenter in Cloud. Some scheduling algorithms, such as first-come-first-serve or greedy algorithm, may result in an increase in the number of active physical servers, especially when the virtual machine requests are greatly different. Another one is task scheduling problem that determines to which VM the task should be allocated. In the Cloud environment, large-scale tasks are firstly divided into several small tasks by Map/Reduce model, and then distributed to the appropriate Cloud servers in the resource pool. Based on the status of each virtual machine and the quality of service requirement, tasks should be assigned to appropriate VM. Task scheduling strategy affects task completion time and associated execution costs. It is important for both providers and users to improve efficiency and reduce costs by applying proper scheduling methods in Cloud computing.
Cloud Information Service (CIS) and datacenter broker are responsible for scheduling VM and tasks based on user requests and quality requirements. Users are concerned about the cost of services, while service providers expect to maximize efficiency, while minimizing energy consumption and costs. To some extent, these factors relate to the task execution time, so we consider makespan as the optimization objective in this paper. We model the task scheduling problem as follows.
Suppose that there are m tasks T = { t 1 , t 2 , . . . , t m } , and n virtual machines V M = { v m 1 , v m 2 , . . . , v m n } . It is a NP-complete problem which has n m ways to allocate these tasks to VMs.
In general, a VM can be described by CPU, memory bandwidth and storage. Some Cloud service providers such as Amazon use Compute Unit (CU) to describe the CPU capacities. One EC2 Compute Unit (ECU) provides the equivalent CPU capacity of a 1.0–1.2 GHz 2007 Opteron or 2007 Xeon processor [24]. Since Cloud service is used on demand and paid according to the used hours, CU can be used to estimate the required execution time before applying for the cloud resources. When task t i is bound to virtual machine v m j , the occupation time of v m j depends on the length of task and the CU of VM. The execution time for t i on v m j is given by t i j ,
t i j = L i / C j
where i { 1 , 2 , . . . , m } , j { 1 , 2 , . . . , n } , L i represents the length of task t i , and C j denotes the CU of virtual machine v m j .
The occupation time for v m j can be calculated by,
T j = i = 1 m x i j · t i j
where x i j { 0 , 1 } represents the mapping relationship between a task and a virtual machine. When x i j = 1 , t i is allocated on v m j .
It is relevant to point out that the execution time required to complete all the tasks equals the maximum value of all the virtual machines’ occupation time, because tasks are processing in parallel on VM. For the purpose of minimizing makespan, the objective function can be formulated as follows,
min ( max ( T j ) ) = min ( max ( i = 1 m x i j · t i j ) )
where x i j denotes the allocation status and t i j represents corresponding execution time.

3. Adaptive Incremental Genetic Algorithm

Genetic Algorithm (GA) is a bio-inspired algorithm which belongs to Evolutionary Algorithms (EA). Genetic algorithm is based on the idea of Darwin’s Theory of Evolution and Mendelian Genetics. Darwin’s Theory of Evolution indicates that, during the process of biological evolution, individuals who are more able to adapt to the environment have a higher probability of survival; Mendel’s genetic theory demonstrates that genes are kept by chromosome in the form of genes, and gene mutation or chromosome crossover can generate new features for individuals. Those genetic structures with high adaptability are easier to be retained.
The main operators of GA include selection, crossover and mutation. In GA, select operator imitates the natural selection. The purpose of selection is saving “good” individuals. The larger the fitness value is, the higher the probability that allows the individual to enter into the next generation. On the contrary, individuals with smaller fitness value will be less likely to be kept. Selection strategies affect the direction of evolution and convergence rate of the population. Crossover is the process of gene recombination. Ideally, the offspring produced by the crossover of two parents should inherit the excellent features of their parents. Mutation operation produces new individual by changing a few genes. It contributes to the diversity of population and also plays an important role in approaching the optimal solution.
When using GA to optimize different problems, each chromosome represents a candidate solution. Fitness is defined to evaluate the solution. A series of genetic operations (crossover, recombination, mutation, etc.) are used to generate new chromosomes, while select operators will choose better solution to retain. After a number of generations, the group converges to the individuals who are most adaptive to the environment, that is, the optimal solution.
To address task scheduling problem, the chromosome can be encoded with real number. The chromosome represents a feasible solution. Considering the complex cloud environment, the datacenter schedules a great number of tasks in the request list. Standard GA can cost a long time to search for the optimal solution because evaluation, crossover and mutation operators involve more computing. In this paper, an incremental method is proposed to tackle this problem. The tasks are divided into some independent sets, and then every time some tasks are chosen to schedule. Details about the proposed adaptive incremental GA are as follows.

3.1. Encoding

Encoding strategies such as binary encoding, real number encoding and symbol encoding have been applied on different problems. Binary coding maps solution space to a bit string, which is a simple and common encoding method. Similarly, a real-valued chromosome is represented by a real number in the decision space. In the task scheduling problem, the chromosome is encoded by real number. The length of a chromosome equals the number of tasks. The gene’s value represents to which VM the task is allocated.

3.2. Fitness Function

The fitness function is used to evaluate the quality of the candidate solution, which is an important index for selecting the best individual. Usually, the value of objective function can be directly used for fitness measurement, or define the fitness function according to the specific problem. As given in Equation (3), the fitness is calculated by the makespan of a solution. The maximum finish time of among all the VMs is the fitness value.

3.3. Select

There are several selection strategies such as roulette, tournament and sorting selection. The roulette method firstly computes the probability of selection according to each individual’s fitness (the proportion of the individual’s fitness to the sum of all individual fitness value). Then, the disk is divided into N copies, each with a central angle which is proportional to the probability of selection. Choosing an individual depends on a randomly generated number falling into which region. Tournament selects a certain number of individuals, and the individual with highest fitness will be chosen. This process continues until the number of individuals to reach a pre-set size. Sorting selection firstly calculates each individual’s fitness value. After sorting by fitness, the solution will be assigned a probability of selection. Then, the selection is determined by the order of distribution.

3.4. Crossover

There are some crossover strategies such as single-point crossover, two-point crossover, uniform crossover and so on. An example of single-point crossover is shown in Figure 1 .

3.5. Mutation

Mutation operators include uniform mutation, Gaussian mutation, etc. In this paper, we use a new mutation strategy state as follows. First, choose a mutation position, and then exchange its value with a randomly selected gene. The values of the two positions should not be the same, otherwise select another position. The mutation operator is shown in Figure 2.
We define adaptive mutation and crossover operator as follows.
m i = ( 1 α · ( i / m g ) 2 ) λ , c i = β m i
where m i , c i ( 0 , 1 ) , m g is the maximum iteration, i is the current iteration, and λ , α , β are the control parameters.
For each generation, sort the population by fitness in ascending order. For each individual, its mutation rate and crossover rate is calculated by,
m r i j = m i + ( 1 m i ) / s · p j , c r i j = c i c i / s · p j , if l t m r i j = m i m i / s · p j , c r i j = c i + ( 1 c i ) / s · p j , others
where l = l b i 1 l b i , p j is the position of individual j in the population, s is the population size, l b i is the fitness of local best solution in iteration i, l represents the evolutionary trend of the population, and t is the threshold. The main steps of GA-based task scheduling include,
(1)
Initialize GA parameters: Initialize the population size, crossover rate, mutation rate, max generation, etc.
(2)
Initialize job list: Each job is a set of tasks and the number of tasks is equal to the predefined interval size. Define the maximum iteration as the value that max generation divided by the number of jobs (also other finite bound can be used).
(3)
Optimization stage: For each job in the job list, use adaptive GA to optimize the scheduling problem. After randomly generating or initializing the population based on Max-Min, do select, crossover, mutation and record the best individual until the iteration reach the maximum value. Notice that, before handling the next job, the virtual machines’ occupation times should be updated by the optimal solution of the previous job.
The pseudo code of Adaptive Incremental Genetic Algorithm is shown in Algorithm 1.
Algorithm 1 Incremental Genetic Algorithm
Input: Population size N p , max iteration, objective function, control parameters, task list T, VM types, interval size;
Output: The global best solution;
1: Choose tasks from T, the number of tasks equals to the interval size;
2: Initialize the population P
3: Evaluate each individual in P
4: while iteration < max generation do
5:   for each individual in P do
6:    Calculate the p r o b a b i l i t y to be chosen;
7:    if r a n d ( 0 , 1 ) < p r o b a b i l i t y then
8:      Select the individual to the new population P ;
9:    end if
10:   end for
11:   Sort P according to fitness
12:   Calculate the mutation and crossover rate of each individual;
13:   for each individual in P do
14:    if r a n d ( 0 , 1 ) < c r o s s o v e r r a t e then
15:      Perform crossover;
16:    end if
17:    if r a n d ( 0 , 1 ) < m u t a t i o n r a t e then
18:      Perform mutation;
19:    end if
20:   end for
21:   Update the global best solution; iteration++;
22: end while
23: Update the occupation time of each virtual machine

4. Experimental Result

In this section, we give details about the experimental work. Experiments were set to compare the performance of the proposed Adaptive Incremental Genetic Algorithm (AIGA) with that of two traditional scheduling methods, Min-Min and Max-Min, and three meta-heuristic algorithms, Standard Genetic Algorithm (SGA) [14], Artificial Bee Colony (ABC) [18] and Simulated Annealing (SA) [20] algorithm.
Min-Min is based on the idea that shortest unassigned tasks will be scheduled with highest priority to the machine which can complete the task in shortest time. Min-Min begins with a set of unallocated tasks in the waiting list. First, it computes the Minimum Completion Time (MCT) for all tasks on all available machines. Then, it selects the minimum MCT and allocates the task to the corresponding resource. After removing the task from the list, the available time of the machine should be updated. This process repeats until all the tasks in the waiting list have been scheduled. Max-Min is similar to the Min-Min algorithm. In the choosing stage, Max-Min selects the largest task first and allocates it to the machine which has the MCT.
The virtual machine (instance) specifications refer to the scheme of Amazon Elastic Compute Cloud [25,26] (Table 1). The length of tasks is randomly generated ranging from 10 to 1000.
We first compare the performance of AIGA with that of two traditional scheduling methods, Min-Min and Max-Min. Suppose there are ten randomly generated tasks, the length of each tasks is in [814.0, 447.0, 610.0, 319.0, 876.0, 692.0, 663.0, 631.0, 626.0, 655.0]. Then, task execution time on each VM can be calculated as shown in Table 2. Figure 3 represents the makespan and assignment of tasks by Min-Min, Max-Min and AIGA. Note that AIGA can achieve different result as random factors are involved, so Figure 3c shows only one possible solution of AIGA. Min-Min and Max-Min allocate the tasks in the order [3, 1, 2, 8, 7, 9, 6, 5, 0, 4] and [4, 0, 5, 6, 9, 7, 8, 2, 1, 3], respectively. As makespan is the maximum execution time among all the VMs after all the tasks are scheduled, the makespan obtained by each algorithm is 24.31, 19.5 and 18.12, respectively. AIGA has the minimum fitness of optimal solution.
Then, we mainly evaluate the flexibility of SGA and AIGA according to different parameters. It has been long known that crossover rate and mutation rate have an important impact on the performance of GA. Typical values of crossover rate are in the range 0.5–1.0, and mutation rate is chosen in range 0.005–0.05 [27]. Actually, features of the optimization problem should be considered when deciding these parameters. We set up two groups of experiments, one changes mutation rate (MR) and the other alters crossover rate (CR). Both set the number of tasks as 300. Each condition was run 10 times, giving the average fitness value.
Table 3 shows the result when the mutation rate ranges from 0.1 to 0.9 (crossover rate is 0.6). Overall, the fitness of global best solution obtained by AIGA is better than that of SGA; Table 4 shows the result when the crossover rate ranges from 0.1 to 0.9 (mutation rate is 0.3). The fitness of global best solution obtained by AIGA also outperforms that of SGA. Figure 4a,b gives the makespan chart according to different MR and CR. When mutation rate is low, SGA converges slowly which may run into local optimal. On the other hand, AIGA steadily outmatches SGA in the experiments.
We also compare AIGA with Simulated Annealing (SA) and Artificial Bee Colony (ABC) algorithm in the task scheduling problem. As mentioned above, SGA may not find the optimal solution when mutation rate is too small, so we set MR 0.3 and CR 0.8. Then, 300 tasks were generate and each algorithm was run 10 times. Figure 5 shows the boxplot of optimal fitness obtained by SA, ABC, SGA and AIGA. The distribution of fitness acquired by AIGA is more concentrated in a small range in comparison with others. Figure 6 gives convergence curve of the four algorithms. SA and ABC converge relatively slowly compared to SGA and AIGA. AIGA starts from lowest point and gradually increases until to it meets the stop criteria. The optimal fitness of SGA and AIGA are quite close at the end of iteration.
Table 5 gives the optimal fitness when the number of tasks increases from 100 to 90,000 (mutation rate is 0.5 and crossover rate is 0.8). Figure 7 depicts the execution time of SGA, Min-Min, Max-Min and AIGA. Overall, AIGA has the minimum value of makespan. The execution time of these algorithms extend as the number of tasks increases. When there is a small number of tasks, Min-Min and Max-Min perform more efficiently. When the number of tasks exceeds 20,000, AIGA costs least computation time.

5. Conclusions and Future Work

For the task scheduling problem in Cloud environment, the time consumption has impact on the users’ payment and the energy consumed. It is important to optimize allocation of resources to reduce the makespan of processing a batch of tasks. Although GA or other bio-inspired algorithms are effective to solve NP-complete problems, it converges slowly when high-dimensional data are involved. To optimize large-scale task scheduling problem in Cloud environment with less makespan and computation time, we proposed an adaptive incremental Genetic algorithm. Our method called AIGA based on genetic algorithm which has adaptive probability of mutation rate and crossover rate can provide feasible solutions for the allocation of large numbers of tasks with less computation time.
We model the task scheduling as an objective optimization problem where the number of tasks corresponds to the dimensions of the problem. Extensive experiments had been designed to evaluate the performance of AIGA. Compared with two traditional scheduling methods, Min-Min and Max-Min, AIGA can find better solutions and costs less computation time as the number of tasks is very large. We also contrast different parameters of Standard GA by changing the mutation rate and crossover rate. AIGA steadily outperforms SGA in optimizing makespan despite the various control parameters. Two other meta-heuristic algorithms, Simulated Annealing (SA) and Artificial Bee Colony (ABC) algorithm, had been implemented. Experimental results show that the proposed AIGA performs best in terms of minimum objective function value, and has faster convergence speed than SA and ABC.
As part of our future work, we intend to establish a sophisticated mathematical model to describe the task scheduling problem on IaaS, such as introducing data or control dependences between tasks. Furthermore, we will consider evaluating AIGA for other objective functions such as energy consumption, resource utilization or optimize multiple objectives simultaneously.

Author Contributions

K.D., S.F. and S.S.-U.G. conceived and designed the experiments; K.D. performed the experiments and wrote the paper; and S.W.I.S. and W.S. provided guidance for this paper.

Acknowledgments

The authors are grateful for financial support from the research grants: (1) “Nature-Inspired Computing and Metaheuristics Algorithms for Optimizing Data Mining Performance” from the University of Macau (grant No. MYRG2016-00069-FST); (2) “Improving the Protein-Ligand Scoring Function for Molecular Docking by Fuzzy Rule-based Machine Learning Approaches” from the University of Macau (grant No. MYRG2016-00217-FST); and (3) “A Scalable Data Stream Mining Methodology: Stream-based Holistic Analytics and Reasoning in Parallel” from FDCT, Macau government (grant No. FDCT/126/2014/A3).

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Mell, P.; Grance, T. The NIST Definition of Cloud Computing. Available online: http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-145.pdf (accessed on 15 March 2018).
  2. Radu, L.D. Green Cloud Computing: A Literature Survey. Symmetry 2017, 9, 295. [Google Scholar] [CrossRef]
  3. Encalada, W.L.; Sequera, J.L.C. Model to Implement Virtual Computing Labs via Cloud Computing Services. Symmetry 2017, 9, 117. [Google Scholar] [CrossRef]
  4. Gao, J.; Yi, R. Cloud generalized power ordered weighted average operator and its application to linguistic group decision-making. Symmetry 2017, 9, 156. [Google Scholar] [CrossRef]
  5. Chu, P.M.; Cho, S.; Fong, S.; Park, Y.W.; Cho, K. 3D Reconstruction Framework for Multiple Remote Robots on Cloud System. Symmetry 2017, 9, 55. [Google Scholar] [CrossRef]
  6. Aarts, E.; Korst, J.; Michiels, W. Simulated annealing. In Search Methodologies; Springer: Boston, MA, USA, 2005; pp. 187–210. [Google Scholar]
  7. He, X.; Sun, X.; Von Laszewski, G. QoS guided min-min heuristic for grid task scheduling. J. Comput. Sci. Tech. 2003, 18, 442–451. [Google Scholar] [CrossRef]
  8. Mao, Y.; Chen, X.; Li, X. Max-min task scheduling algorithm for load balance in cloud computing. In Proceedings of the International Conference on Computer Science and Information Technology, Barcelona, Spain, 22–24 December 2014; Springer: New Delhi, India, 2014; pp. 457–465. [Google Scholar]
  9. Zhan, S.; Huo, H. Improved PSO-based task scheduling algorithm in cloud computing. J. Inf. Comput. Sci. 2012, 9, 3821–3829. [Google Scholar]
  10. Zuo, X.; Zhang, G.; Tan, W. Self-adaptive learning PSO-based deadline constrained task scheduling for hybrid IaaS cloud. IEEE Trans. Autom. Sci. Eng. 2014, 11, 564–573. [Google Scholar] [CrossRef]
  11. Chen, S.M.; Chien, C.Y. Parallelized genetic ant colony systems for solving the traveling salesman problem. Expert Syst. Appl. 2011, 38, 3873–3883. [Google Scholar] [CrossRef]
  12. Tsai, P.W.; Pan, J.S.; Chen, S.M.; Liao, B.Y.; Hao, S.P. Parallel cat swarm optimization. In Proceedings of the Seventh International Conference on Machine Learning and Cybernetics, Kunming, China, 12–15 July 2008; pp. 3328–3333. [Google Scholar]
  13. Tsai, P.W.; Pan, J.S.; Chen, S.M.; Liao, B.Y. Enhanced parallel cat swarm optimization based on the Taguchi method. Expert Syst. Appl. 2012, 39, 6309–6319. [Google Scholar] [CrossRef]
  14. Wu, L.; Wang, Y.J.; Yan, C.K. Performance Comparison of Energy-aware task scheduling with GA and CRO algorithms in Cloud Environment. Appl. Mech. Mater. 2014, 596, 204–208. [Google Scholar] [CrossRef]
  15. Mahmood, A.; Khan, S.A. Hard Real-Time Task Scheduling in Cloud Computing Using an Adaptive Genetic Algorithm. Computers 2017, 6, 15. [Google Scholar] [CrossRef]
  16. Karaboga, D.; Basturk, B. A powerful and efficient algorithm for numerical function optimization: Artificial bee colony (ABC) algorithm. J. Glob. Optim. 2007, 39, 459–471. [Google Scholar] [CrossRef]
  17. Babu, K.R.; Samuel, P. Enhanced bee colony algorithm for efficient load balancing and scheduling in cloud. In Innovations in Bio-Inspired Computing and Applications; Springer: Cham, Switzerland, 2016; pp. 67–78. [Google Scholar]
  18. Navimipour, N.J. Task scheduling in the cloud environments based on an artificial bee colony algorithm. In Proceedings of the 2015 International Conference on Image Processing, Production and Computer Science, Istanbul, Turkey, 3–4 June 2015; pp. 38–44. [Google Scholar]
  19. Fidanova, S. Simulated annealing for grid scheduling problem. In Proceedings of the IEEE John Vincent Atanasoff 2006 International Symposium on Modern Computing, Sofia, Bulgaria, 3–6 October 2006; pp. 41–45. [Google Scholar]
  20. Mandal, T.; Acharyya, S. Optimal task scheduling in cloud computing environment: Meta heuristic approaches. In Proceedings of the 2015 2nd International Conference on Electrical Information and Communication Technology (EICT), Khulna, Bangladesh, 10–12 December 2015; pp. 24–28. [Google Scholar]
  21. Wang, S.; Liang, K.; Liu, J.K.; Chen, J.; Yu, J.; Xie, W. Attribute-based data sharing scheme revisited in cloud computing. IEEE Trans. Inf. Forensics Secur. 2016, 11, 1661–1673. [Google Scholar] [CrossRef]
  22. Liang, K.; Liu, J.K.; Lu, R.; Wong, D.S. Privacy concerns for photo sharing in online social networks. IEEE Internet Comput. 2015, 19, 58–63. [Google Scholar] [CrossRef]
  23. Liu, J.; Huang, X.; Liu, J.K. Secure sharing of personal health records in cloud computing: Ciphertext-policy attribute-based signcryption. Future Gener. Comput. Syst. 2015, 52, 67–76. [Google Scholar] [CrossRef]
  24. Wen, J.; Lu, L.; Casale, G.; Smirni, E. Less can be more: Micro-managing vms in amazon EC2. In Proceedings of the 2015 IEEE 8th International Conference on Cloud Computing, New York, NY, USA, 27 June–2 July 2015; pp. 317–324. [Google Scholar]
  25. Amazon EC2 Pricing. Available online: https://aws.amazon.com/ec2/pricing/on-demand/?nc1=h_ls (accessed on 1 April 2018).
  26. Previous Generation Instances. Available online: https://aws.amazon.com/ec2/previous-generation/?nc1=h_ls (accessed on 1 April 2018).
  27. Srinivas, M.; Patnaik, L.M. Adaptive probabilities of crossover and mutation in genetic algorithms. IEEE Trans. Syst. Man Cybern. 1994, 24, 656–667. [Google Scholar] [CrossRef]
Figure 1. Crossover operator.
Figure 1. Crossover operator.
Symmetry 10 00168 g001
Figure 2. Mutation operator.
Figure 2. Mutation operator.
Symmetry 10 00168 g002
Figure 3. Tasks assignment by: (a) Min-Min; (b) Max-Min; and (c) AIGA.
Figure 3. Tasks assignment by: (a) Min-Min; (b) Max-Min; and (c) AIGA.
Symmetry 10 00168 g003
Figure 4. Makespan by SGA and AIGA. (a) MR changes; (b) CR changes.
Figure 4. Makespan by SGA and AIGA. (a) MR changes; (b) CR changes.
Symmetry 10 00168 g004
Figure 5. Optimal fitness of SA, ABC, SGA and AIGA.
Figure 5. Optimal fitness of SA, ABC, SGA and AIGA.
Symmetry 10 00168 g005
Figure 6. Convergence of SA, ABC, SGA and AIGA.
Figure 6. Convergence of SA, ABC, SGA and AIGA.
Symmetry 10 00168 g006
Figure 7. Execution time of Min-Min, Max-Min, AIGA and SGA.
Figure 7. Execution time of Min-Min, Max-Min, AIGA and SGA.
Symmetry 10 00168 g007
Table 1. VM types.
Table 1. VM types.
Instance TypeCU
1c3:large7
2c3:xlarge14
3c3:2xlarge28
4c3:3xlarge55
5c3:4xlarge108
6c4:large8
7c4:xlarge16
8c4:2xlarge31
9c4:4xlarge62
10c4:8xlarge132
Table 2. Execution time of each virtual machine.
Table 2. Execution time of each virtual machine.
VM0VM1VM2VM3VM4VM5VM6VM7VM8VM9
0101.7550.8826.2613.136.17116.2958.1429.0714.87.54
155.8827.9414.427.213.3963.8631.9315.968.134.14
276.2538.1319.689.844.6287.1443.5721.7911.095.65
339.8819.9410.295.152.4245.5722.7911.395.82.95
4109.554.7528.2614.136.64125.1462.5731.2915.938.11
586.543.2522.3211.165.2498.8649.4324.7112.586.41
682.8841.4421.3910.695.0294.7147.3623.6812.056.14
778.8839.4420.3510.184.7890.1445.0722.5411.475.84
878.2539.1320.1910.14.7489.4344.7122.3611.385.8
981.8840.9421.1310.564.9693.5746.7923.3911.916.06
Table 3. Fitness of optimal solution.
Table 3. Fitness of optimal solution.
MRSGAAIGA
0.1594.933355.407
0.2373.862350.565
0.3372.02365.267
0.4384.447374.111
0.5376.61365.998
0.6370.013366.195
0.7365.656364.522
0.8367.732366.922
0.9353.147352.397
Table 4. Fitness of optimal solution.
Table 4. Fitness of optimal solution.
CRSGAAIGA
0.1353.558338.128
0.2372.904363.381
0.3390.524371.02
0.4363.018345.526
0.5360.534354.471
0.6369.683365.282
0.7360.473343.74
0.8369.95357.186
0.9364.27352.722
Table 5. Fitness of optimal solution.
Table 5. Fitness of optimal solution.
Number of TasksMin-MinMax-MinSGAAIGA
100128.23118.2118.756117.592
50005993.545986.276242.0975984.747
10,00011,978.111,973.2912,408.9111,971.14
15,00017,979.9317,974.4422,354.8317,971.24
20,00023,691.623,689.8135,008.5123,686.19
25,00029,812.0829,808.8550,104.0129,804.54
30,00035,720.4535,722.9466,403.6735,717.09
35,00041,669.2841,669.3782,303.7641,663.41
40,00047,685.0347,689.28101,092.947,682.35
45,00053,759.3253,770.26122,641.153,761.93
50,00059,652.8359,661.76144,997.259,653.09
60,00071,799.6771,809.81195,167.371,796.99
70,00083,595.8383,607.86241,417.483,590.55
80,00095,387.5395,401.51292,828.495,380.96
90,000107,296.4107,312.2342,214.8107,287.4

Share and Cite

MDPI and ACS Style

Duan, K.; Fong, S.; Siu, S.W.I.; Song, W.; Guan, S.S.-U. Adaptive Incremental Genetic Algorithm for Task Scheduling in Cloud Environments. Symmetry 2018, 10, 168. https://doi.org/10.3390/sym10050168

AMA Style

Duan K, Fong S, Siu SWI, Song W, Guan SS-U. Adaptive Incremental Genetic Algorithm for Task Scheduling in Cloud Environments. Symmetry. 2018; 10(5):168. https://doi.org/10.3390/sym10050168

Chicago/Turabian Style

Duan, Kairong, Simon Fong, Shirley W. I. Siu, Wei Song, and Steven Sheng-Uei Guan. 2018. "Adaptive Incremental Genetic Algorithm for Task Scheduling in Cloud Environments" Symmetry 10, no. 5: 168. https://doi.org/10.3390/sym10050168

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