Skip to main content

A genetic algorithm-based job scheduling model for big data analytics

Abstract

Big data analytics (BDA) applications are a new category of software applications that process large amounts of data using scalable parallel processing infrastructure to obtain hidden value. Hadoop is the most mature open-source big data analytics framework, which implements the MapReduce programming model to process big data with MapReduce jobs. Big data analytics jobs are often continuous and not mutually separated. The existing work mainly focuses on executing jobs in sequence, which are often inefficient and consume high energy. In this paper, we propose a genetic algorithm-based job scheduling model for big data analytics applications to improve the efficiency of big data analytics. To implement the job scheduling model, we leverage an estimation module to predict the performance of clusters when executing analytics jobs. We have evaluated the proposed job scheduling model in terms of feasibility and accuracy.

1 Introduction

Big data analytics (BDA) applications are a new category of software applications that process large amounts of data using scalable parallel processing infrastructure to obtain hidden value. Hadoop [1] is the most mature open-source big data analytics framework, which implements the MapReduce programming model [2] proposed by Google in 2004 to process big data. Scalability is the most important feature of Hadoop, mainly because it can easily add compute nodes in the original cluster to analyze big data.

The performance of big data analytics application is related to the characteristics of jobs and the configuration of clusters, which have a direct impact on performance of big data analytics applications. When there are multiple jobs that need to be executed with diverse cluster configurations, the solution space of job scheduling is huge and manual job scheduling is inefficient and can hardly achieve the best performance.

Genetic algorithms (GAs) [3] are used to obtain optimized solutions from a number of candidates. GAs are inspired by an evolutionary theory: weak and unit species are faced with extinction by natural selection and the strong ones have greater opportunity to pass their genes to future generations via reproduction [4]. Compared with other classic optimization methods, GAs have its specific advantages in terms of its broad applicability, ease of use, and global perspective [5]. GAs are particularly useful to one-objective and multiple-objective optimization problems [6] that make one- or multi-objective attainment to the optimum.

The contribution of this work is mainly twofold. First, we propose an estimation module to predict the performance of Hadoop clusters when executing different big data analytics jobs, which can be used by GAs. Then, with the effective information which the estimation module provides, we present a genetic algorithm-based job scheduling model for geo-distributed data.

We evaluate the proposed solution using the data centers and cluster nodes from the Amazon EC2 [7] platform. The experiment results show the proposed job scheduling model is effective and accurate.

The remainder of the paper is organized as follows: Section 2 describes the five basic stages of MapReduce data processing that can be utilized in the calculation of estimation module. Section 3 presents the genetic algorithm-based job scheduling model. Section 4 details the performance estimation module, which is used by the algorithm for the calculation of time objective. Section 5 implements and evaluates the genetic algorithm. Section 6 covers the related work. Section 7 concludes the paper.

2 Related work

There have been numerous works devoted to Hadoop’s performance prediction. Berlińska and Drozdowski [8] propose a mathematical model of MapReduce and analyze MapReduce distributed computations as a divisible load scheduling problem. However, they do not consider the system constraints. There is also some work on optimizing MapReduce [9, 10]. Zaharia et al. [10] proposed a prediction model for sub-tasks of Hadoop job, rather than the entire job. Xu et al. [11] extracted characteristic values related to Hadoop performance and utilized machine learning methods to find the optimal value, without building performance models. Han et al. [12] proposed a Hadoop performance prediction model. However, it does not consider the data preparation phase of this thesis.

There are also some GA-based approaches proposed in job scheduling. Krishan Veer and Zahid [13] presents a design and eventual analysis of a scheduling strategy using GA that schedules the job with the objective of minimizing the turnaround time of the job. The evaluation is simplified due to the limitations. In [14], the application of meta-heuristic for cloud task scheduling on Hadoop is investigated. A scheduling algorithm using execution time, order of task arrival, and location of data (i.e., assign task to the node which contains the required data) to determine the best execution schedule is presented. But the performance prediction model is unintelligible, and the cost is not taken in consideration.

3 Background

Hadoop consists of the MapReduce algorithm and the Hadoop Distributed File System (HDFS) [15]. The Hadoop workflow includes five phases, which is illustrated in Fig. 1.

  • Prepare. The source data in the local disk is uploaded to HDFS in this phase. According to the predefined partition size of the data segmentation, source data are segmented in blocks first and then stored a copy to the data node in the pipeline way according to the network topology distance.

    Fig. 1
    figure 1

    Traditional MapReduce workflow

  • Map. Each mapper reads data blocks from HDFS and generates key-value pair <k1,v1> of the input data. Then, it executes a user-defined map method which generates intermediate data <k2,v2>.

  • Copy. It is also called shuffle. The intermediate data from the mapper nodes is passed to the appropriate reducer based on the key. The process is from the completion of the first map wave to all intermediate data mapper outputs having been transferred to the reducer.

  • Sort. This stage occurs before the reduce phase. The values of the output data from the map are sorted by the sort algorithm in accordance with the different keys and output the key-value pairs <k2,list(v2)> for the reduce phase. All the values are sorted in list(v2).

  • Reduce. In this phase, the user-defined reduce method are executed to generate the key-value pairs <k3,v3> as the final result.

This paper utilizes the performance module for the case of this paper to predict Hadoop data processing performance including the abovementioned five phases. After the time consumption characteristics have been predicted, we can infer the cost of big data processing jobs, which depends on the characteristics of time consumption.

4 Design of the genetic algorithm-based job scheduling model

4.1 Overall design of the GA-based approach

The working flow of the GA-based decision-making for job scheduling is shown in Fig. 2, and the overall decision-making process is as follows. First, the estimation module is used to model the clusters and jobs. Then, some simulations are conducted to collect job execution information, such as the time and cost array which shows all the time and cost taken by each job run on all clusters. After that, the time and cost information is used in certain framework where GAs give optimized solutions for the job scheduling schema.

Fig. 2
figure 2

Flow diagram of the decision-making for job scheduling

For big data, we choose a certain cluster deployment way to process them. However, different processing jobs do not always have the same performance with the same cluster configuration, due to the job characteristics and one job also cannot obtain the consistent result with different clusters because of the cluster or Hadoop characteristics.

When simultaneously assigning multiple jobs to process data in one data center, there are many kinds of optional cluster configuration circumstances for each job, which can bring about a large number of job scheduling schemas. So choosing the one with best performance among those jobs scheduling schema is another major issue to be addressed in this paper. In order to get optimized solutions in job scheduling decision, we use the genetic algorithm to choose solutions which have the minimal finishing time and cost. These are the objectives of the job scheduling problems.

We give a general mathematical description of the problem and then create the appropriate objective optimization model based on genetic algorithms: take the data processing in a data center, for example, and assume that a data center has N optional clusters and M jobs to be executed. We use an integer vector to represent the ultimate job scheduling scheme, S i indicates that the job i is assigned to the cluster S i , where S i ∈ [0,M]. So far, we have achieved getting the job scheduling scheme which have the shortest overall execution time by genetic algorithm. The overall execution time and cost refers to the time it consumed when all jobs complete the execution.

$$ T_{i}={\sum\nolimits}_{j=0}^{M}\text{ST}_{ij}\times E(i,j) $$
(1)
$$ C_{i}={\sum\nolimits}_{j=0}^{M}\text{SC}_{ij}\times E(i,j) $$
(2)

Here, we utilize Eqs. (18) and (19) to respectively represent the execution time and cost of all jobs assigned to one cluster, which are the objectives we considered in genetic algorithm. In order to facilitate the calculation of the overall execution time of job scheduling scheme, we add E(i,j) to indicate whether job i is assigned to the cluster j. The explanations of the symbols in the two equations are described one by one as follows:

  1. 1)

    i represents the sequence number of a job with the scope of [0,N].

  2. 2)

    j∈ [0,M] represents the sequence number of a cluster.

  3. 3)

    ST ij in Eq. (18) is the time a job consumes when running in the cluster j. The calculation of it will be achieved by performance estimation module in the next section.

  4. 4)

    SC ij =C ij ×ST ij ×N clus in Eq. (19) is to calculate the cost of running a job in the cluster j, in which C ij represents the cost of running a certain node per second and N clus is the number of nodes in cluster j.

  5. 5)

    When job i is assigned to cluster j, E(i,j)=1; otherwise E(i,j)=0.

A chromosome corresponds to a unique solution in the solution space. GAs can typically make use of Booleans, real numbers, and integers to encode a chromosome [9]. The representation of chromosome in our case is using integer (starting from 0) sharing the idea of [10]. That is to say, we are using an integer vector V=[V 0,V 1,Λ,V i ,Λ,V p−1] (where p is the number of decision variables, and in our case, it is 12: the number of jobs) to represent a solution which is a natural number and acts as a pointer to the sequence of the cluster to which the job is assigned to execute. For example, a chromosome [0, 6, 2, 8, 2, 4, 5, 9, 6, 1, 3, 7] represents that a solution chooses the first cluster whose sequence number is 0 to execute job 0 and chooses the eighth cluster for job 9, the eleventh cluster as the processing cluster of the third job, and so on. Based on the chosen allocation strategies, the GAs then decide its fitness using the objective Eqs. (1) and (2) introduced.

5 Performance estimation module of job execution

5.1 Assumption

To achieve the genetic algorithm for job scheduling problem, we need to input the source data of the two objectives: time and cost array. In this paper, we propose a performance estimation module which can predict the execution time and cost of data processing jobs, according to different characteristics. The paper makes the following assumptions for simplification:

  • About the reduce wave, we use recommendations in [16] and assumes that the maximum number of reduce that can be executed simultaneously is 1.

  • We do not support speculative execution. That means, we will not repeat map or reduce execution and select the faster as the final result, killing the slower one, for it proved to have little contribution to improve the overall execution time.

5.2 Total execution time overview

In this paper, performance-related parameters are divided into four categories: cluster, hadoop&HDFS, application, and obtained by module. The symbol and explanation of all parameters are listed in Table 1.

Table 1 Symbol and explanation of all parameters

The overall data processing time contains two parts: one part is the preparation time of the source data and the other is the time to perform the data processing job. Equation (3) shows the overall time to process data by clusters. The overall time for data processing in each data center needs to be calculated, and the maximum of them will be taken as the final result.

$$ T_{\text{total}} = {\max}(T_{\text{prepare}} + T_{\text{job}}) $$
(3)

1. Prepare time

We need to upload the data, including the replicas, from the local disk distributed in multiple data centers to their own HDFS (Eq. (4)) in this phase, where the bandwidth between node in local cluster is B ii .

$$ T_{\text{prepare}} = \frac{\text{DS}_{i} \times N_{\text{reps}}}{B_{ii}} $$
(4)

2. Job time

(a) Map time

Map phase execution time can be calculated by Eq. (5), where the average processing time of input data block in each wave multiplied by the corresponding number of wave is the map time of the ith data center. The average throughput of the map is obtained from the average processing time of running the job with the input data whose block size is given. The wave number of each data center is calculated by Eq. (6) and the number of the data blocks divided is calculated by Eq. (7).

$$ T_{\text{map}} = \frac{P_{i}}{M_{\text{thruput}}} \times N_{\text{mw}} $$
(5)
$$ N_{\text{mw}} = \left \lceil \frac{{\max}\left(N_{\text{sm}},\left \lceil \frac{N_{\mathrm{p}}}{N_{\text{nodes}}} \right \rceil \right)}{N_{\text{sm}}} \right \rceil $$
(6)
$$ N_{\mathrm{p}} = \frac{\text{DS}_{i} \times N_{\text{reps}}}{P_{i}} $$
(7)

(b) Copy time

This stage refers to the output data of the map copied to reduce. Since we only consider the case of one local cluster or different clusters in respective data center, it does not involve the transfer of data to remote and we need not consider the problem of bandwidth across the cluster between different data centers. When output data is copied to reduce, it often occurs that a plurality of thread copy data to reduce at the same time. The theoretical maximum copy speed is the sum of all thread. But in reality, copy speed is also limited by the local network bandwidth. Therefore, the actual copy speed of one thread is calculated as Eq. (8). The entire local copy speed is Eq. (8) multiplied by the number of thread (Eq. (9)). This paper argues that all nodes of a cluster are in the same subnet; thus, only the local copy speed and map output data size will have an impact on the copy time (Eq. (10)).

$$ \begin{aligned} V_{\text{CopyThread}} = & \,{\min}\left(\frac{B_{ii}}{{\min}\left(N_{\text{sr}},\left \lceil \frac{N_{\text{reduces}}}{N_{\text{nodes}}} \right \rceil \right) \times N_{\text{cp\_threads}}} \right.\\ & \left.,V_{\text{cp\_thread}} {\vphantom{\frac{\frac{1}{2}}{\frac{2}{1}}}}\right) \end{aligned} $$
(8)
$$ V_{\text{LocalCopy}} = V_{\text{CopyThread}} \times N_{\text{reduces}} \times N_{\text{cp\_threads}} $$
(9)
$$ T_{\text{copy}} = \frac{\text{DS}_{i} \times N_{\text{reps}} \times \text{RIO}_{\text{map}}}{V_{\text{LocalCopy}}} $$
(10)

(c) Sort time

The time estimation of the sort stage is independent on the network, which is shown in Eq. (11). Among them, the calculation of the form is shown in Eq. (12).

$$ T_{\text{sort}}= \left\{ \begin{array}{ll} \frac{2\times \left \lceil \frac{N_{\text{reduces}}}{N_{\text{nodes}}} \right \rceil} {V_{\text{dw}}} &\times \, \lambda_{N_{\text{Spaths}}} \left(\frac{\text{DS}_{i}\times N_{\text{reps}}\times \text{RIO}_{\text{map}}}{N_{\text{reduces}}\ast S_{\text{buff}}}\right),\\ & \frac{DS_{i}}{N_{\mathrm{reduces \ast S_{\text{buff}}}}}> 1\\ & \qquad 0, \text{else} \end{array}\right. $$
(11)
$$ \lambda_{F}(n,b) = \left(\frac{1}{2F(F-1)} n^{2} + \frac{3}{2}n - \frac{F^{2}}{2(F-1)}\right)\ast b $$
(12)

(d) Reduce time

The output data of sort is the input of the reduce phase. During this phase, data processing and writing to HDFS are operated simultaneously; thus, we can take the maximum time of them and the final time of this stage (Eq. (13)).

$$ T_{\text{reduce}} = {\max}(T_{\text{rp}},T_{\text{ro}}) $$
(13)

Calculating the processing time of one reduce and then multiplied by the number of reduces can get the overall processing time of reduce (Eq. (14)). In this paper, it is assumed that there is only one reduce wave. The circumstances we considered is transferring all source data to a local data center to build a cluster or setting up clusters simultaneously in respective data centers without transferring source data; therefore, the source data in these two circumstances are different.

$$ T_{\text{rp}} = \frac{\text{DS}_{i} \times N_{\text{reps}} \times \text{RIO}_{\text{map}}}{N_{\text{reduces}} \times R_{\text{thruput}}} \times \left \lceil \frac{N_{\text{reduces}}} {N_{\text{nodes}}\times N_{\text{sr}}} \right \rceil $$
(14)

The duplication is set as 3 in HDFS, including the original data set. In this paper, the remote cluster does not exit and all nodes are in the same subnet, so it is not time-consuming to transfer the copy to a remote cluster. One copy will be written to the local hard disk, while the remaining two copies will be stored in other nodes in the local cluster. This process should be limited to the local bandwidth. We choose the maximum time of the local disk writing time and the local clusters writing time as the reduce output writing time (Eq. (15)).

$$ T_{\text{ro}} = {\max} \left(T_{\text{rp\_disk}},T_{\text{rp\_local}}\right) $$
(15)

The local disk writing time of a copy is equal to the average amount of data written to the local disk in each node divided by the disk write speed (Eq. (16)). The disk write speed is obtained by Bonnie++ [17], a tool for disk I/O performance test.

$$ T_{\text{rp\_disk}} = \frac{\text{DS}_{i} \times \text{RIO}_{\text{map}} \times N_{\text{reps}}}{N_{\text{nodes}}*V_{\text{dw}}} $$
(16)

Because of the assumption that one reduce only produce a single output file and two copies of it will be copied to the other two nodes in local cluster, the copy speed is limited by the bandwidth of the subnet the cluster belongs to. We utilize Eq. (17) to estimate the minimum store speed of each reduce data copy in the local cluster.

$$ \begin{aligned} V_{\text{rp\_local}} = & \,{\min} \left({\vphantom{\frac{\frac{1}{2}}{\frac{2}{1}}}} V_{\text{reduce\_rep}}\right. \\ & \left.,\frac{B_{ii}}{{\min} \left(N_{\text{sr}},\left \lceil \frac{N_{\text{reudces}}}{N_{\text{nodes}}} \right \rceil \right)*(N_{\mathrm{reps-1}})} \right) \end{aligned} $$
(17)

The reduce output data size divided by Eq. (17) is the maximum time of data copies to store in the local cluster (Eq. (18)).

$$ T_{\text{rp\_local}} = \frac{\text{DS}_{i} \times \mathrm{RIO_{map}}\times \mathrm{RIO_{reduce}}}{N_{\text{reduce}}}*\frac{1}{V_{\text{rp\_local}}} $$
(18)

The copy phase from the first wave completion of the map results in the overlap between these two phases; thus, the job execution time of one cluster in respective data center is shown as Eq. (19).

$$ \begin{aligned} T_{\text{job}}= \left\{\begin{array}{ll} T_{\text{map}}+\frac{T_{\text{copy}}}{N_{\text{mw}}}+T_{\text{sort}}+T_{\text{reduce}}, & T_{\text{map}}>T_{\text{copy}}\\ \frac{T_{\text{map}}}{N_{\text{mw}}}+T_{\text{copy}}+T_{\text{sort}}+T_{\text{reduce}}, & T_{\text{map}}<T_{\text{copy}} \end{array}\right. \end{aligned} $$
(19)

6 Evaluation

6.1 Setting of the experiment

Suppose we have the following hypothetical scenario: there are 12 data processing jobs and 10 clusters which have specific configuration. This is considered as one of the examples which is discussed in detail in this paper. We utilize Amazon EC2 (Amazon Elastic Compute Cloud) as a test platform. The types of the nodes in the experiment are all m1.large which is one of the node types that AWS supports and their configuration is the same to each other, namely, 64-bit RHEL (short for Red Hat Enterprise Linux) operating system, two core, 7.5-G memory, 2 420-G storages. The cost of each node is $0.34 per hour. The data center is located in US East (Northern Virginia), and the bandwidth we test using Netperf [18] is 282.4 MB/s.

The parameters of jobs and cluster configuration are listed in Tables 2 and 3, respectively. Table 4 shows other related parameters. As illustrated previously, we have 12 jobs and 10 clusters. For each job, it can be allocated to any of the 10 clusters. So, there will be allocation schemes.

Table 2 The parameters of jobs
Table 3 The parameters of clusters
Table 4 Other related parameters

Our goal for job scheduling is to choose the best allocation scheme from all of the possible schemes using GAs. Before making this decision, we utilize the performance estimation module to predict the execution time and cost which are the decision indicators in GAs. Then, we get a two dimensional time and cost array which is shown in Tables 5 and 6, respectively. From Tables 5 and 6, we can see that different jobs running on the same cluster may not have the same time and cost consumption. Also, same jobs can take different times and costs to finish its execution in different clusters.

Table 5 Execution time
Table 6 Execution cost

In our implementation, we choose to use Java-based GA frameworks. There are some popular implementations, such as JGap [19], ECJ [20], and JMetal [21]. When compared with JMetal’s counter-parts, the design of JMetal has a good separation of concerns in terms of its easiness for applying different GAs after a problem is abstracted. Therefore, JMetal is chosen as the GA framework in our paper. In our evaluations, GA Non-dominated Sorting Genetic Algorithm (NSGA-II) is chosen as the concrete algorithm. Algorithm parameters setting in our implementation includes the maximum evaluations, the crossover probability, and the mutation operator, as shown in Table 7. As choosing integer chromosome, single-point crossover, bit-flip mutation, and Binary tournament2 operators are selected drawing on the experience of [22]. Reference [6] talks about how the operators work to make a change to the chromosome in GAs.

Table 7 Parameters for NSGA-II

6.2 Results

In order to evaluate the effectiveness of the proposed performance estimation module, we choose US East (Northern Virginia) data center to set up real clusters in Amazon EC2 platform and run some experimental jobs and compare them to the results obtained from performance estimation module (Fig. 3). By comparing the results estimated and real results in Fig. 3, we can find that our performance module estimates accurately the data processing time in general. Bandwidth and resource load may lead to delays in real world when compared with predicted time performance, but this part of error can be acceptable. Since the estimation of cost performance depends on the times, so deduce the effectiveness of it from the above conclusion.

Fig. 3
figure 3

Comparison between real measurement and module prediction

Meanwhile, in order to compare the performance of NSGA-II with other algorithms, we choose simple allocation method for comparison, which is a random allocation policy: all jobs are assigned to a group of clusters randomly. We verify and evaluate each job scheduling policy derived by NSGA-II and simple allocation method. The results are shown in Tables 8 and 9, respectively. From these three tables, we can find that the scheme obtained from GA-based approach takes 989.5 time units and $2.6 to finish all of 12 jobs’ execution while the other scheme from a simple method takes 2638.7 time units and $3.10. So, GA-based approach can do the optimized decision and make the data processing have the fastest execution efficiency and minimum cost. According to the GA-based scheme, data processing jobs can be finished as fast as possible with the optimized cost, and therefore, users can have better experience and can be more satisfied.

Table 8 NSGA-II-based approach
Table 9 Simple scheduling method

7 Conclusions

Job scheduling is one of the most important issues in big data analytics. In this paper, we propose a genetic algorithm-based approach, which uses a performance estimation module we put forward, for obtaining optimized jobs scheduling scheme that have the optimized time and cost consumption. The optimized solutions can be used to enable effective scheduling strategies, and then in the actual running, system can make use of the chosen scheduling scheme to execute data processing jobs. The whole process is evaluated and the results show that our approach is feasible with acceptable performance and accuracy. Due to the limitations in our performance estimation module, currently, the evaluation is simplified and in the future, the approach will be extended to be more complete and precise.

References

  1. A Hadoop, Apache Software Foundation (2016). http://hadoop.apache.org.

  2. J Dean, S Ghemawat, MapReduce: simplified data processing on large clusters. Commun. ACM. 51(1), 107–113 (2008).

    Article  Google Scholar 

  3. M Mitchell, An introduction to genetic algorithms. Journal of Computing Sciences in Colleges. 20(1) (2004).

  4. A Konak, DW Coit, AE Smith, Multi-objective optimization using genetic algorithms: a tutorial. Reliab. Eng. Syst. Saf. 91(9), 992–1007 (2006).

    Article  Google Scholar 

  5. K Deb, An introduction to genetic algorithms. Sadhana. 24(4–5), 293–315 (1999).

    Article  MathSciNet  MATH  Google Scholar 

  6. SM Thede, An introduction to genetic algorithms. J. Comput. Sci. Coll. 20(1), 115–123 (2004).

    Article  Google Scholar 

  7. E Amazon, Amazon elastic compute cloud (amazon ec2). Amazon Elastic Compute Cloud (Amazon EC2) (2015). https://aws.amazon.com/ec2/.

  8. J Berlińska, M Drozdowski, Scheduling divisible mapreduce computations. J. Parallel Distrib. Comput. 71(3), 450–459 (2011).

    Article  MATH  Google Scholar 

  9. T Nykiel, M Potamias, C Mishra, G Kollios, N Koudas, MRShare: sharing across multiple queries in MapReduce. Proc. VLDB Endowment. 3(1–2), 494–505 (2010).

    Article  MATH  Google Scholar 

  10. M Zaharia, A Konwinski, A Joseph, R Katz, I Stoica, in Proceedings of OSDI 201. Improving MapReduce performance in heterogeneous environments, (2008), pp. 29–42.

  11. L Xu, in Parallel and Distributed Processing Symposium Workshops & PhD Forum (IPDPSW), 2012 IEEE 26th International. MapReduce framework optimization via performance modeling (Shanghai, China, 2012), pp. 2506–2509.

  12. J Han, M Ishii, H Makino, in Computer Science and Information Technology (CSIT), 2013 5th International Conference on. A Hadoop performance model for multi-rack clusters (Amman, Jordan, 2013), pp. 265–274.

  13. S Krishan Veer, R Zahid, in Computer Engineering and Applications (ICACEA), 2015 International Conference on Advances in. A GA based job scheduling strategy for computational grid (Ghaziabad, India, 2015), pp. 29–34.

  14. A Syed Hasan, R Kamran, in 2015 International Conference on Open Source Systems & Technologies (ICOSST). Cloud task scheduling using nature inspired meta-heuristic algorithm, vol 2 (IEEE, 2015), pp. 158–164.

  15. K Shvachko, H Kuang, S Radia, R Chansler, in 2010 IEEE 26th Symposium on Mass Storage Systems and Technologies (MSST). The hadoop distributed file system (Nevada State, Molossia, 2010), pp. 1–10.

  16. T White, Hadoop: The definitive guide (O’Reilly Media, April 2015).

  17. Bonnie, Bonnie++ (2012). http://sourceforge.net/projects/bonnie/. Accessed 19 July 2015.

  18. Netperf, Netperf (2012). http://www.netperf.org/netperf/. Accessed 19 July 2015.

  19. DY Chen, TR Chuang, SC Tsai, JGAP: a Java-based graph algorithms platform. Softw. Pract. Experience. 31(7), 615–635 (2001).

    Article  MATH  Google Scholar 

  20. site, site (2015). https://cs.gmu.edu/~eclab/projects/ecj/. Accessed 19 July 2015.

  21. JJ Durillo, AJ Nebro, jMetal: a Java framework for multi-objective optimization. Adv. Eng. Softw. 42(10), 760–771 (2011).

    Article  Google Scholar 

  22. W Zhang, KM Hansen, in Engineering of Complex Computer Systems, 2009 14th IEEE International Conference on, IEEE. An evaluation of the NSGA-II and MOCell genetic algorithms for self-management planning in a pervasive service middleware, (2009), pp. 192–201.

Download references

Acknowledgements

This project is supported by the National Natural Science Foundation of China (Grant No. 61402533), the Fundamental Research Funds for the Central Universities (Grant No. 16CX02047A), and the Scientific Research Foundation of China University of Petroleum (Grant No. Y1307021).

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Qinghua Lu.

Additional information

Competing interests

The authors declare that they have no competing interests.

Rights and permissions

Open Access This article is distributed under the termsof the Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Lu, Q., Li, S., Zhang, W. et al. A genetic algorithm-based job scheduling model for big data analytics. J Wireless Com Network 2016, 152 (2016). https://doi.org/10.1186/s13638-016-0651-z

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s13638-016-0651-z

Keywords