How To Balance A Cloud Based System

Size: px
Start display at page:

Download "How To Balance A Cloud Based System"

Transcription

1 A SURVEY OF CLOUD BASED LOAD BALANCING TECHNIQUES 1 AAYUSH AGARWAL, 2 MANISHA G, 3 RAJE NEHA MILIND, 4 SHYLAJA S S 1,2,3,4 Department of Information Science and Engineering, P.E.S University, 100 Feet ring Road, Banashankari Stage III. Bangalore 85 Abstract- Cloud computing, an emerging computing paradigm aims to share data, calculation and services transparently over a scalable network of nodes. In cloud computing, load balancing is one of the key issues. Load is a measure of the amount of work that a computation system performs which can be classified as CPU load, memory capacity and network load. Load balancing is the process of apportioning the load among various nodes of a distributed system to improve both resource utilization and job response time while avoiding a situation where some of the nodes are heavily loaded while others are idle. Load balancing ensures that every node in the network does approximately equal amount of work (as per their capacity) at any instant of time. This paper discusses the existing load balancing algorithms in a cloud based environment. Keywords- Load, Cloud computing, Load balancing, Load balancing algorithms I. INTRODUCTION Cloud Computing is a concept of distributed computing in which one has the ability to run an application on many connected systems at the same time. It provides a utility service giving one an access to technology resources that are available on demand [1]. With cloud computing coming into existence, the focus has shifted from provisioning of the infrastructure to business, thus increasing the efficiency of production. Cloud computing provides reliable and dependable on-demand infrastructure and services that reduce time and expenses. II. LOAD BALANCING IN A CLOUD COMPUTING ENVIRONMENT Cloud computing is a kind or virtualization. The three main components of Cloud are data centers collection of servers hosting services, distributed servers and the clients. Cloud computing is mostly used to host services in the sense of application service provisioning that run client server software at remote location. The types of services a cloud environment provides are Software as a Service (SaaS), Platform as a service (PaaS), Infrastructure as a Service (IaaS), and Hardware as a Service (HaaS). In a cloud based environment, where request for services and platforms can arrive at variable time periods, it is necessary to balance the load on the servers. Load is a measure of the amount of computational work that a system performs. The different types of load are CPU Load (the sum of number of processes that are currently running and the number that are waiting to run), amount of memory used and the network delay load (the time it takes for a bit of data to travel across the network from one node to another). Load balancing is thus one of the key issues in the realm of cloud computing [2]. Load balancing is a process of distributing processing and communication activities evenly across a computational network so that no single device is overwhelmed [3]. Load balancing is especially important for networks where it is difficult to predict the number of requests that will be issued to a server. Busy web sites typically employ two or more web servers in a load balancing scheme. If one server starts to get swamped, requests are forwarded to another server with more capacity. Thus load balancing aims at optimizing resource use, maximize throughput, minimize response time and avoid overloading of any one of the resources. The goals of load balancing are [4]: To increase the performance significantly To have a backup facility if the system fails even partially To preserve the system constancy To provide stability against changes to the system Efficient algorithms are thus needed to ensure the even distribution of load on servers. III. LOAD BALANCING ALGORITHMS In complex and large systems, there is a tremendous need for load balancing. For simplifying load balancing globally, techniques are employed that would act at the components of the clouds in such a way that the load of the whole system is distributed. Load balancers implement type specific algorithms to make load balancing decisions. The decision determines to which remote server to forward a new job. Some of the algorithms for load balancing are studied in this paper. Load balancing algorithms, in general, can be divided into two categories [5]: static and dynamic load balancing algorithm. A static load balancing algorithm does not take into account the previous state or behavior of a node while distributing the load. On the other hand, a dynamic load balancing algorithm checks the previous state of a node while 9

2 distributing the load. Fig.1. shows the organization of this research paper with respect to classification of algorithms. will be processed in a slower manner and will cause bottlenecks despite some of the nodes being free Static Load Balancing Algorithms based on the completion Time of Tasks on Machines: IV. STATIC LOAD BALANCING ALGORITHMS 4.1. Brute Force Load Balancing Algorithms Round Robin Load Balancing Algorithm This algorithm uses the round robin scheme for allocating jobs. It selects the first node randomly and then, allocates jobs to all other nodes in a round robin fashion [5]. Processors are assigned to each process in a circular order without any sort of priority and hence there is no starvation. By the round robin approach, the traffic on the servers will be disdained easily and consequently it will tilt the situation towards more imperfectness [6]. Therefore, weighted round robin was developed to improve the critical issues of round robin. In weighted round robin algorithm each server is assigned a weight and according to the values of the weights, the jobs are distributed. Processors with greater capacities are assigned a larger value. Hence the highest weighted servers will receive more tasks. In a situation, when all the weights become equal, servers will receive balanced traffic [7]. In cloud computing system, precise prediction of execution time is not possible; therefore static algorithm is not preferred. Hence, dynamic variations of the round robin algorithm have been proposed [6] in order to tackle the problem more effectively Opportunistic Load Balancing Algorithm This algorithm [8] attempts to keep each node busy. Therefore it does not consider the present workload of each computer. OLB dispatches unexecuted tasks to currently available nodes in random order, regardless of the node s current workload. Each job is assigned to the node in an arbitrary order. It provides load balance schedule but it results in very poor make-span. Since OLB does not calculated the execution time of the node, the task to be processed Min Min Load Balancing Algorithm The Min Min [9] algorithms begin with a set of all unassigned tasks. First of all, minimum completion time for all tasks is found. Then among these minimum times the minimum value is selected which is the minimum time among all the tasks on any resource. According to that minimum time, the task is scheduled on the corresponding machine. The execution time for all other tasks is updated on that machine and the task is removed from the list. The procedure is followed until all the tasks are assigned the resource. In scenarios where the number of small tasks is more than the number of large tasks, this algorithm achieves better performance. However, this approach has a drawback that is, it can lead to starvation. This algorithm does not consider low and high machine and task heterogeneity [5]. Fig.2. shows the pseudo code for the algorithm Max Min Load Balancing Algorithm Max Min [9] is similar to the min min algorithm except the following: after finding out minimum execution times, the maximum value is selected which is the maximum time among all the tasks on the resources. Then according to that maximum time, the task is scheduled on the corresponding machine. The execution time for all other tasks is updated on that machine and assigned task is removed from the list of the tasks that are to be assigned to the machines. Since the requirements are known beforehand, the algorithm is expected to perform well. An enhanced version of max min algorithm was proposed in [10]. It is based on the cases, where meta-tasks contain homogeneous tasks of their completion and execution time, improvement in the efficiency of the algorithm is achieved by increasing the opportunity of concurrent execution of tasks on resources. Fig.3. gives the pseudo code for Max Min Algorithm 10

3 Two Phase Load Balancing Algorithm The two phase scheduling [11] algorithm combines Opportunistic Load Balancing and Min-Min scheduling algorithms to utilize better executing efficiency and maintain the load balancing of the system. Opportunistic scheduling algorithm keeps every node in working state to achieve the goal of load balance and Min Min scheduling algorithm is utilized to minimize the execution time of each task on the node thereby minimizing the overall completion time. This combined approach hence helps in an efficient utilization of resources and enhances the work efficiency Dynamic Load Balancing Algorithms Based on Biological Phenomenon: Ant Colony Optimization (ACO) Based Load Balancing Algorithm ACO [19] is a probabilistic technique for solving computational problems which can be reduced to finding efficient paths through graphs. The aim of ant colony optimization is to search for an optimal path in a graph on the behavior of ants seeking a path between their colony and source of food. The approach aims at efficient distribution of the load among the nodes and such that the ants never encounter a dead end for movements to nodes for building an optimum solution set. First, a Regional Load Balancing node (RLBN) is chosen in a Cloud Computing Service Provider (CCSP), which will act as a head node. We would be referring to RLBN as head node. When request is initialized the ants start their movement by originating from the head node. During the movement, ants deposit a substance called pheromone. The intensity of the pheromone can vary on various factors like the quality of food sources, distance of the food, etc. The ants use these pheromone trails to select the next node. A modified algorithm has been proposed [20] which has an edge over the original approach in which each ant build their own individual result set and it is later on built into a complete solution. However, in this approach the ants continuously update a single result set rather than updating their own result set Honey Bee Foraging Load Balancing Algorithm This is a population based search algorithm [12]. A colony of bees can extend itself over a distance and in multiple directions simultaneously to exploit a large number of food resources. Flowers with plentiful nectar or pollen grains are visited more often than the ones with fewer grains. The scout bees which have gone in search of food come back and perform a waggle dance indicating the direction in which the food was found, the distance from the hive and its quality rating. The scout bees along with followers go to those particular patches to gather food quickly and efficiently. Similarly, the job scheduling can be performed a complete scheduling of operations is specified in the problem. Each solution can be thought as a path from the hive to the food resource. The shorter the make span the higher the probability of the solution path. According to [13], this algorithm gives a significant improvement in average execution time and reduction in waiting time of tasks on queue Based on Statistical Models: Biased Random Sampling Load Balancing Algorithm In Biased Random Sampling, the network is represented in the form of a virtual graph. Each server is symbolized as a node in the graph, with each degree of the node representing the free resources of 11

4 the server. The increment and decrement of node s in-degree is performed via Biased Random Sampling (BRS) [15]. Random sampling can be defined as the process wherein the servers are randomly selected. The sampling begins at some fixed node, and at each step, it moves to an adjacent node, chosen randomly. In-degree refers to the free resources of the node. When a node is allocated a new job, it removes one edge to decrease its in-degree. Similarly, when the node completes a job, it will add an edge to itself to increase its in-degree. An improved BRS method [17] has been suggested based on queue length and processing time. Alternatively, another method can be used for selection of a node for load allocation, i.e., selecting a node based on certain criteria like computing efficiency, speed, etc. Yet another method can be selecting the node for allocation which is under loaded i.e. having highest in-degree. If b is the walk length, then, as b increases, the efficiency of load allocation increases. We define a threshold value of b, which is generally equal to log n experimentally [18]. The advantage of this load balancing scheme is that it is fully decentralized, thus making it apt for large network systems like that in a cloud. V. RESEARCH METHODOLOGY This research was an outcome of an extensive study and literature survey of the existing load balancing algorithms. A number of research papers were reviewed. CONCLUSIONS This paper is based on cloud computing technology which has vast potential. Cloud Computing has widely been adopted by the industry, even though there are many existing issues like Load Balancing, Virtual Machine Migration, Server Consolidation, Energy Management, etc. which have not been fully addressed. Load balancing in the cloud computing environment is required to distribute the excess workload evenly to all the nodes in the whole Cloud to achieve better resource utilization and ensure that every computing resource is distributed efficiently and fairly. Some of the existing Load Balancing techniques have been studied in this paper. The load balancing algorithms were first classified as static and dynamic. Various algorithms under each class along with their variations were also studied. Static Load Balancing algorithms attempt to achieve optimal utilization of resources by considering the size of the tasks and the machines. However, such information may not always be available at hand. Moreover some static load balancing algorithms like the min min algorithm may cause heavy tasks to starve. Dynamic Load Balancing algorithms check the previous state of a node while distributing the load. The advantage of using dynamic load balancing is that if any node fails, it will not halt the system; it will only affect the system performance. Algorithms like BRS and ACO are completely decentralized and hence prove to be efficient in a cloud computing environment. When the type/properties of the machines are known active clustering technique can be exploited for efficient resource utilization Active Clustering Load Balancing Algorithm Active Clustering [12] works on the principle of grouping similar nodes together and working on these groups. A node initiates the process and selects another node called the matchmaker node from its neighbors satisfying the criteria that it should be of a different type than the former one. The so called matchmaker node then forms a connection between one of its neighbors which is of the same type as the initial node. The matchmaker node then detaches the connection between itself and the initial node. The above set of processes is followed iteratively. The performance of the system is enhanced with high availability of resources, thereby increasing the throughput. This increase in throughput is due to the efficient utilization of resources [5]. Table 1: A Comparison of Load Balancing Algorithms 12

5 Table 1 gives a consolidated view of the algorithms studied here. With respect to this context, failover handling refers to the ability of the algorithm to skip the assignment of jobs to the node that is down. In our future work we will analyze the algorithms with numerical analysis and simulation. We will also attempt to propose a new algorithm which combines the benefits of the surveyed algorithms. ACKNOWLEDGMENTS The authors would like to thank PES University, Bengaluru, Karnataka, India for their continued support and encouragement for participating at this conference. The authors express gratitude to the staff of the Department of Information Science and Engineering, PES University for their timely help and support. REFERENCES [1] Bhushan Lal Sahu, Rajesh Tiwari, A comprehensive study on Cloud computing, International journal of Advanced Research in Computer science and Software engineering, volume 2, issue 9, September 2012, ISSN: X. [2] Dr. Hemant S. Mahalle, Prof. Parag R. Kaveri, Dr.Vinay Chavan. Load Balancing On Cloud Data Centres, International Journal of Advanced Research in Computer Science and Software Engineering, Volume 3, Issue 1, January 2013 [3] Amandeep Kaur Sidhu, Supriya Kinger, Analysis of Load Balancing Techniques in Cloud Computing, Sri Guru Granth Sahib World University, Fatehgarh Sahib, Punjab, [4] Ram Prasad Padhy,P Goutam Prasad Rao, Load Balancing in Cloud Computing Systems, National Institute of Technology, Rourkela, India, 2011 [5] Shanti Swaroop Moharana, Rajadeepan D Ramesh, Digamber Powar, Analysis Of Load Balancers in Cloud Computing, International Journal of Computer Science and Engineering 05/2013; 2(2): [6] Pooja Samal, Pranati Mishra, Analysis of variants in Round Robin Algorithms for load balancing in Cloud Computing (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 4 (3), 2013, [7] R. X. T. and X. F. Z., A Load Balancing Strategy Based on the Combination of Static and Dynamic, in Database Technology and Applications (DBTA), nd International Workshop, pp. 1-4, [8] Che-Lun Hung1, Hsiao-hsi Wang2 and Yu-Chen Hu2, Efficient Load Balancing Algorithm for Cloud Computing Network. IEEE Vol. 9, pp: 70-78, [9] T. Kokilavani, Load Balanced Min-Min Algorithm for Static Meta-Task Scheduling in Grid Computing International Journal of Computer Applications ( ) Volume 20 No.2, April [10] Upendra Bhoi, Purvi N. Ramanuj, Enhanced Max-min Task Scheduling Algorithm in Cloud Computing International Journal of Application or Innovation in Engineering & Management (IJAIEM), Volume 2, Issue 4, April [11] S. Wang, K. Yan, W. Liao, and S. Wang, Towards a Load Balancing in a Three-level Cloud Computing Network, Proceedings of the 3rd IEEE International Conference on Computer Science and Information Technology (ICCSIT), Chengdu, China, September 2010, pages [12] Ram Prasad Padhy,P Goutam Prasad Rao, Load Balancing in Cloud Computing Systems, National Institute of Technology, Rourkela, India, [13] Dhinesh B. L.D, P. V. Krishna, Honey bee behavior inspired load balancing of tasks in cloud computing environments, in proc. Applied Soft Computing, volume 13, Issue 5, May 2013, Pages [14] Pham, D.T., Castellani, M. (2009), The Bees Algorithm Modelling Foraging Behaviour to Solve Continuous Optimisation Problems. Proc. ImechE, Part C, 223(12), [15] Rahmeh OA, Johnson P, Taleb-Bendiab A., A Dynamic Biased Random Sampling Scheme for scalable and reliable Grid Networks, The INFOCOMP Journal of Computer Science, vol. 7, [16] Li Feng DY, Wu H, Zhang Y (2000) A dynamic load balancing algorithm based on distributed database system. In: Proc. 4th intl. conf. on high performance computing in the Asia-Pacific region, Beijing, China, pp [17] Manakattu, S. S. & Kumar, S. D. M. (2012), An improved biased random sampling algorithm for load balancing in cloud based systems., in K. Gopalan & Sabu M. Thampi, ed., 'ICACCI', ACM,, pp [18] Randles, M., Abu-Rahmeh, O., Johnson, P. & Taleb- Bendiab, A. (2010). Biased random walks on resource network graphs for load balancing.. The Journal of Supercomputing, 53, [19] Ratan Mishra and Anant Jaiswal Ant Colony Optimization: A Solution of Load balancing in Cloud International Journal of Web and Semantic Technology. Vol. 3, No. 2. pp April [20] Kumar Nishant, Pratik Sharma, Vishal Krishna, Chhavi Gupta and Kunwar Pratap Singh, Nitin and Ravi Rastogi, 2012, Load Balancing of Nodes in Cloud Using Ant Colony Optimization 14th International Conference on Modelling and Simulation. 13

A Survey Of Various Load Balancing Algorithms In Cloud Computing

A Survey Of Various Load Balancing Algorithms In Cloud Computing A Survey Of Various Load Balancing Algorithms In Cloud Computing Dharmesh Kashyap, Jaydeep Viradiya Abstract: Cloud computing is emerging as a new paradigm for manipulating, configuring, and accessing

More information

A Survey on Load Balancing and Scheduling in Cloud Computing

A Survey on Load Balancing and Scheduling in Cloud Computing IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 7 December 2014 ISSN (online): 2349-6010 A Survey on Load Balancing and Scheduling in Cloud Computing Niraj Patel

More information

Dynamic Load Balancing Algorithms For Cloud Computing

Dynamic Load Balancing Algorithms For Cloud Computing Dynamic Load Balancing Algorithms For Cloud Computing Miss. Nikita Sunil Barve Computer Engineering Department Pillai s Institute of Information Technology New Panvel e-mail: niki.barve@gmail.com Prof.

More information

A Survey on Heterogeneous Load Balancing Techniques in Cloud Computing

A Survey on Heterogeneous Load Balancing Techniques in Cloud Computing IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 10 March 2015 ISSN (online): 2349-6010 A Survey on Heterogeneous Load Balancing Techniques in Cloud Computing

More information

A Comparative Study of Different Static and Dynamic Load Balancing Algorithm in Cloud Computing with Special Emphasis on Time Factor

A Comparative Study of Different Static and Dynamic Load Balancing Algorithm in Cloud Computing with Special Emphasis on Time Factor International Journal of Current Engineering and Technology E-ISSN 2277 4106, P-ISSN 2347 5161 2015 INPRESSCO, All Rights Reserved Available at http://inpressco.com/category/ijcet Research Article A Comparative

More information

A SURVEY ON LOAD BALANCING ALGORITHMS IN CLOUD COMPUTING

A SURVEY ON LOAD BALANCING ALGORITHMS IN CLOUD COMPUTING A SURVEY ON LOAD BALANCING ALGORITHMS IN CLOUD COMPUTING Harshada Raut 1, Kumud Wasnik 2 1 M.Tech. Student, Dept. of Computer Science and Tech., UMIT, S.N.D.T. Women s University, (India) 2 Professor,

More information

Distributed and Dynamic Load Balancing in Cloud Data Center

Distributed and Dynamic Load Balancing in Cloud Data Center Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 5, May 2015, pg.233

More information

CLOUD COMPUTING PARTITIONING ALGORITHM AND LOAD BALANCING ALGORITHM

CLOUD COMPUTING PARTITIONING ALGORITHM AND LOAD BALANCING ALGORITHM CLOUD COMPUTING PARTITIONING ALGORITHM AND LOAD BALANCING ALGORITHM Anisaara Nadaph 1 and Prof. Vikas Maral 2 1 Department of Computer Engineering, K.J College of Engineering and Management Research Pune

More information

A Review on Load Balancing Algorithm in Cloud Computing

A Review on Load Balancing Algorithm in Cloud Computing A Review on Load Balancing Algorithm in Cloud Computing Komal Purba 1, Nitin Bhagat 2 1 (Department of CSE, SIET Manawala, India) 2 (Department of CSE, SIET Manawala, India) Abstract:Cloud computing represents

More information

Load Balancing in Cloud Computing: A Review

Load Balancing in Cloud Computing: A Review Load Balancing in Cloud Computing: A Review Shikha Gupta, Suman Sanghwan Abstract A rapid growth in the development of clouds and its management through cloud computing has accelerated the research in

More information

Load Balancing using DWARR Algorithm in Cloud Computing

Load Balancing using DWARR Algorithm in Cloud Computing IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 12 May 2015 ISSN (online): 2349-6010 Load Balancing using DWARR Algorithm in Cloud Computing Niraj Patel PG Student

More information

A Survey on Load Balancing Algorithms in Cloud Environment

A Survey on Load Balancing Algorithms in Cloud Environment A Survey on Load s in Cloud Environment M.Aruna Assistant Professor (Sr.G)/CSE Erode Sengunthar Engineering College, Thudupathi, Erode, India D.Bhanu, Ph.D Associate Professor Sri Krishna College of Engineering

More information

A Survey on Load Balancing Techniques Using ACO Algorithm

A Survey on Load Balancing Techniques Using ACO Algorithm A Survey on Load Balancing Techniques Using ACO Algorithm Preeti Kushwah Department of Computer Science & Engineering, Acropolis Institute of Technology and Research Indore bypass road Mangliya square

More information

Dr. Ravi Rastogi Associate Professor Sharda University, Greater Noida, India

Dr. Ravi Rastogi Associate Professor Sharda University, Greater Noida, India Volume 4, Issue 5, May 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Round Robin Approach

More information

A Comparative Survey on Various Load Balancing Techniques in Cloud Computing

A Comparative Survey on Various Load Balancing Techniques in Cloud Computing 2015 IJSRSET Volume 1 Issue 6 Print ISSN : 2395-1990 Online ISSN : 2394-4099 Themed Section: Engineering and Technology A Comparative Survey on Various Load Balancing Techniques in Cloud Computing Patel

More information

LOAD BALANCING ALGORITHM REVIEW s IN CLOUD ENVIRONMENT

LOAD BALANCING ALGORITHM REVIEW s IN CLOUD ENVIRONMENT LOAD BALANCING ALGORITHM REVIEW s IN CLOUD ENVIRONMENT K.Karthika, K.Kanakambal, R.Balasubramaniam PG Scholar,Dept of Computer Science and Engineering, Kathir College Of Engineering/ Anna University, India

More information

Load Balancing Algoritms in Cloud Computing Environment: A Review

Load Balancing Algoritms in Cloud Computing Environment: A Review Load Balancing Algoritms in Cloud Computing Environment: A Review Swati Katoch Department of Computer Science Himachal Pradesh University Shimla, India e-mail: katoch.swati53@gmail.com Jawahar Thakur Department

More information

Load Balancing Algorithms in Cloud Environment

Load Balancing Algorithms in Cloud Environment International Conference on Systems, Science, Control, Communication, Engineering and Technology 50 International Conference on Systems, Science, Control, Communication, Engineering and Technology 2015

More information

A Novel Survey on an Intelligent and Efficient Load Balancing Techniques for Cloud Computing

A Novel Survey on an Intelligent and Efficient Load Balancing Techniques for Cloud Computing A Novel Survey on an Intelligent and Efficient Load Balancing Techniques for Cloud Computing 1 Kamlesh Kumar, 2 Somil Kumar Gupta, 3 Govind Singh 1 Assistant Professor, Graphic Era Hill University, Bhimtal

More information

International Journal Of Engineering Research & Management Technology

International Journal Of Engineering Research & Management Technology International Journal Of Engineering Research & Management Technology March- 2014 Volume-1, Issue-2 PRIORITY BASED ENHANCED HTV DYNAMIC LOAD BALANCING ALGORITHM IN CLOUD COMPUTING Srishti Agarwal, Research

More information

A Study of Various Load Balancing Techniques in Cloud Computing and their Challenges

A Study of Various Load Balancing Techniques in Cloud Computing and their Challenges A Study of Various Load Balancing Techniques in Cloud Computing and their Challenges Vinod K. Lalbeg, Asst. Prof. Neville Wadia Institute Management Studies &Research, Pune-1 vklalbeg@yahoo.com Co-Author:

More information

AN EFFICIENT LOAD BALANCING APPROACH IN CLOUD SERVER USING ANT COLONY OPTIMIZATION

AN EFFICIENT LOAD BALANCING APPROACH IN CLOUD SERVER USING ANT COLONY OPTIMIZATION AN EFFICIENT LOAD BALANCING APPROACH IN CLOUD SERVER USING ANT COLONY OPTIMIZATION Shanmuga Priya.J 1, Sridevi.A 2 1 PG Scholar, Department of Information Technology, J.J College of Engineering and Technology

More information

A SURVEY ON LOAD BALANCING ALGORITHMS FOR CLOUD COMPUTING

A SURVEY ON LOAD BALANCING ALGORITHMS FOR CLOUD COMPUTING A SURVEY ON LOAD BALANCING ALGORITHMS FOR CLOUD COMPUTING Avtar Singh #1,Kamlesh Dutta #2, Himanshu Gupta #3 #1 Department of Computer Science and Engineering, Shoolini University, avtarz@gmail.com #2

More information

@IJMTER-2015, All rights Reserved 355

@IJMTER-2015, All rights Reserved 355 e-issn: 2349-9745 p-issn: 2393-8161 Scientific Journal Impact Factor (SJIF): 1.711 International Journal of Modern Trends in Engineering and Research www.ijmter.com A Model for load balancing for the Public

More information

Efficient Cost Scheduling algorithm with Load Balancing in a Cloud Computing Environment

Efficient Cost Scheduling algorithm with Load Balancing in a Cloud Computing Environment Efficient Cost Scheduling algorithm with Load Balancing in a Cloud Computing Environment Amanpreet Chawla, Navtej Singh Ghumman Department of Computer Science and Engineering, SBSSTC, FZR, Punjab, India

More information

Keywords Distributed Computing, On Demand Resources, Cloud Computing, Virtualization, Server Consolidation, Load Balancing

Keywords Distributed Computing, On Demand Resources, Cloud Computing, Virtualization, Server Consolidation, Load Balancing Volume 5, Issue 1, January 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Survey on Load

More information

A Survey of efficient load balancing algorithms in cloud environment

A Survey of efficient load balancing algorithms in cloud environment A Survey of efficient load balancing algorithms in cloud environment 1 J. Mr. Srinivasan, 2 Dr. Suresh, 3 C. Gnanadhas 1 Research Scholar, 1, 2, 3 Department of CSE, 1 Bharathiar University, 2, 3 Vivekanandha

More information

A Review on Load Balancing In Cloud Computing 1

A Review on Load Balancing In Cloud Computing 1 www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue 6 June 2015, Page No. 12333-12339 A Review on Load Balancing In Cloud Computing 1 Peenaz Pathak, 2 Er.Kamna

More information

Models of Load Balancing Algorithm in Cloud Computing

Models of Load Balancing Algorithm in Cloud Computing Models of Load Balancing Algorithm in Cloud Computing L. Aruna 1, Dr. M. Aramudhan 2 1 Research Scholar, Department of Comp.Sci., Periyar University, Salem. 2 Associate Professor & Head, Department of

More information

International Journal of Advance Research in Computer Science and Management Studies

International Journal of Advance Research in Computer Science and Management Studies Volume 2, Issue 11, November 2014 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

Load Balancing Strategy of Cloud Computing based on Artificial Bee

Load Balancing Strategy of Cloud Computing based on Artificial Bee Load Balancing Strategy of Cloud Computing based on Artificial Bee Algorithm 1 Jing Yao*, 2 Ju-hou He 1 *, Dept. of Computer Science Shaanxi Normal University Xi'an, China, ruirui8718@163.com 2, Dept.

More information

[Laddhad, 4(8): August, 2015] ISSN: 2277-9655 (I2OR), Publication Impact Factor: 3.785

[Laddhad, 4(8): August, 2015] ISSN: 2277-9655 (I2OR), Publication Impact Factor: 3.785 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY CLOUD COMPUTING LOAD BALANCING MODEL WITH HETEROGENEOUS PARTITION Ms. Pranita Narayandas Laddhad *, Prof. Nitin Raut, Prof. Shyam

More information

How To Partition Cloud For Public Cloud

How To Partition Cloud For Public Cloud An Enhanced Load balancing model on cloud partitioning for public cloud Agidi.Vishnu vardhan*1, B.Aruna Kumari*2, G.Kiran Kumar*3 M.Tech Scholar, Dept of CSE, MLR Institute of Technology, Dundigal, Dt:

More information

A Novel Switch Mechanism for Load Balancing in Public Cloud

A Novel Switch Mechanism for Load Balancing in Public Cloud International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) A Novel Switch Mechanism for Load Balancing in Public Cloud Kalathoti Rambabu 1, M. Chandra Sekhar 2 1 M. Tech (CSE), MVR College

More information

Sla Aware Load Balancing Algorithm Using Join-Idle Queue for Virtual Machines in Cloud Computing

Sla Aware Load Balancing Algorithm Using Join-Idle Queue for Virtual Machines in Cloud Computing Sla Aware Load Balancing Using Join-Idle Queue for Virtual Machines in Cloud Computing Mehak Choudhary M.Tech Student [CSE], Dept. of CSE, SKIET, Kurukshetra University, Haryana, India ABSTRACT: Cloud

More information

Different Strategies for Load Balancing in Cloud Computing Environment: a critical Study

Different Strategies for Load Balancing in Cloud Computing Environment: a critical Study 85 Different Strategies for Load Balancing in Cloud Computing Environment: a critical Study Amandeep 1, Vandana Yadav 2, Faz Mohammad 3 1,2 Dept. of CSE, Galgotia University, G. Noida 3 Asst. Prof., Dept.

More information

MANAGING OF IMMENSE CLOUD DATA BY LOAD BALANCING STRATEGY. Sara Anjum 1, B.Manasa 2

MANAGING OF IMMENSE CLOUD DATA BY LOAD BALANCING STRATEGY. Sara Anjum 1, B.Manasa 2 INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND SCIENCE MANAGING OF IMMENSE CLOUD DATA BY LOAD BALANCING STRATEGY Sara Anjum 1, B.Manasa 2 1 M.Tech Student, Dept of CSE, A.M.R. Institute

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 3 Issue 3, May-June 2015

International Journal of Computer Science Trends and Technology (IJCST) Volume 3 Issue 3, May-June 2015 RESEARCH ARTICLE OPEN ACCESS Ensuring Reliability and High Availability in Cloud by Employing a Fault Tolerance Enabled Load Balancing Algorithm G.Gayathri [1], N.Prabakaran [2] Department of Computer

More information

Cloud Partitioning Based Load Balancing Model for Performance Enhancement in Public Cloud

Cloud Partitioning Based Load Balancing Model for Performance Enhancement in Public Cloud Cloud Partitioning Based Load Balancing Model for Performance Enhancement in Public Cloud Neha Gohar Khan, Prof. V. B. Bhagat (Mate) P. R. Patil College of Engineering & Technology, Amravati, India Abstract:

More information

How To Balance In Cloud Computing

How To Balance In Cloud Computing A Review on Load Balancing Algorithms in Cloud Hareesh M J Dept. of CSE, RSET, Kochi hareeshmjoseph@ gmail.com John P Martin Dept. of CSE, RSET, Kochi johnpm12@gmail.com Yedhu Sastri Dept. of IT, RSET,

More information

International Journal of Scientific & Engineering Research, Volume 6, Issue 4, April-2015 36 ISSN 2229-5518

International Journal of Scientific & Engineering Research, Volume 6, Issue 4, April-2015 36 ISSN 2229-5518 International Journal of Scientific & Engineering Research, Volume 6, Issue 4, April-2015 36 An Efficient Approach for Load Balancing in Cloud Environment Balasundaram Ananthakrishnan Abstract Cloud computing

More information

Review on Existing Load Balancing Techniques of Cloud Computing

Review on Existing Load Balancing Techniques of Cloud Computing Review on Existing Load Balancing Techniques of Cloud Computing #Suresh Kumar 1,M.Tech(CSE) #Ragavender 2, Associate Professor, CSE Department # Malla Reddy Engineering College, Hyderabad, TS State, INDIA

More information

Webpage: www.ijaret.org Volume 3, Issue XI, Nov. 2015 ISSN 2320-6802

Webpage: www.ijaret.org Volume 3, Issue XI, Nov. 2015 ISSN 2320-6802 An Effective VM scheduling using Hybrid Throttled algorithm for handling resource starvation in Heterogeneous Cloud Environment Er. Navdeep Kaur 1 Er. Pooja Nagpal 2 Dr.Vinay Guatum 3 1 M.Tech Student,

More information

Survey of Load Balancing Techniques in Cloud Computing

Survey of Load Balancing Techniques in Cloud Computing Survey of Load Balancing Techniques in Cloud Computing Nandkishore Patel 1, Ms. Jasmine Jha 2 1, 2 Department of Computer Engineering, 1, 2 L. J. Institute of Engineering and Technology, Ahmedabad, Gujarat,

More information

Load Balancing for Improved Quality of Service in the Cloud

Load Balancing for Improved Quality of Service in the Cloud Load Balancing for Improved Quality of Service in the Cloud AMAL ZAOUCH Mathématique informatique et traitement de l information Faculté des Sciences Ben M SIK CASABLANCA, MORROCO FAOUZIA BENABBOU Mathématique

More information

A New Modified HBB Optimized Load Balancing in Cloud Computing

A New Modified HBB Optimized Load Balancing in Cloud Computing A New Modified HBB Optimized Load Balancing in Cloud Computing 799 Mohd Hamza, 2 Satish Pawar, 3 Yogendra Kumar Jain,2,3 Dept. of Computer Science and Engineering, Samrat Ashok Technological Institute

More information

Ant Colony Optimization for Effective Load Balancing In Cloud Computing

Ant Colony Optimization for Effective Load Balancing In Cloud Computing Ant Colony Optimization for Effective Load Balancing In Cloud Computing 1 Shagufta khan 2 Niresh Sharma 1 M-TECH(CSE) RKDFIST BHOPAL (M.P.) 2 professor(cse) RKDFIST Bhopal(M.P) Abstract- Cloud computing

More information

ABSTRACT. KEYWORDS: Cloud Computing, Load Balancing, Scheduling Algorithms, FCFS, Group-Based Scheduling Algorithm

ABSTRACT. KEYWORDS: Cloud Computing, Load Balancing, Scheduling Algorithms, FCFS, Group-Based Scheduling Algorithm A REVIEW OF THE LOAD BALANCING TECHNIQUES AT CLOUD SERVER Kiran Bala, Sahil Vashist, Rajwinder Singh, Gagandeep Singh Department of Computer Science & Engineering, Chandigarh Engineering College, Landran(Pb),

More information

A Novel Approach for Efficient Load Balancing in Cloud Computing Environment by Using Partitioning

A Novel Approach for Efficient Load Balancing in Cloud Computing Environment by Using Partitioning A Novel Approach for Efficient Load Balancing in Cloud Computing Environment by Using Partitioning 1 P. Vijay Kumar, 2 R. Suresh 1 M.Tech 2 nd Year, Department of CSE, CREC Tirupati, AP, India 2 Professor

More information

A Review of Load Balancing Algorithms for Cloud Computing

A Review of Load Balancing Algorithms for Cloud Computing www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume - 3 Issue -9 September, 2014 Page No. 8297-8302 A Review of Load Balancing Algorithms for Cloud Computing Dr.G.N.K.Sureshbabu

More information

A REVIEW PAPER ON LOAD BALANCING AMONG VIRTUAL SERVERS IN CLOUD COMPUTING USING CAT SWARM OPTIMIZATION

A REVIEW PAPER ON LOAD BALANCING AMONG VIRTUAL SERVERS IN CLOUD COMPUTING USING CAT SWARM OPTIMIZATION A REVIEW PAPER ON LOAD BALANCING AMONG VIRTUAL SERVERS IN CLOUD COMPUTING USING CAT SWARM OPTIMIZATION Upasana Mittal 1, Yogesh Kumar 2 1 C.S.E Student,Department of Computer Science, SUSCET, Mohali, (India)

More information

Improved Dynamic Load Balance Model on Gametheory for the Public Cloud

Improved Dynamic Load Balance Model on Gametheory for the Public Cloud ISSN (Online): 2349-7084 GLOBAL IMPACT FACTOR 0.238 DIIF 0.876 Improved Dynamic Load Balance Model on Gametheory for the Public Cloud 1 Rayapu Swathi, 2 N.Parashuram, 3 Dr S.Prem Kumar 1 (M.Tech), CSE,

More information

Analysis of Job Scheduling Algorithms in Cloud Computing

Analysis of Job Scheduling Algorithms in Cloud Computing Analysis of Job Scheduling s in Cloud Computing Rajveer Kaur 1, Supriya Kinger 2 1 Research Fellow, Department of Computer Science and Engineering, SGGSWU, Fatehgarh Sahib, India, Punjab (140406) 2 Asst.Professor,

More information

An Analysis of Load Balancing in Cloud Computing

An Analysis of Load Balancing in Cloud Computing An Analysis of Load Balancing in Cloud Computing Suresh M. PG Scholar SNS College of Technology, Tamilnadu, India Shafi Ullah Z. PG Scholar SNS College of Technology, Tamilnadu, India Santhosh Kumar B.

More information

A Game Theoretic Approach for Cloud Computing Infrastructure to Improve the Performance

A Game Theoretic Approach for Cloud Computing Infrastructure to Improve the Performance P.Bhanuchand and N. Kesava Rao 1 A Game Theoretic Approach for Cloud Computing Infrastructure to Improve the Performance P.Bhanuchand, PG Student [M.Tech, CS], Dep. of CSE, Narayana Engineering College,

More information

USAGE OF DYNAMIC LOAD BALANCING FOR DISTRIBUTED SYSTEM IN CLOUD COMPUTING

USAGE OF DYNAMIC LOAD BALANCING FOR DISTRIBUTED SYSTEM IN CLOUD COMPUTING USAGE OF DYNAMIC LOAD BALANCING FOR DISTRIBUTED SYSTEM IN CLOUD COMPUTING Reeta Mishra 1 Assistant Professor, K.J.Institute of Engineering & Technology,Savli,Vadodara,Gujarat (India) ABSTRACT Cloud computing

More information

Load Balancing in Cloud Computing

Load Balancing in Cloud Computing Proc. of Int. Conf. on Recent Trends in Information, Telecommunication and Computing, ITC Load Balancing in Cloud Computing Rajwinder Kaur 1 and Pawan Luthra 2 1 SBS State Technical Campus/M.tech,CSE,Student,Ferozepur,

More information

Effective Load Balancing for Cloud Computing using Hybrid AB Algorithm

Effective Load Balancing for Cloud Computing using Hybrid AB Algorithm Effective Load Balancing for Cloud Computing using Hybrid AB Algorithm 1 N. Sasikala and 2 Dr. D. Ramesh PG Scholar, Department of CSE, University College of Engineering (BIT Campus), Tiruchirappalli,

More information

Load Balancing Scheduling with Shortest Load First

Load Balancing Scheduling with Shortest Load First , pp. 171-178 http://dx.doi.org/10.14257/ijgdc.2015.8.4.17 Load Balancing Scheduling with Shortest Load First Ranjan Kumar Mondal 1, Enakshmi Nandi 2 and Debabrata Sarddar 3 1 Department of Computer Science

More information

Simulation of Dynamic Load Balancing Algorithms

Simulation of Dynamic Load Balancing Algorithms Bonfring International Journal of Software Engineering and Soft Computing, Vol. 5, No.1, July 2015 1 Simulation of Dynamic Load Balancing Algorithms Dr.S. Suguna and R. Barani Abstract--- Cloud computing

More information

Load Balancing in cloud computing

Load Balancing in cloud computing Load Balancing in cloud computing 1 Foram F Kherani, 2 Prof.Jignesh Vania Department of computer engineering, Lok Jagruti Kendra Institute of Technology, India 1 kheraniforam@gmail.com, 2 jigumy@gmail.com

More information

Various Schemes of Load Balancing in Distributed Systems- A Review

Various Schemes of Load Balancing in Distributed Systems- A Review 741 Various Schemes of Load Balancing in Distributed Systems- A Review Monika Kushwaha Pranveer Singh Institute of Technology Kanpur, U.P. (208020) U.P.T.U., Lucknow Saurabh Gupta Pranveer Singh Institute

More information

Load Balancing in the Cloud Computing Using Virtual Machine Migration: A Review

Load Balancing in the Cloud Computing Using Virtual Machine Migration: A Review Load Balancing in the Cloud Computing Using Virtual Machine Migration: A Review 1 Rukman Palta, 2 Rubal Jeet 1,2 Indo Global College Of Engineering, Abhipur, Punjab Technical University, jalandhar,india

More information

The Load Balancing Strategy to Improve the Efficiency in the Public Cloud Environment

The Load Balancing Strategy to Improve the Efficiency in the Public Cloud Environment The Load Balancing Strategy to Improve the Efficiency in the Public Cloud Environment Majjaru Chandra Babu Assistant Professor, Priyadarsini College of Engineering, Nellore. Abstract: Load balancing in

More information

Multilevel Communication Aware Approach for Load Balancing

Multilevel Communication Aware Approach for Load Balancing Multilevel Communication Aware Approach for Load Balancing 1 Dipti Patel, 2 Ashil Patel Department of Information Technology, L.D. College of Engineering, Gujarat Technological University, Ahmedabad 1

More information

Effective load balancing in cloud computing

Effective load balancing in cloud computing International Journal of Intelligent Information Systems 2014; 3(6-1): 1-9 Published online September 26, 2014 (http://www.sciencepublishinggroup.com/j/ijiis) doi: 10.11648/j.ijiis.s.2014030601.11 ISSN:

More information

CDBMS Physical Layer issue: Load Balancing

CDBMS Physical Layer issue: Load Balancing CDBMS Physical Layer issue: Load Balancing Shweta Mongia CSE, School of Engineering G D Goenka University, Sohna Shweta.mongia@gdgoenka.ac.in Shipra Kataria CSE, School of Engineering G D Goenka University,

More information

Grid Computing Approach for Dynamic Load Balancing

Grid Computing Approach for Dynamic Load Balancing International Journal of Computer Sciences and Engineering Open Access Review Paper Volume-4, Issue-1 E-ISSN: 2347-2693 Grid Computing Approach for Dynamic Load Balancing Kapil B. Morey 1*, Sachin B. Jadhav

More information

KEYWORDS: Cloud Computing, Cloud Partitioning, Game Theory, Load Balancing, Public Cloud Infrastructure.

KEYWORDS: Cloud Computing, Cloud Partitioning, Game Theory, Load Balancing, Public Cloud Infrastructure. IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY SURVEY: CLOUD PARTITIONING USING LOAD BALANCING APPROACH FOR PUBLIC CLOUD INFRASTRUCTURE Rajesh Kumar*, Charanjit Singh * Research

More information

A Load Balancing Model Based on Cloud Partitioning for the Public Cloud

A Load Balancing Model Based on Cloud Partitioning for the Public Cloud IEEE TRANSACTIONS ON CLOUD COMPUTING YEAR 2013 A Load Balancing Model Based on Cloud Partitioning for the Public Cloud Gaochao Xu, Junjie Pang, and Xiaodong Fu Abstract: Load balancing in the cloud computing

More information

Minimize Response Time Using Distance Based Load Balancer Selection Scheme

Minimize Response Time Using Distance Based Load Balancer Selection Scheme Minimize Response Time Using Distance Based Load Balancer Selection Scheme K. Durga Priyanka M.Tech CSE Dept., Institute of Aeronautical Engineering, HYD-500043, Andhra Pradesh, India. Dr.N. Chandra Sekhar

More information

Fair Scheduling Algorithm with Dynamic Load Balancing Using In Grid Computing

Fair Scheduling Algorithm with Dynamic Load Balancing Using In Grid Computing Research Inventy: International Journal Of Engineering And Science Vol.2, Issue 10 (April 2013), Pp 53-57 Issn(e): 2278-4721, Issn(p):2319-6483, Www.Researchinventy.Com Fair Scheduling Algorithm with Dynamic

More information

Comparative Analysis of Load Balancing Algorithms in Cloud Computing

Comparative Analysis of Load Balancing Algorithms in Cloud Computing Comparative Analysis of Load Balancing Algorithms in Cloud Computing Ms.NITIKA Computer Science & Engineering, LPU, Phagwara Punjab, India Abstract- Issues with the performance of business applications

More information

Journal of Theoretical and Applied Information Technology 20 th July 2015. Vol.77. No.2 2005-2015 JATIT & LLS. All rights reserved.

Journal of Theoretical and Applied Information Technology 20 th July 2015. Vol.77. No.2 2005-2015 JATIT & LLS. All rights reserved. EFFICIENT LOAD BALANCING USING ANT COLONY OPTIMIZATION MOHAMMAD H. NADIMI-SHAHRAKI, ELNAZ SHAFIGH FARD, FARAMARZ SAFI Department of Computer Engineering, Najafabad branch, Islamic Azad University, Najafabad,

More information

A Comparison of Four Popular Heuristics for Load Balancing of Virtual Machines in Cloud Computing

A Comparison of Four Popular Heuristics for Load Balancing of Virtual Machines in Cloud Computing A Comparison of Four Popular Heuristics for Load Balancing of Virtual Machines in Cloud Computing Subasish Mohapatra Department Of CSE NIT, ROURKELA K.Smruti Rekha Department Of CSE ITER, SOA UNIVERSITY

More information

An Approach to Load Balancing In Cloud Computing

An Approach to Load Balancing In Cloud Computing An Approach to Load Balancing In Cloud Computing Radha Ramani Malladi Visiting Faculty, Martins Academy, Bangalore, India ABSTRACT: Cloud computing is a structured model that defines computing services,

More information

International Journal of Engineering Research & Management Technology

International Journal of Engineering Research & Management Technology International Journal of Engineering Research & Management Technology March- 2015 Volume 2, Issue-2 Survey paper on cloud computing with load balancing policy Anant Gaur, Kush Garg Department of CSE SRM

More information

LOAD BALANCING IN CLOUD COMPUTING

LOAD BALANCING IN CLOUD COMPUTING LOAD BALANCING IN CLOUD COMPUTING Neethu M.S 1 PG Student, Dept. of Computer Science and Engineering, LBSITW (India) ABSTRACT Cloud computing is emerging as a new paradigm for manipulating, configuring,

More information

A REVIEW ON LOAD BALANCING TECHNIQUE IN THE PUBLIC CLOUD USING PARTITIONING METHOD

A REVIEW ON LOAD BALANCING TECHNIQUE IN THE PUBLIC CLOUD USING PARTITIONING METHOD A REVIEW ON LOAD BALANCING TECHNIQUE IN THE PUBLIC CLOUD USING PARTITIONING METHOD 1 G. DAMODAR, 2 D. BARATH KUMAR 1 M.Tech Student, Department of CSE. gdyadav509@gmail.com 2 Assistant Professor, Department

More information

ACO Based Dynamic Resource Scheduling for Improving Cloud Performance

ACO Based Dynamic Resource Scheduling for Improving Cloud Performance ACO Based Dynamic Resource Scheduling for Improving Cloud Performance Priyanka Mod 1, Prof. Mayank Bhatt 2 Computer Science Engineering Rishiraj Institute of Technology 1 Computer Science Engineering Rishiraj

More information

Load Balancing Techniques : Major Challenges in Cloud Computing - A Systematic Review

Load Balancing Techniques : Major Challenges in Cloud Computing - A Systematic Review 1 Load Balancing Techniques : Major Challenges in Cloud Computing - A Systematic Review 1 Jasobanta Laha, 2 Rabinarayan Satpathy, 3 Kaustuva Dev 1,2,3 Computer Science., Biju Patnaik University of Technology

More information

Dynamic Load Balancing: Improve Efficiency in Cloud Computing Argha Roy * M.Tech CSE Netaji Subhash Engineering College West Bengal, India.

Dynamic Load Balancing: Improve Efficiency in Cloud Computing Argha Roy * M.Tech CSE Netaji Subhash Engineering College West Bengal, India. Dynamic Load Balancing: Improve Efficiency in Cloud Computing Argha Roy * M.Tech CSE Netaji Subhash Engineering College West Bengal, India. Diptam Dutta M.Tech CSE Heritage Institute of Technology West

More information

Cost Effective Selection of Data Center in Cloud Environment

Cost Effective Selection of Data Center in Cloud Environment Cost Effective Selection of Data Center in Cloud Environment Manoranjan Dash 1, Amitav Mahapatra 2 & Narayan Ranjan Chakraborty 3 1 Institute of Business & Computer Studies, Siksha O Anusandhan University,

More information

How To Perform Load Balancing In Cloud Computing With An Agent

How To Perform Load Balancing In Cloud Computing With An Agent A New Approach for Dynamic Load Balancing in Cloud Computing Anjali 1, Jitender Grover 2, Manpreet Singh 3, Charanjeet Singh 4, Hemant Sethi 5 1,2,3,4,5 (Department of Computer Science & Engineering, MM

More information

Keywords: Dynamic Load Balancing, Process Migration, Load Indices, Threshold Level, Response Time, Process Age.

Keywords: Dynamic Load Balancing, Process Migration, Load Indices, Threshold Level, Response Time, Process Age. Volume 3, Issue 10, October 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Load Measurement

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 4, July-Aug 2014

International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 4, July-Aug 2014 RESEARCH ARTICLE An Efficient Priority Based Load Balancing Algorithm for Cloud Environment Harmandeep Singh Brar 1, Vivek Thapar 2 Research Scholar 1, Assistant Professor 2, Department of Computer Science

More information

International Journal of Advancements in Research & Technology, Volume 3, Issue 8, August-2014 68 ISSN 2278-7763

International Journal of Advancements in Research & Technology, Volume 3, Issue 8, August-2014 68 ISSN 2278-7763 International Journal of Advancements in Research & Technology, Volume 3, Issue 8, August-2014 68 A Survey of Load Balancing Algorithms using VM B.KalaiSelvi 1 and Dr.L.Mary Immaculate Sheela 2 1 Research

More information

Efficient Load Balancing Algorithm in Cloud Environment

Efficient Load Balancing Algorithm in Cloud Environment Efficient Balancing Algorithm in Cloud Environment Akshay Daryapurkar #, Mrs. V.M. Deshmukh * # PRMIT&R Anjangoan Bari Road Badnera, Amravat-444701i a akshaydaryapurkar321@gmail.com 3 msvmdeshmukh@redifffmail.com

More information

Hybrid Load Balancing Algorithm in Heterogeneous Cloud Environment

Hybrid Load Balancing Algorithm in Heterogeneous Cloud Environment Hybrid Load Balancing Algorithm in Heterogeneous Cloud Environment Hafiz Jabr Younis, Alaa Al Halees, Mohammed Radi Abstract Cloud computing is a heterogeneous environment offers a rapidly and on-demand

More information

A Game Theory Modal Based On Cloud Computing For Public Cloud

A Game Theory Modal Based On Cloud Computing For Public Cloud IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 2, Ver. XII (Mar-Apr. 2014), PP 48-53 A Game Theory Modal Based On Cloud Computing For Public Cloud

More information

IMPROVED LOAD BALANCING MODEL BASED ON PARTITIONING IN CLOUD COMPUTING

IMPROVED LOAD BALANCING MODEL BASED ON PARTITIONING IN CLOUD COMPUTING Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IJCSMC, Vol. 3, Issue.

More information

A Comparative Study of Load Balancing Algorithms in Cloud Computing

A Comparative Study of Load Balancing Algorithms in Cloud Computing A Comparative Study of Load Balancing Algorithms in Cloud Computing Reena Panwar M.Tech CSE Scholar Department of CSE, Galgotias College of Engineering and Technology, Greater Noida, India Bhawna Mallick,

More information

Two Level Hierarchical Model of Load Balancing in Cloud

Two Level Hierarchical Model of Load Balancing in Cloud Two Level Hierarchical Model of Load Balancing in Cloud Geetha C. Megharaj 1, Dr. Mohan K.G. 2 1 Associate Professor, Sri Krishna Institute of Technology, Bangalore 2 Professor & Dean(R&D) CSE, Acharya

More information

International Journal of Advance Research in Computer Science and Management Studies

International Journal of Advance Research in Computer Science and Management Studies Volume 3, Issue 6, June 2015 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

A Comparative Performance Analysis of Load Balancing Algorithms in Distributed System using Qualitative Parameters

A Comparative Performance Analysis of Load Balancing Algorithms in Distributed System using Qualitative Parameters A Comparative Performance Analysis of Load Balancing Algorithms in Distributed System using Qualitative Parameters Abhijit A. Rajguru, S.S. Apte Abstract - A distributed system can be viewed as a collection

More information

Effective Load Balancing Based on Cloud Partitioning for the Public Cloud

Effective Load Balancing Based on Cloud Partitioning for the Public Cloud Effective Load Balancing Based on Cloud Partitioning for the Public Cloud 1 T.Satya Nagamani, 2 D.Suseela Sagar 1,2 Dept. of IT, Sir C R Reddy College of Engineering, Eluru, AP, India Abstract Load balancing

More information

Group Based Load Balancing Algorithm in Cloud Computing Virtualization

Group Based Load Balancing Algorithm in Cloud Computing Virtualization Group Based Load Balancing Algorithm in Cloud Computing Virtualization Rishi Bhardwaj, 2 Sangeeta Mittal, Student, 2 Assistant Professor, Department of Computer Science, Jaypee Institute of Information

More information

A Comparative Study on Load Balancing Algorithms with Different Service Broker Policies in Cloud Computing

A Comparative Study on Load Balancing Algorithms with Different Service Broker Policies in Cloud Computing A Comparative Study on Load Balancing Algorithms with Different Service Broker Policies in Cloud Computing Sonia Lamba, Dharmendra Kumar United College of Engineering and Research,Allahabad, U.P, India.

More information

Extended Round Robin Load Balancing in Cloud Computing

Extended Round Robin Load Balancing in Cloud Computing www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 3 Issue 8 August, 2014 Page No. 7926-7931 Extended Round Robin Load Balancing in Cloud Computing Priyanka Gautam

More information