Anti-Load Balancing to Reduce Energy Consumption

Size: px
Start display at page:

Download "Anti-Load Balancing to Reduce Energy Consumption"

Transcription

1 Anti-Load Balancing to Reduce Energy Consumption Cheikhou Thiam, Georges Da Costa IRIT (UMR CNRS) Université de Toulouse Toulouse, France Presented at 2011 International Conference on Parallel, Distributed, Grid and Cloud Computing for Engineering Abstract A problem usually studied in distributed systems is how to evenly distribute workload. But when the goal is to reduce energy consumption, this type of algorithms can lead to have computers largely under-loaded and therefore consuming energy unnecessarily. Our fields of study will be the management of virtual machines in the cluster or grid-type systems. Here we will therefore look at the opposite problem: concentrate the load on a minimum number of machines. The goal is to turn off the released computers and therefore minimize the energy consumption of the system. We use an algorithm of global decision: a server selects a node, distribute its load to other nodes and then switch it off. To study this problem we have proceeded in three phases: (i) Model the problem (ii) Simulation (iii) Experimentation based on virtual machines (Xen, KVM,...). This work is expanded by refining the algorithm by taking into account other objectives than energy consumption: impact on performance, ability to change processors frequency. We present here several experiments on antiload balancing to reduce energy consumption significantly. Keywords: Energy, heuristic, Virtual Machines, Grid. 1 Introduction Like managing load distribution, energy consumption is a fundamental problem for large scale systems. Choice of location of running jobs has a large impact on the behavior of such systems. A minimal number of computers can be selected in order to run requested job at a particular time, even taking into account user requirements. Users can even add more criteria to obtain an optimal power consumption. Difficulties arise as dynamism is introduced and as jobs arrive, leave

2 and change over time. Several solutions exist to reduce power consumption due to computational servers and data centers. Alas, mixing energy consumption and performance (or QoS) objectives rise the difficulty level needed to find a good placement for tasks. However, to achieve energy savings while maintaining system performance, we need: i) a good description of the characteristics of applications and user feedback, ii) a complete and concise description of the system. A problem usually studied in distributed systems is to evenly distribute the load. But when the goal is to reduce power consumption, this type of algorithms can lead to have computers under-loaded and therefore consume energy unnecessarily. We will consider the opposite problem of load balancing: to concentrate the load on a minimum number of machines. The goal is to turn off the computers with no load and thus minimize the energy consumption of the whole system. This paper presents an centralized algorithm of decision: choose a server which node will transfer its load and will be shut off. We present here a series of experiments on the anti-load balancing for significantly reducing energy consumption. For this experiment, we try to avoid having some processor that over-heat which would cost more energy for cooling. So even while doing consolidation, it is important to distribute workload over time on several computers. To study this problem in section II we present the problem of energy management in distributed systems. We propose a tool for resource management that takes into account the energy dimension in Section III. A validation of this tool is made in Section IV. Section V concludes and presents perspectives. 2 Energy management in distributed systems According to IDC (International Data Corporation), 2012 for $ 1 invested in hardware, $ 1 will be spent for energy. In 2006, U.S. data centers used about 61 billion kwh, 1.5% from 4 trillion kwh consumed in total. This is the amount of energy used by 5.8 million U.S. households on average (5% of all households). It is easy to imagine the potential savings. Hardware performance are increasing and at the same time overall energy consumption of IT increases too. Energy management of computers driven by software is now an essential tool in the sustainable development of companies. Return on investment for such a solution can be very fast. Given the ever-increasing power of hardware and power consumption of data centers, operators of data centers start to realize that the practice of over provisioning with a large number of servers significantly underutilized is no more acceptable, and are eager for solutions to save energy. 2.1 Virtualization It is common for a company to have a couple of servers running at 15% capacity, the latter being there to deal with any time to punctual peak loads. A server loaded at 15% do not consume much less power than a server that is loaded at 90%, and to consolidate workload of several servers on only one can be profitable

3 if their peak loads do not always coincide. It would even stay true if virtualization had a load of 30 % on the computer. Virtualization allows to run multiple virtual machines on one physical machine, with each virtual machine sharing the resources of the physical computer across multiple environments. Different virtual machines can run different operating systems and multiple applications on the same physical computer. Virtualization can improve the effectiveness and availability of IT resources and applications. It reduces costs by reducing data center physical infrastructure and energy consumption. A virtual machine is a tightly isolated software container that can manage their own operating systems and applications as if it were a physical computer. It contains its own virtual processor, RAM, hard drive and network card. A virtual machine must satisfy the following conditions: (i) insulation: two machines can share physical resources of a single computer, they remain completely isolated from each other as if they were separate physical machines, (ii) compatibility: you can use a virtual machine to run any software you run on an real computer, (iv) encapsulation: encapsulates a complete set of virtual hardware resources and software within a software package, (v) independence material: totally independent of their underlying hardware. The term virtual machine is also used for some time in a very different sense to describe an environment created by an emulator. Such software emulates an operating system for the end user (examples: KVM, Oracle VM, XEN, Virtual PC...). 2.2 State of the art Technical options are already available to improve energy efficiency of servers such as energy-efficient hardware components, energy management systems or software basic elements such as virtualization. Some solutions, algorithms, include numerous approaches, through the network protocols [1], modeling of consumption [2], scheduling of tasks by predicting idle times [3]. This migration of virtual machines from server to server in a data center creates a challenge as when the load of a VM migrates, it is the same heat load. A host server can quickly become a hot spot. To evaluate improvements we choose to use a grid simulator. Table 4.1 presents a summary of various simulators commonly used in grids. Table 1 summarizes the literature about various existing simulators. A remark that might raise here is the lack of a simulator that can be considered as standard. Despite efforts in this direction and compared to low level network simulation, grid simulation does not appear to have reached the stage aging in order to qualify for having a referent simulator recognized by all. CloudSim is a simulation software developed by a team from the University of Melbourne, Australia, for modeling and simulation infrastructure and cloud services, which manages energy. Energy aware solutions are mainly based on virtualization. Few simulation software taking into account energy exist. Current evaluated solutions are usually based on centralized systems which is a limit when addressing large scale distributed systems.

4 Simulator Advantage Disavantage PeerSim [4] Scaling: 10 6 nodes in a cyclic No model of physical network, mode Light documentation GridSim [5] Network, grid, jobs, resources Energy not taken into account modeled, good Documentation CloudSim [6] Energy taken into account, Inherits GridSim, manages VM Manages only the energy as a money cost PlanetSim [7] Scaling: 10 5 nodes No statistics and no model of physical network SimGid [8] Scalability, network model, Energy management not taken statistics supported into account, light Documentation Table 1: Characteristics of existing simulators. Taking into account some deficiencies noted in these solutions, we will try in the following section to propose a solution of anti-load balancing leading to energy savings in distributed systems. 3 Energy aware simulation tool (ENRDC) The goal is to turn off unloaded computers and thus reduce the energy consumption of the system. We will first use three algorithms of centralized decision: a server decides which computer move away its load and switch off. 3.1 Parallelisation Scheme Our approach will facilitate resource sharing (multiple jobs) but also minimizes energy consumption. We chose initially a static approach. This will require to have information about the tasks before the execution such as the number of task and their execution time. The goal of our heuristics is to minimize energy consumption by distributing wisely jobs. Several solutions can be envisaged for the distribution of tasks between nodes: Centralized decision-making, it is usually a strategy of client-server / master-slave. A server node is responsible for responsible for allocation Distributed decision-making, at the initiative of any of the nodes. This will apply the anti-load balancing, either local or global Some nodes are responsible for dis- Semi-distributed decision-making. tributing to a group of nodes.

5 For the centralized algorithm (client-server) there are several way to manage the job queue (i) a central queue, (ii) each node has a queue of tasks. In the second approach, each node initializes its queue with its list of tasks. In the case when a node P i is lightly loaded, the server can unloaded it (migrate it to another node P j ) and put it to sleep. This centralized approaches has several advantages such as a simple implementation and policy update information, and good efficiency (low overhead since not too much communication occurs). However we can note some drawbacks related to bottlenecks when the number of node increases strongly. 3.2 Architecture Figure 1 shows the architecture of the simulator EnerSim. Figure 1: EnerSim architecture 4 Experimental validation of Enersim To evaluate our approach, we performed various simulations, watching the evolution of the energy system based on the distribution of jobs. The energy system is the sum of the energy consumed by each switched on computer 4.1 Methodology Energy model: CA = min(1, α i ) CD = α i

6 CE = α effective i = i α i min(1,cd) P i = P min αeffective i +α effective α effective i (P max P min ) power required to execute task i E = ( H j P i) t energy consumed T = execution time of jobs To highlight the influence of the number of hosts on the energy system in the first series of experiments we first run two jobs on two machines, then on two different machines. In the second experiment we vary the load of resources by performing a task migration. VMs on hosts that are at minimum load (in our case load less than 50 %) are chose as potential node to migrate their load. Finally, in the last experiment we use the algorithm below: For i=1 to 128 For j=1 to 100 For k=0 to 1 if k==0 migration=false Si k==1 migration=true EndFor if no migration: migration== false Randomly retrieves 16 jobs Gets i jobs and i VMs randomly algorithm without migration si migration : migration==true Algorithm with migration: retrieve settings from previous machines, jobs and vms EndFor EndFor 4.2 Parameters and experimental conditions Entities that we handle are the datacenter that encompass all entities, hosts, Vms, jobs. For the experimental conditions: 1. - experiments 1 and 2 Hosts : 100MIPS VMS : 50MIPS Jobs : 1000MIP 2. - experiments 3 and 4 Number of machines: 16 randomly taken between 400 and 450 MIPS Number of jobs: 128 randomly taken between 1000 and Mips Number of VMs: 128 randomly taken between 10 and 70 MIPS

7 4.3 Results To analyze the results of our simulations, we focus on the energy of the system. Indeed, the energy of the system will direct a guide to assess the impact of our method on the reduction of energy. We first present the evolution of the energy of a system to observe how it behaves when we vary the number of guests. Figure 2 was generated in the case of two jobs on two hosts. Figure 2: Evolution of energy depending on the distribution of jobs to hosts. As can be seen, the execution of two jobs on two distinct hosts causes a power consumption of 6000W, so that the same jobs run on a host cause a decrease in energy consumed, or 4000W. Using our formula to calculate the energy we get, for the execution of two jobs on two hosts, energy consumption on each host ( ) * 0.5 is 150W per second. The execution time of jobs being 20s ( ), the total energy consumption is 6000W. Using the same formula we get, in the case of the execution of two jobs on the host [100 + ( ) * 1] * 20 is 4000W. These theoretical results confirm those found using simulation. Figure 3 shows that the migration of jobs leads to a decrease in the energy system. As we can see, the higher the number of hosts N approaches k = 1, the more energy decreases. Figure 4 shows the evolution of energy in the execution of jobs with no migration and with migration. We can observe the evolution of the gap as the number of jobs increases. As might be expected, where the number of jobs is high, around 103, energy is the same for the two version. This is due to saturation of the data center, when migration can no longer be done. For the experiment of Figure 5, we try to avoid having a heating point. With a low load, energy consumption rise as the number of job increases. However, energy consuption decreases if nodes are not overloaded, whatever the load is. Figure 6 shows a more aggressive mode. A node x compares its load that a node y and decides to transfer or not. This shows three different aggressive modes:

8 Figure 3: Energy consumed during the migration of jobs. Figure 4: Energy in function of the job number, without and with migration. Figure 5: Hotspots Succ curve: the least loaded host transfer its load to the least loaded node that comes just after him if it has enough spare computing power

9 Figure 6: Architecture. Dec curve: We compare the least load node to other nodes starting with the most loaded node. Jobs are migrated to the first node that can receive them. Rand curve: the load of the node is migrated to a randomly chosen node It is clear that the random choice of the node that receives the load increases the electric consumption. 5 Conclusion Usually one studies equitable distribution of the load in distributed systems. Here we became interested in the opposite issue, concentrating the load on a minimum number of machines. The use of anti-load balancing provides a power gain in managing data centers. We have proposed some algorithms to optimize management. Our solution, based on a centralized architecture. The results of our simulations show that our solution fits better when the grid size increases. A logical extension of this work, to better optimize our approach is to integrate quality of service (QoS) but also to address the distributed solution. References [1] Barry Rountree and David K. Lowenthal and Shelby Funk and Vincent W. Freeh and Bronis R. de Supinski and Martin Schulz. - Bounding energy consumption in large-scale MPI programs Proceedings of the ACM/IEEE Conference on High Performance Networking and Computing, SC 2007, November 10-16, 2007, Reno, Nevada, USA.

10 [2] Hlavacs, Helmut and Da Costa, Georges and Pierson, Jean-Marc. Energy Consumption of Residential and Professional Switches Rapport de recherche, IRIT, Universit Paul Sabatier, Toulouse, [3] Da-Costa, Georges and Gelas, Jean-Patrick and Georgiou, Yiannis and Lefvre, Laurent and Orgerie, Anne- Ccile and Pierson, Jean-Marc and Richard, Olivier and Sharma, Kamal. The GREEN-NET Framework : Energy Efficiency in Large Scale Distributed Systems HPPAC 2009 : High Performance Power Aware ComputingWorkshop in conjunction with IPDPS [4] PeerSim: A Peer-to-Peer Simulator. [5] Rajkumar Buyya, Manzur Murshed, A Grid Simulation Toolkit for Resource Modelling and Application Scheduling for Parallel and Distributed Computing. In Concurrency and Computation: Practice and Experience, Wiley, May 2002 [6] Rodrigo N. Calheiros, Rajiv Ranjan, Anton Beloglazov, Cesar A. F. De Rose, and Rajkumar Buyya, CloudSim: A Toolkit for Modeling and Simulation of Cloud Computing environments and Evaluation of Resource Provisioning Algorithms, Software: Practice and Experience (in press, accepted on June 14, 2010). [7] Jordi Pujol Ahull, Pedro Garca Lpez, Marc Snchez Artigas, Marcel Arrufat Arias Gerard Pars Aixal, Max Bruchmann, PlanetSim : An extensible framework for overlay network and services simulations. In Proceedings of 9th International Conference on Peer-to-Peer Computing 2009 (IEEE P2P 09). Seattle, Washington, USA, 2009, Pages [8] H. Casanova, A. Legrand, M. Quinson, SimGrid: a Generic Framework for Large-Scale Distributed Experimentations, in Proceedings of Tenth International Conference on Computer Modeling and Simulation (UKSim), Cambridge, U.K., April 2008.

CloudSim: A Toolkit for Modeling and Simulation of Cloud Computing Environments and Evaluation of Resource Provisioning Algorithms

CloudSim: A Toolkit for Modeling and Simulation of Cloud Computing Environments and Evaluation of Resource Provisioning Algorithms CloudSim: A Toolkit for Modeling and Simulation of Cloud Computing Environments and Evaluation of Resource Provisioning Algorithms Rodrigo N. Calheiros, Rajiv Ranjan, Anton Beloglazov, César A. F. De Rose,

More information

A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing

A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing Liang-Teh Lee, Kang-Yuan Liu, Hui-Yang Huang and Chia-Ying Tseng Department of Computer Science and Engineering,

More information

Dynamic resource management for energy saving in the cloud computing environment

Dynamic resource management for energy saving in the cloud computing environment Dynamic resource management for energy saving in the cloud computing environment Liang-Teh Lee, Kang-Yuan Liu, and Hui-Yang Huang Department of Computer Science and Engineering, Tatung University, Taiwan

More information

Heterogeneous Workload Consolidation for Efficient Management of Data Centers in Cloud Computing

Heterogeneous Workload Consolidation for Efficient Management of Data Centers in Cloud Computing Heterogeneous Workload Consolidation for Efficient Management of Data Centers in Cloud Computing Deep Mann ME (Software Engineering) Computer Science and Engineering Department Thapar University Patiala-147004

More information

Cloud Computing Simulation Using CloudSim

Cloud Computing Simulation Using CloudSim Cloud Computing Simulation Using CloudSim Ranjan Kumar #1, G.Sahoo *2 # Assistant Professor, Computer Science & Engineering, Ranchi University, India Professor & Head, Information Technology, Birla Institute

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

Round Robin with Server Affinity: A VM Load Balancing Algorithm for Cloud Based Infrastructure

Round Robin with Server Affinity: A VM Load Balancing Algorithm for Cloud Based Infrastructure J Inf Process Syst, Vol.9, No.3, September 2013 pissn 1976-913X eissn 2092-805X http://dx.doi.org/10.3745/jips.2013.9.3.379 Round Robin with Server Affinity: A VM Load Balancing Algorithm for Cloud Based

More information

Energy Conscious Virtual Machine Migration by Job Shop Scheduling Algorithm

Energy Conscious Virtual Machine Migration by Job Shop Scheduling Algorithm Energy Conscious Virtual Machine Migration by Job Shop Scheduling Algorithm Shanthipriya.M 1, S.T.Munusamy 2 ProfSrinivasan. R 3 M.Tech (IT) Student, Department of IT, PSV College of Engg & Tech, Krishnagiri,

More information

Energy Constrained Resource Scheduling for Cloud Environment

Energy Constrained Resource Scheduling for Cloud Environment Energy Constrained Resource Scheduling for Cloud Environment 1 R.Selvi, 2 S.Russia, 3 V.K.Anitha 1 2 nd Year M.E.(Software Engineering), 2 Assistant Professor Department of IT KSR Institute for Engineering

More information

Efficient and Enhanced Load Balancing Algorithms in Cloud Computing

Efficient and Enhanced Load Balancing Algorithms in Cloud Computing , pp.9-14 http://dx.doi.org/10.14257/ijgdc.2015.8.2.02 Efficient and Enhanced Load Balancing Algorithms in Cloud Computing Prabhjot Kaur and Dr. Pankaj Deep Kaur M. Tech, CSE P.H.D prabhjotbhullar22@gmail.com,

More information

Keywords: Cloudsim, MIPS, Gridlet, Virtual machine, Data center, Simulation, SaaS, PaaS, IaaS, VM. Introduction

Keywords: Cloudsim, MIPS, Gridlet, Virtual machine, Data center, Simulation, SaaS, PaaS, IaaS, VM. Introduction Vol. 3 Issue 1, January-2014, pp: (1-5), Impact Factor: 1.252, Available online at: www.erpublications.com Performance evaluation of cloud application with constant data center configuration and variable

More information

LOAD BALANCING OF USER PROCESSES AMONG VIRTUAL MACHINES IN CLOUD COMPUTING ENVIRONMENT

LOAD BALANCING OF USER PROCESSES AMONG VIRTUAL MACHINES IN CLOUD COMPUTING ENVIRONMENT LOAD BALANCING OF USER PROCESSES AMONG VIRTUAL MACHINES IN CLOUD COMPUTING ENVIRONMENT 1 Neha Singla Sant Longowal Institute of Engineering and Technology, Longowal, Punjab, India Email: 1 neha.singla7@gmail.com

More information

A Taxonomy and Survey of Energy-Efficient Data Centers and Cloud Computing Systems

A Taxonomy and Survey of Energy-Efficient Data Centers and Cloud Computing Systems A Taxonomy and Survey of Energy-Efficient Data Centers and Cloud Computing Systems Anton Beloglazov, Rajkumar Buyya, Young Choon Lee, and Albert Zomaya Present by Leping Wang 1/25/2012 Outline Background

More information

Comparison of PBRR Scheduling Algorithm with Round Robin and Heuristic Priority Scheduling Algorithm in Virtual Cloud Environment

Comparison of PBRR Scheduling Algorithm with Round Robin and Heuristic Priority Scheduling Algorithm in Virtual Cloud Environment www.ijcsi.org 99 Comparison of PBRR Scheduling Algorithm with Round Robin and Heuristic Priority Scheduling Algorithm in Cloud Environment Er. Navreet Singh 1 1 Asst. Professor, Computer Science Department

More information

NetworkCloudSim: Modelling Parallel Applications in Cloud Simulations

NetworkCloudSim: Modelling Parallel Applications in Cloud Simulations 2011 Fourth IEEE International Conference on Utility and Cloud Computing NetworkCloudSim: Modelling Parallel Applications in Cloud Simulations Saurabh Kumar Garg and Rajkumar Buyya Cloud Computing and

More information

Exploring Inter-Cloud Load Balancing by Utilizing Historical Service Submission Records

Exploring Inter-Cloud Load Balancing by Utilizing Historical Service Submission Records 72 International Journal of Distributed Systems and Technologies, 3(3), 72-81, July-September 2012 Exploring Inter-Cloud Load Balancing by Utilizing Historical Service Submission Records Stelios Sotiriadis,

More information

Energy Efficient Resource Management in Virtualized Cloud Data Centers

Energy Efficient Resource Management in Virtualized Cloud Data Centers 2010 10th IEEE/ACM International Conference on Cluster, Cloud and Grid Computing Energy Efficient Resource Management in Virtualized Cloud Data Centers Anton Beloglazov* and Rajkumar Buyya Cloud Computing

More information

Utilizing Round Robin Concept for Load Balancing Algorithm at Virtual Machine Level in Cloud Environment

Utilizing Round Robin Concept for Load Balancing Algorithm at Virtual Machine Level in Cloud Environment Utilizing Round Robin Concept for Load Balancing Algorithm at Virtual Machine Level in Cloud Environment Stuti Dave B H Gardi College of Engineering & Technology Rajkot Gujarat - India Prashant Maheta

More information

Dynamic Round Robin for Load Balancing in a Cloud Computing

Dynamic Round Robin for Load Balancing in a 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 IJCSMC, Vol. 2, Issue. 6, June 2013, pg.274

More information

Green Cloud Computing 班 級 : 資 管 碩 一 組 員 :710029011 黃 宗 緯 710029021 朱 雅 甜

Green Cloud Computing 班 級 : 資 管 碩 一 組 員 :710029011 黃 宗 緯 710029021 朱 雅 甜 Green Cloud Computing 班 級 : 資 管 碩 一 組 員 :710029011 黃 宗 緯 710029021 朱 雅 甜 Outline Introduction Proposed Schemes VM configuration VM Live Migration Comparison 2 Introduction (1/2) In 2006, the power consumption

More information

CloudAnalyst: A CloudSim-based Visual Modeller for Analysing Cloud Computing Environments and Applications

CloudAnalyst: A CloudSim-based Visual Modeller for Analysing Cloud Computing Environments and Applications CloudAnalyst: A CloudSim-based Visual Modeller for Analysing Cloud Computing Environments and Applications Bhathiya Wickremasinghe 1, Rodrigo N. Calheiros 2, and Rajkumar Buyya 1 1 The Cloud Computing

More information

Energy Efficient Resource Management in Virtualized Cloud Data Centers

Energy Efficient Resource Management in Virtualized Cloud Data Centers Energy Efficient Resource Management in Virtualized Cloud Data Centers Anton Beloglazov and Rajkumar Buyya Cloud Computing and Distributed Systems (CLOUDS) Laboratory Department of Computer Science and

More information

Power Aware Live Migration for Data Centers in Cloud using Dynamic Threshold

Power Aware Live Migration for Data Centers in Cloud using Dynamic Threshold Richa Sinha et al, Int. J. Comp. Tech. Appl., Vol 2 (6), 2041-2046 Power Aware Live Migration for Data Centers in Cloud using Dynamic Richa Sinha, Information Technology L.D. College of Engineering, Ahmedabad,

More information

CloudSim-A Survey on VM Management Techniques

CloudSim-A Survey on VM Management Techniques CloudSim-A Survey on VM Management Techniques Seema Vahora 1, Ritesh Patel 2 Student, U & P U. Patel Dept. of Computer Engineering, C.S.P.I.T., CHARUSAT, Changa, Gujarat., India 1 Associate Professor,

More information

Flauncher and DVMS Deploying and Scheduling Thousands of Virtual Machines on Hundreds of Nodes Distributed Geographically

Flauncher and DVMS Deploying and Scheduling Thousands of Virtual Machines on Hundreds of Nodes Distributed Geographically Flauncher and Deploying and Scheduling Thousands of Virtual Machines on Hundreds of Nodes Distributed Geographically Daniel Balouek, Adrien Lèbre, Flavien Quesnel To cite this version: Daniel Balouek,

More information

Task Scheduling for Efficient Resource Utilization in Cloud

Task Scheduling for Efficient Resource Utilization in Cloud Summer 2014 Task Scheduling for Efficient Resource Utilization in Cloud A Project Report for course COEN 241 Under the guidance of, Dr.Ming Hwa Wang Submitted by : Najuka Sankhe Nikitha Karkala Nimisha

More information

International Journal of Digital Application & Contemporary research Website: www.ijdacr.com (Volume 2, Issue 9, April 2014)

International Journal of Digital Application & Contemporary research Website: www.ijdacr.com (Volume 2, Issue 9, April 2014) Green Cloud Computing: Greedy Algorithms for Virtual Machines Migration and Consolidation to Optimize Energy Consumption in a Data Center Rasoul Beik Islamic Azad University Khomeinishahr Branch, Isfahan,

More information

Performance Gathering and Implementing Portability on Cloud Storage Data

Performance Gathering and Implementing Portability on Cloud Storage Data International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 17 (2014), pp. 1815-1823 International Research Publications House http://www. irphouse.com Performance Gathering

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

Challenges and Importance of Green Data Center on Virtualization Environment

Challenges and Importance of Green Data Center on Virtualization Environment Challenges and Importance of Green Data Center on Virtualization Environment Abhishek Singh Department of Information Technology Amity University, Noida, Uttar Pradesh, India Priyanka Upadhyay Department

More information

Environments, Services and Network Management for Green Clouds

Environments, Services and Network Management for Green Clouds Environments, Services and Network Management for Green Clouds Carlos Becker Westphall Networks and Management Laboratory Federal University of Santa Catarina MARCH 3RD, REUNION ISLAND IARIA GLOBENET 2012

More information

3. RELATED WORKS 2. STATE OF THE ART CLOUD TECHNOLOGY

3. RELATED WORKS 2. STATE OF THE ART CLOUD TECHNOLOGY Journal of Computer Science 10 (3): 484-491, 2014 ISSN: 1549-3636 2014 doi:10.3844/jcssp.2014.484.491 Published Online 10 (3) 2014 (http://www.thescipub.com/jcs.toc) DISTRIBUTIVE POWER MIGRATION AND MANAGEMENT

More information

Load Balancing Algorithm Based on Estimating Finish Time of Services in Cloud Computing

Load Balancing Algorithm Based on Estimating Finish Time of Services in Cloud Computing Load Balancing Algorithm Based on Estimating Finish Time of Services in Cloud Computing Nguyen Khac Chien*, Nguyen Hong Son**, Ho Dac Loc*** * University of the People's Police, Ho Chi Minh city, Viet

More information

Study and Comparison of CloudSim Simulators in the Cloud Computing

Study and Comparison of CloudSim Simulators in the Cloud Computing Study and Comparison of CloudSim Simulators in the Cloud Computing Dr. Rahul Malhotra* & Prince Jain** *Director-Principal, Adesh Institute of Technology, Ghauran, Mohali, Punjab, INDIA. E-Mail: blessurahul@gmail.com

More information

Cloud Analyst: An Insight of Service Broker Policy

Cloud Analyst: An Insight of Service Broker Policy Cloud Analyst: An Insight of Service Broker Policy Hetal V. Patel 1, Ritesh Patel 2 Student, U & P U. Patel Department of Computer Engineering, CSPIT, CHARUSAT, Changa, Gujarat, India Associate Professor,

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

Performance Analysis of VM Scheduling Algorithm of CloudSim in Cloud Computing

Performance Analysis of VM Scheduling Algorithm of CloudSim in Cloud Computing IJECT Vo l. 6, Is s u e 1, Sp l-1 Ja n - Ma r c h 2015 ISSN : 2230-7109 (Online) ISSN : 2230-9543 (Print) Performance Analysis Scheduling Algorithm CloudSim in Cloud Computing 1 Md. Ashifuddin Mondal,

More information

Dynamic Creation and Placement of Virtual Machine Using CloudSim

Dynamic Creation and Placement of Virtual Machine Using CloudSim Dynamic Creation and Placement of Virtual Machine Using CloudSim Vikash Rao Pahalad Singh College of Engineering, Balana, India Abstract --Cloud Computing becomes a new trend in computing. The IaaS(Infrastructure

More information

Towards Energy-efficient Cloud Computing

Towards Energy-efficient Cloud Computing Towards Energy-efficient Cloud Computing Michael Maurer Distributed Systems Group TU Vienna, Austria maurer@infosys.tuwien.ac.at http://www.infosys.tuwien.ac.at/staff/maurer/ Distributed Systems Group

More information

Energy Optimized Virtual Machine Scheduling Schemes in Cloud Environment

Energy Optimized Virtual Machine Scheduling Schemes in Cloud Environment Abstract Energy Optimized Virtual Machine Scheduling Schemes in Cloud Environment (14-18) Energy Optimized Virtual Machine Scheduling Schemes in Cloud Environment Ghanshyam Parmar a, Dr. Vimal Pandya b

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

EFFICIENT VM LOAD BALANCING ALGORITHM FOR A CLOUD COMPUTING ENVIRONMENT

EFFICIENT VM LOAD BALANCING ALGORITHM FOR A CLOUD COMPUTING ENVIRONMENT EFFICIENT VM LOAD BALANCING ALGORITHM FOR A CLOUD COMPUTING ENVIRONMENT Jasmin James, 38 Sector-A, Ambedkar Colony, Govindpura, Bhopal M.P Email:james.jasmin18@gmail.com Dr. Bhupendra Verma, Professor

More information

Dr. J. W. Bakal Principal S. S. JONDHALE College of Engg., Dombivli, India

Dr. J. W. Bakal Principal S. S. JONDHALE College of Engg., Dombivli, India Volume 5, Issue 6, June 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Factor based Resource

More information

Energy Efficiency in Cloud Data Centers Using Load Balancing

Energy Efficiency in Cloud Data Centers Using Load Balancing Energy Efficiency in Cloud Data Centers Using Load Balancing Ankita Sharma *, Upinder Pal Singh ** * Research Scholar, CGC, Landran, Chandigarh ** Assistant Professor, CGC, Landran, Chandigarh ABSTRACT

More information

ENERGY EFFICIENT VIRTUAL MACHINE ASSIGNMENT BASED ON ENERGY CONSUMPTION AND RESOURCE UTILIZATION IN CLOUD NETWORK

ENERGY EFFICIENT VIRTUAL MACHINE ASSIGNMENT BASED ON ENERGY CONSUMPTION AND RESOURCE UTILIZATION IN CLOUD NETWORK International Journal of Computer Engineering & Technology (IJCET) Volume 7, Issue 1, Jan-Feb 2016, pp. 45-53, Article ID: IJCET_07_01_006 Available online at http://www.iaeme.com/ijcet/issues.asp?jtype=ijcet&vtype=7&itype=1

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

VM Provisioning Policies to Improve the Profit of Cloud Infrastructure Service Providers

VM Provisioning Policies to Improve the Profit of Cloud Infrastructure Service Providers VM Provisioning Policies to mprove the Profit of Cloud nfrastructure Service Providers Komal Singh Patel Electronics and Computer Engineering Department nd ian nstitute of Technology Roorkee Roorkee, ndia

More information

IMPROVEMENT OF RESPONSE TIME OF LOAD BALANCING ALGORITHM IN CLOUD ENVIROMENT

IMPROVEMENT OF RESPONSE TIME OF LOAD BALANCING ALGORITHM IN CLOUD ENVIROMENT IMPROVEMENT OF RESPONSE TIME OF LOAD BALANCING ALGORITHM IN CLOUD ENVIROMENT Muhammad Muhammad Bala 1, Miss Preety Kaushik 2, Mr Vivec Demri 3 1, 2, 3 Department of Engineering and Computer Science, Sharda

More information

A Formal and Tooled Framework for Managing Everything as a Service. www.occiware.org. Deliverable 3.4.1. Cloud Computing Simulators: State of the Art

A Formal and Tooled Framework for Managing Everything as a Service. www.occiware.org. Deliverable 3.4.1. Cloud Computing Simulators: State of the Art A Formal and Tooled Framework for Managing Everything as a Service www.occiware.org Deliverable 3.4.1 Cloud Computing Simulators: State of the Art OCCIware is a project funded by the French FSN (Fonds

More information

Increasing QoS in SaaS for low Internet speed connections in cloud

Increasing QoS in SaaS for low Internet speed connections in cloud Proceedings of the 9 th International Conference on Applied Informatics Eger, Hungary, January 29 February 1, 2014. Vol. 1. pp. 195 200 doi: 10.14794/ICAI.9.2014.1.195 Increasing QoS in SaaS for low Internet

More information

Future Generation Computer Systems. Energy-aware resource allocation heuristics for efficient management of data centers for Cloud computing

Future Generation Computer Systems. Energy-aware resource allocation heuristics for efficient management of data centers for Cloud computing Future Generation Computer Systems 28 (2012) 755 768 Contents lists available at SciVerse ScienceDirect Future Generation Computer Systems journal homepage: www.elsevier.com/locate/fgcs Energy-aware resource

More information

Power and Energy aware job scheduling techniques

Power and Energy aware job scheduling techniques Power and Energy aware job scheduling techniques Yiannis Georgiou R&D Software Architect 02-07-2015 Top500 HPC supercomputers 2 From Top500 November 2014 list IT Energy Consumption 3 http://www.greenpeace.org/international/global/international/publications/climate/2012/

More information

CloudSim: A Novel Framework for Modeling and Simulation of Cloud Computing Infrastructures and Services

CloudSim: A Novel Framework for Modeling and Simulation of Cloud Computing Infrastructures and Services CloudSim: A Novel Framework for Modeling and Simulation of Cloud Computing Infrastructures and Services Rodrigo N. Calheiros 1,2, Rajiv Ranjan 1, César A. F. De Rose 2, and Rajkumar Buyya 1 1 Grid Computing

More information

Profit Based Data Center Service Broker Policy for Cloud Resource Provisioning

Profit Based Data Center Service Broker Policy for Cloud Resource Provisioning I J E E E C International Journal of Electrical, Electronics ISSN No. (Online): 2277-2626 and Computer Engineering 5(1): 54-60(2016) Profit Based Data Center Service Broker Policy for Cloud Resource Provisioning

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

Energy-Aware Multi-agent Server Consolidation in Federated Clouds

Energy-Aware Multi-agent Server Consolidation in Federated Clouds Energy-Aware Multi-agent Server Consolidation in Federated Clouds Alessandro Ferreira Leite 1 and Alba Cristina Magalhaes Alves de Melo 1 Department of Computer Science University of Brasilia, Brasilia,

More information

CloudSimDisk: Energy-Aware Storage Simulation in CloudSim

CloudSimDisk: Energy-Aware Storage Simulation in CloudSim CloudSimDisk: Energy-Aware Storage Simulation in CloudSim Baptiste Louis, Karan Mitra, Saguna Saguna and Christer Åhlund Department of Computer Science, Electrical and Space Engineering Luleå University

More information

A Middleware Strategy to Survive Compute Peak Loads in Cloud

A Middleware Strategy to Survive Compute Peak Loads in Cloud A Middleware Strategy to Survive Compute Peak Loads in Cloud Sasko Ristov Ss. Cyril and Methodius University Faculty of Information Sciences and Computer Engineering Skopje, Macedonia Email: sashko.ristov@finki.ukim.mk

More information

Virtual Machine Placement in Cloud systems using Learning Automata

Virtual Machine Placement in Cloud systems using Learning Automata 2013 13th Iranian Conference on Fuzzy Systems (IFSC) Virtual Machine Placement in Cloud systems using Learning Automata N. Rasouli 1 Department of Electronic, Computer and Electrical Engineering, Qazvin

More information

An Optimal Approach for an Energy-Aware Resource Provisioning in Cloud Computing

An Optimal Approach for an Energy-Aware Resource Provisioning in Cloud Computing An Optimal Approach for an Energy-Aware Resource Provisioning in Cloud Computing Mrs. Mala Kalra # 1, Navtej Singh Ghumman #3 1 Assistant Professor, Department of Computer Science National Institute of

More information

Dynamic Resource allocation in Cloud

Dynamic Resource allocation in Cloud Dynamic Resource allocation in Cloud ABSTRACT: Cloud computing allows business customers to scale up and down their resource usage based on needs. Many of the touted gains in the cloud model come from

More information

Modeling Local Broker Policy Based on Workload Profile in Network Cloud

Modeling Local Broker Policy Based on Workload Profile in Network Cloud Modeling Local Broker Policy Based on Workload Profile in Network Cloud Amandeep Sandhu 1, Maninder Kaur 2 1 Swami Vivekanand Institute of Engineering and Technology, Banur, Punjab, India 2 Swami Vivekanand

More information

High performance computing network for cloud environment using simulators

High performance computing network for cloud environment using simulators High performance computing network for cloud environment using simulators Ajith Singh. N 1 and M. Hemalatha 2 1 Ph.D, Research Scholar (CS), Karpagam University, Coimbatore, India 2 Prof & Head, Department

More information

An Efficient Cloud Service Broker Algorithm

An Efficient Cloud Service Broker Algorithm An Efficient Cloud Service Broker Algorithm 1 Gamal I. Selim, 2 Rowayda A. Sadek, 3 Hend Taha 1 College of Engineering and Technology, AAST, dgamal55@yahoo.com 2 Faculty of Computers and Information, Helwan

More information

Performance Evaluation of Round Robin Algorithm in Cloud Environment

Performance Evaluation of Round Robin Algorithm in Cloud Environment Performance Evaluation of Round Robin Algorithm in Cloud Environment Asha M L 1 Neethu Myshri R 2 Sowmyashree C.S 3 1,3 AP, Dept. of CSE, SVCE, Bangalore. 2 M.E(dept. of CSE) Student, UVCE, Bangalore.

More information

Efficient Qos Based Resource Scheduling Using PAPRIKA Method for Cloud Computing

Efficient Qos Based Resource Scheduling Using PAPRIKA Method for Cloud Computing Efficient Qos Based Resource Scheduling Using PAPRIKA Method for Cloud Computing Hilda Lawrance* Post Graduate Scholar Department of Information Technology, Karunya University Coimbatore, Tamilnadu, India

More information

2) Xen Hypervisor 3) UEC

2) Xen Hypervisor 3) UEC 5. Implementation Implementation of the trust model requires first preparing a test bed. It is a cloud computing environment that is required as the first step towards the implementation. Various tools

More information

Dynamic Resource Management Using Skewness and Load Prediction Algorithm for Cloud Computing

Dynamic Resource Management Using Skewness and Load Prediction Algorithm for Cloud Computing Dynamic Resource Management Using Skewness and Load Prediction Algorithm for Cloud Computing SAROJA V 1 1 P G Scholar, Department of Information Technology Sri Venkateswara College of Engineering Chennai,

More information

THE TASKS ALLOCATION BASED ON THE PRE- ESTIMATION OF THE PROCESSING TIME IN THE CLOUD ENVIRONMENT

THE TASKS ALLOCATION BASED ON THE PRE- ESTIMATION OF THE PROCESSING TIME IN THE CLOUD ENVIRONMENT THE TASKS ALLOCATION BASED ON THE PRE- ESTIMATION OF THE PROCESSING TIME IN THE CLOUD ENVIRONMENT YOUSSEF FAHIM 1, ELHABIB BEN LAHMAR 1, EL HOUSSINE LABRIJI 1, AHMED EDDAOUI 1 1 Hassan II University -

More information

Enhancing the Scalability of Virtual Machines in Cloud

Enhancing the Scalability of Virtual Machines in Cloud Enhancing the Scalability of Virtual Machines in Cloud Chippy.A #1, Ashok Kumar.P #2, Deepak.S #3, Ananthi.S #4 # Department of Computer Science and Engineering, SNS College of Technology Coimbatore, Tamil

More information

Energy Aware Resource Allocation in Cloud Datacenter

Energy Aware Resource Allocation in Cloud Datacenter International Journal of Engineering and Advanced Technology (IJEAT) Energy Aware Resource Allocation in Cloud Datacenter Manasa H.B, Anirban Basu Abstract- The greatest environmental challenge today is

More information

Allocation of Resources Dynamically in Data Centre for Cloud Environment

Allocation of Resources Dynamically in Data Centre for Cloud Environment Allocation of Resources Dynamically in Data Centre for Cloud Environment Mr.Pramod 1, Mr. Kumar Swamy 2, Mr. Sunitha B. S 3 ¹Computer Science & Engineering, EPCET, VTU, INDIA ² Computer Science & Engineering,

More information

SURVEY ON GREEN CLOUD COMPUTING DATA CENTERS

SURVEY ON GREEN CLOUD COMPUTING DATA CENTERS SURVEY ON GREEN CLOUD COMPUTING DATA CENTERS ¹ONKAR ASWALE, ²YAHSAVANT JADHAV, ³PAYAL KALE, 4 NISHA TIWATANE 1,2,3,4 Dept. of Computer Sci. & Engg, Rajarambapu Institute of Technology, Islampur Abstract-

More information

SERVICE BROKER ROUTING POLICES IN CLOUD ENVIRONMENT: A SURVEY

SERVICE BROKER ROUTING POLICES IN CLOUD ENVIRONMENT: A SURVEY SERVICE BROKER ROUTING POLICES IN CLOUD ENVIRONMENT: A SURVEY Rekha P M 1 and M Dakshayini 2 1 Department of Information Science & Engineering, VTU, JSS academy of technical Education, Bangalore, Karnataka

More information

Study on Cloud Computing Resource Scheduling Strategy Based on the Ant Colony Optimization Algorithm

Study on Cloud Computing Resource Scheduling Strategy Based on the Ant Colony Optimization Algorithm www.ijcsi.org 54 Study on Cloud Computing Resource Scheduling Strategy Based on the Ant Colony Optimization Algorithm Linan Zhu 1, Qingshui Li 2, and Lingna He 3 1 College of Mechanical Engineering, Zhejiang

More information

Improving Performance in Load Balancing Problem on the Grid Computing System

Improving Performance in Load Balancing Problem on the Grid Computing System Improving Performance in Problem on the Grid Computing System Prabhat Kr.Srivastava IIMT College of Engineering Greater Noida, India Sonu Gupta IIMT College of Engineering Greater Noida, India Dheerendra

More information

A Proposed Service Broker Policy for Data Center Selection in Cloud Environment with Implementation

A Proposed Service Broker Policy for Data Center Selection in Cloud Environment with Implementation A Service Broker Policy for Data Center Selection in Cloud Environment with Implementation Dhaval Limbani*, Bhavesh Oza** *(Department of Information Technology, S. S. Engineering College, Bhavnagar) **

More information

Payment minimization and Error-tolerant Resource Allocation for Cloud System Using equally spread current execution load

Payment minimization and Error-tolerant Resource Allocation for Cloud System Using equally spread current execution load Payment minimization and Error-tolerant Resource Allocation for Cloud System Using equally spread current execution load Pooja.B. Jewargi Prof. Jyoti.Patil Department of computer science and engineering,

More information

OpenStack Neat: a framework for dynamic and energy-efficient consolidation of virtual machines in OpenStack clouds

OpenStack Neat: a framework for dynamic and energy-efficient consolidation of virtual machines in OpenStack clouds CONCURRENCY AND COMPUTATION: PRACTICE AND EXPERIENCE Concurrency Computat.: Pract. Exper. (2014) Published online in Wiley Online Library (wileyonlinelibrary.com)..3314 OpenStack Neat: a framework for

More information

HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS

HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS HYBRID ACO-IWD OPTIMIZATION ALGORITHM FOR MINIMIZING WEIGHTED FLOWTIME IN CLOUD-BASED PARAMETER SWEEP EXPERIMENTS R. Angel Preethima 1, Margret Johnson 2 1 Student, Computer Science and Engineering, Karunya

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

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

Efficient Service Broker Policy For Large-Scale Cloud Environments

Efficient Service Broker Policy For Large-Scale Cloud Environments www.ijcsi.org 85 Efficient Service Broker Policy For Large-Scale Cloud Environments Mohammed Radi Computer Science Department, Faculty of Applied Science Alaqsa University, Gaza Palestine Abstract Algorithms,

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

An Implementation of Load Balancing Policy for Virtual Machines Associated With a Data Center

An Implementation of Load Balancing Policy for Virtual Machines Associated With a Data Center An Implementation of Load Balancing Policy for Virtual Machines Associated With a Data Center B.SANTHOSH KUMAR Assistant Professor, Department Of Computer Science, G.Pulla Reddy Engineering College. Kurnool-518007,

More information

THÈSE. En vue de l obtention du DOCTORAT DE L UNIVERSITÉ DE TOULOUSE. Présentée et soutenue le 03/07/2014 par : Cheikhou THIAM

THÈSE. En vue de l obtention du DOCTORAT DE L UNIVERSITÉ DE TOULOUSE. Présentée et soutenue le 03/07/2014 par : Cheikhou THIAM THÈSE En vue de l obtention du DOCTORAT DE L UNIVERSITÉ DE TOULOUSE Délivré par : l Université Toulouse 3 Paul Sabatier (UT3 Paul Sabatier) Présentée et soutenue le 03/07/2014 par : Cheikhou THIAM Anti

More information

Green Cloud: Smart Resource Allocation and Optimization using Simulated Annealing Technique

Green Cloud: Smart Resource Allocation and Optimization using Simulated Annealing Technique Green Cloud: Smart Resource Allocation and Optimization using Simulated Annealing Technique AkshatDhingra M.Tech Research Scholar, Department of Computer Science and Engineering, Birla Institute of Technology,

More information

Multifaceted Resource Management for Dealing with Heterogeneous Workloads in Virtualized Data Centers

Multifaceted Resource Management for Dealing with Heterogeneous Workloads in Virtualized Data Centers Multifaceted Resource Management for Dealing with Heterogeneous Workloads in Virtualized Data Centers Íñigo Goiri, J. Oriol Fitó, Ferran Julià, Ramón Nou, Josep Ll. Berral, Jordi Guitart and Jordi Torres

More information

Virtualization of the MS Exchange Server Environment

Virtualization of the MS Exchange Server Environment MS Exchange Server Acceleration Maximizing Users in a Virtualized Environment with Flash-Powered Consolidation Allon Cohen, PhD OCZ Technology Group Introduction Microsoft (MS) Exchange Server is one of

More information

This is an author-deposited version published in : http://oatao.univ-toulouse.fr/ Eprints ID : 12902

This is an author-deposited version published in : http://oatao.univ-toulouse.fr/ Eprints ID : 12902 Open Archive TOULOUSE Archive Ouverte (OATAO) OATAO is an open access repository that collects the work of Toulouse researchers and makes it freely available over the web where possible. This is an author-deposited

More information

An Optimized Load-balancing Scheduling Method Based on the WLC Algorithm for Cloud Data Centers

An Optimized Load-balancing Scheduling Method Based on the WLC Algorithm for Cloud Data Centers Journal of Computational Information Systems 9: 7 (23) 689 6829 Available at http://www.jofcis.com An Optimized Load-balancing Scheduling Method Based on the WLC Algorithm for Cloud Data Centers Lianying

More information

Virtual Machine Allocation Policy in Cloud Computing Using CloudSim in Java

Virtual Machine Allocation Policy in Cloud Computing Using CloudSim in Java Vol.8, No.1 (2015), pp.145-158 http://dx.doi.org/10.14257/ijgdc.2015.8.1.14 Virtual Machine Allocation Policy in Cloud Computing Using CloudSim in Java Kushang Parikh, Nagesh Hawanna, Haleema.P.K, Jayasubalakshmi.R

More information

Virtualization Technology using Virtual Machines for Cloud Computing

Virtualization Technology using Virtual Machines for Cloud Computing International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Virtualization Technology using Virtual Machines for Cloud Computing T. Kamalakar Raju 1, A. Lavanya 2, Dr. M. Rajanikanth 2 1,

More information

DIFFERENT PRAGMATIC APPROACHES OF TESTING THE CLOUD APPLICATION USING SIMULATORS/EMULATORS

DIFFERENT PRAGMATIC APPROACHES OF TESTING THE CLOUD APPLICATION USING SIMULATORS/EMULATORS DIFFERENT PRAGMATIC APPROACHES OF TESTING THE CLOUD APPLICATION USING SIMULATORS/EMULATORS Ms. Vaishali Jawale Assistant Professor ASM s Institute of Computer Studies Pimpri - Pune, Abstract: Computer

More information

Study of Various Load Balancing Techniques in Cloud Environment- A Review

Study of Various Load Balancing Techniques in Cloud Environment- A Review International Journal of Computer Sciences and Engineering Open Access Review Paper Volume-4, Issue-04 E-ISSN: 2347-2693 Study of Various Load Balancing Techniques in Cloud Environment- A Review Rajdeep

More information

Federation of Cloud Computing Infrastructure

Federation of Cloud Computing Infrastructure IJSTE International Journal of Science Technology & Engineering Vol. 1, Issue 1, July 2014 ISSN(online): 2349 784X Federation of Cloud Computing Infrastructure Riddhi Solani Kavita Singh Rathore B. Tech.

More information

Throtelled: An Efficient Load Balancing Policy across Virtual Machines within a Single Data Center

Throtelled: An Efficient Load Balancing Policy across Virtual Machines within a Single Data Center Throtelled: An Efficient Load across Virtual Machines within a Single ata Center Mayanka Gaur, Manmohan Sharma epartment of Computer Science and Engineering, Mody University of Science and Technology,

More information

Nutan. N PG student. Girish. L Assistant professor Dept of CSE, CIT GubbiTumkur

Nutan. N PG student. Girish. L Assistant professor Dept of CSE, CIT GubbiTumkur Cloud Data Partitioning For Distributed Load Balancing With Map Reduce Nutan. N PG student Dept of CSE,CIT GubbiTumkur Girish. L Assistant professor Dept of CSE, CIT GubbiTumkur Abstract-Cloud computing

More information

PERFORMANCE ANALYSIS OF PaaS CLOUD COMPUTING SYSTEM

PERFORMANCE ANALYSIS OF PaaS CLOUD COMPUTING SYSTEM PERFORMANCE ANALYSIS OF PaaS CLOUD COMPUTING SYSTEM Akmal Basha 1 Krishna Sagar 2 1 PG Student,Department of Computer Science and Engineering, Madanapalle Institute of Technology & Science, India. 2 Associate

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