Two-Level Cooperation in Autonomic Cloud Resource Management
|
|
|
- Justin Lang
- 10 years ago
- Views:
Transcription
1 Two-Level Cooperation in Autonomic Cloud Resource Management Giang Son Tran, Laurent Broto, and Daniel Hagimont ENSEEIHT University of Toulouse, Toulouse, France {giang.tran, laurent.broto, Alain Tchan University of Joseph Fourier, Grenoble, France Abstract Virtualized cloud infrastructures are becoming very popular as they allow separation of hardware and software management. Infrastructure as a Service (IaaS) is the model providing many advantages to both provider and customer. Minimizing the number of resource (and power consumption) in use is one of the main services that such a cloud model must ensure. This objective can be done either by the customer at the application level (by dynamically sizing the application based on the workload) or by the provider at the virtualization level (by consolidating virtual machines based on the infrastructure's utilization rate). Many research works investigate resource management policies separately at the application level or at the virtualized level. In this paper, we study different strategies for cloud resource management: virtual machine consolidation only, dynamic application sizing only, both policy at the same time (either independent or cooperative). We show that virtual machine consolidation and dynamic application sizing do not fully bring benefits to the cloud provider and customer when being implemented without cooperation. Finally, we propose a cooperative model to improve the efficiency of these strategies, in reducing power consumption and keeping application's Quality of Service. Index Terms cloud computing, cooperative, resource management. I. INTRODUCTION Cloud computing is the current trend of separating hardware and software management, improving the devotion of the customers and the providers: the customer only needs to manage their applications without the need of hardware maintenance; while the provider is expected to ensure Quality-of-Service to the customer according to their Service Level Agreement. Cloud hosting infrastructures are generally split into 3 categories: Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS). In this article, we consider a cloud as an IaaS: a virtualized infrastructure managed by the provider. Virtual machines are provided to the external customers to deploy and execute their applications. Manuscript received December 19, 2012; revised February 1, In this context, on demand resource management is one of the main services that such an environment must ensure: the allocation of resource as needed and the deallocation when unused. The number of machines is therefore optimized, and energy consumption is reduced. On demand resource management can be handled either at the customer level (i.e., by the administrator of the deployed application), or at the provider level (i.e., by the administrator of the virtualized infrastructure). Our main contributions in this paper are: We describe various resource management policies, advantages and disadvantages of each with a hypothesized workload. We show that resource management at the customer and provider levels are complementary. We propose a cooperative resource management policy for these two levels. We experimented these management policies in virtualized environments with a multiple-tier web application. We implemented an autonomic management system jtune, based on TUNe [1], as the deployment and resource management system. The rest of the article is organized as follows. Section describes the article context regarding virtualization and cloud computing. Section motivates our work. Section details the resource management policies. Section presents our cooperative resource management policy between the two layers. Section highlights various related works. Finally, we conclude and present our future work in section II. CONTEXT A. Virtualization Virtualization is a software- and/or hardware-based solution for building and running many operating systems simultaneously on the same bare hardware. Those operating systems are named guest OS and their execution environment is called Virtual Machine (VM). The Virtual Machine Monitor (VMM) or hypervisor represents the virtualizing software responsible of hardware emulation and communication between guest OS and devices. The guests OSes are guaranteed to be 2013 Engineering and Technology Publishing doi: /joace
2 isolated from each other, providing better security for the applications than when being deployed unvirtualized on the same physical machine. With the help of virtual machine migration [2], the provider can move executing virtual machines across different physical machines easily and rapidly, allowing separation of hardware and software, and consolidating clustered hardware into a single coherent management domain (virtual machines). Therefore, in cloud computing, virtual machines are provided to the customer instead of physical machines. Server utilization is greatly improved with runtime dynamic allocation and deallocation of virtual machines on the physical machines, and thus, reduce power consumption for the provider. Figure 1. Server consolidation only B. Cloud Computing Cloud computing connects the needs of the customer (the application manager) and the services of the provider (the hardware manager). The provider shares the same resource pool to all customers, and provides on demand resource management on it. This strategy brings the benefits for both actors: Customer's economy: only needs to focus on application management, leaves the hardware side to the provider, and only pays for the real usage. Dynamic capacity of the customer's application: based on the real runtime load, the customer can resize the application (modify the number of virtual machines executing application instances) to handle load peaks or idle states. Shared resources: all customers share the same resource pool in the provider's hosting center. Unused machines are switched off, and therefore this strategy provides higher hardware utilization rate and less energy waste. In cloud computing, the customer generally does not have knowledge of the provider's infrastructure, and only has access to the resource in the form of virtual machines. III. MOTIVATION Application sizing and server consolidation, with the help of virtual machine migration, have proved their effectiveness in the hosting centers [3], [4], [5]. However, research works only deducted in these policies separately. Server consolidation with virtual machine migration has the limitation of memory amount of the host: all virtual machines, although being idle, consume memory of the host. Further more, VM overhead increases along with the number of running VMs [6]. Finally, the lack knowledge of the application tier prevents the provider from having an optimal virtual machine placement. On the other side, application sizing does not fully optimize hardware resources: there is a high possibility that many virtual machines are spread among the physical machines, leaving them unable to free for switching off. These disadvantages show some limitations which can be improved with a two level management, as analyzed in the below sections. IV. MANAGEMENT POLICIES This section describes the various cloud management policies being investigated in the research community, including: server consolidation only; dynamic application sizing only; both policies, but working independently. We also describe our experiments for each scenario, and pinpoint the drawbacks of each policy when being used in a hosting center. We use a typical web application with the Apache PHP MySQL stack as the customer application. Fig. 1 (left) shows the synthesized workload we generated to the 3 different web applications. Before time (a), all of the applications are idle (almost no request is generated). Start from time (a) to time (c), application 1 load is increased. Application 2 load is increased from time (c) to (e), followed by increase load of the application 3, from time (e) to (g). These loads are then decreased with the following order: application 2 (time (h)-(j)), application 1 (time (j)-(l)), then application 3 (time (l)- (n)). This synthesized workload is used in all experiments throughout the paper to better compare the benefits and the drawbacks of each policy. Our experiments were performed in a private cluster of 7 Nodes, equipped with an Intel Core 2 Duo 2.66GHz in single processor mode, 4GB RAM, and Debian Squeeze. All of the Nodes are connected with a 100Mbps Ethernet. The VM disk images are stored on a NFS server so that VM migration can be performed between the nodes. We use Xen as the hypervisor in our experiments. A. Server Consolidation Only Taking into account the objective of minimizing hardware resource of the provider, this policy is straightforward: pack the deployed virtual machines into 218
3 as few physical machines as possible. However, the number of VMs in one physical machine is limited by the memory amount of the host. This policy is made possible with the support of virtual machine migration. Figure 2. Dynamic application sizing only In this scenario, only the provider level is implemented with autonomic management. The customer application is provisioned with a static tier allocation (i.e. with a fixed number of tier instances). The management policy at the provider level takes into consideration each virtual machine CPU load, and makes migration decision: the IaaS manager can either migrate the most loaded VM out of the most loaded node (so that this node becomes less load), or migrate other VMs (to provide more power for the most loaded VM). Fig. 1 (right) shows the VM allocation on each physical machine according to the generated workload. Each node is equipped with a monitoring probe, periodically reporting CPU load of all VMs on it. These results show the reaction of the IaaS manager toward generated workload to the applications based on the actual VM CPU load. At time (a), all 6 VMs are packed into Node 1. The IaaS manager decides to migrate a VM of the application 1 (red) from Node 1 to Node 2. Gradually, when the loads of all applications increase, the VMs are distributed among physical Nodes (time (b)-(k)). This policy shows some merits in minimizing resource usage (and therefore, energy waste). However, it still produces several types of performance overhead because of running multiple VMs of the same tier simultaneously: Live VM migration overhead: migrating VMs between physical hosts is costly. Balancer overhead: each request to the application must be passed through the balancer. Hypervisor overhead: The hypervisor has to switch CPU resources among many VMs, generating overheads. These overheads can be reduced by using less VM instances with dynamic application sizing. This method will be described in the next section. B. Dynamic Application Sizing Only This approach is based on the dynamic allocation and deallocation of the application instances. Initially, all applications are deployed with a minimum number of instances. Each instance is deployed and launched in a separated VM. During runtime, tier loads are captured by monitoring probes in the VMs, and gathered by the autonomic manager. It, in turns, based on current tier load, requests to add or remove the VMs accordingly. Dynamic application sizing is quite generic as it can be applied to any multiple-tier applications. Fig. 2 (right) shows the VM allocation on physical machines. As the load increases from time (c) to time (g), the application manager gradually deploys and launches more application instances on Node 2 and 3. When the load decreases, the VMs containing these instances are also removed from the hosts. This behavior ensures the minimal number of the instances of the application, and therefore reduced performance overhead over the previous policy (Server consolidation only). However, this policy raises some possible optimizations at time (l) and (m): two VMs of the same tier (application 3) are running on the two different physical machines. This placement can be improved by migrating the VM from Node 3 to Node 2, and free Node 3 for turning off, benefiting in energy saving. This drawback can be solved with the combination of the two above policies: the IaaS manager ensures server consolidation with virtual machine migration, and the application manager optimizes its tier allocation. This combined policy is described in the next section. C. Both Levels, Independent In this scenario, both the customer and the provider implement their resource management policy independently, to eliminate each other's drawback. In other word, this complementarity attempts to improve both real resource usage (to reduce energy waste) and application performance (by reducing overhead) in the hosting centers. The dynamic application sizing policy at the customer level ensures that all allocated VMs' usage are optimized (the idle or unused VMs are deallocated automatically). Thus, it isn't necessary for the IaaS manager to migrate its VMs based on the CPU load. Instead, the migration policy is based on the capacity of each VM. Fig. 3 shows the generated workload and the VM placement among the physical machines. Similar to the scenario in IV.B, one instance of each application is deployed initially. When the workload increases, the application manager gradually deploys and launches more application instances on Nodes 2 and 3 to ensure application response time. The IaaS manager's migration 219
4 check is activated upon receiving a VM removal request from the customer level. In this scenario, it only performs a migration after a VM of the application 1 is removed from Node 2 at time (k). Figure 3. Both policies, cooperative Figure 4. Both policies, independent Comparing these results to those we obtained with management at application level only (IV.B), and IaaS level only (IV.A), we have significant improvements. First, there are fewer migration (one time, at time (k), compared to 4 in (IV.A). Second, the number of application instances is still minimized, same as (IV.B). Finally, Node 3 can be freed from time (l), when the IaaS manager optimizes its VM placement. This migration, in turn, helps to reduce power consumption of Node 3 when compared with (IV.B). However, comparing this result with (IV.A), we still have the same problem: the possibility of having multiple VMs of the same application tier on a physical machine (time (l), (m)). This is not optimized for performance with VM overhead and balancer overhead, as previously discussed in (IV.A). This problem comes from the fact that the application manager is not aware of its VM location, and that the IaaS manager is not aware of the application tier. The next section describes our proposal to overcome this problem, in order to minimize both power consumption and performance overhead. V. COOPERATIVE RESOURCE MANAGEMENT The key difference in this policy, compared with the above policies, is to gather application instances into groups, and manage groups with quotas instead of VMs. These quotas can be dynamically changed in runtime. This group notion provides the application architecture to the IaaS manager, thus simplifies the VM management. The two layers communicate with each other through cooperation calls. A call from application layer to the IaaS layer is a Downcall. The call in the other direction is an Upcall. In our experiment, these cooperation calls are made possible thanks to Java RMI. Fig. 5 shows the architecture of the cooperation calls between layers. Figure 5. Cooperative calls The customer's application manager monitors its tier load, and based on the actual runtime situation, either: Overload: requests a group quota increase, or Under load: requests a group quota reduction According to the request to modify a group quota Δ q, either it's an addition (Δ q > 0), or it's a subtraction (Δ q < 0) the IaaS manager can: Add quota (Δ q > 0) for an existing Vx: q vm = q vm + Δ q. This is the case when this VM has 0 < Δ q + q vm < 100 and its host is free enough (in terms of remaining quota). In case of not having enough free quota in the host, the IaaS manager allocates a new virtual machine, VM k, and notifies the application manager about VM k to deploy an application instance on it. Reduce quota (Δ q < 0) for an existing VM: q vm = q vm - Δ q, only possible when q vm < Δ q. If no VM satisfies this constrain, the IaaS manager reduces quota of several VMs and/or stop a running VM. 220
5 The notification about this tier reconfiguration will also be sent to the application manager for tier reconfiguration. After every quota change, the IaaS manager always checks for possibility of server consolidation. In our experiment with the synthesized workload (Fig. 4), we identified several possible consolidation situations: Only migrations of VMs for a possibility of freeing a physical machine. Merges of collocated VM from the same group: time (l), when the IaaS manager merges two small VMs from Node 1 and 2 into one VM with a bigger quota on Node 2, reducing overheads. Splits of a VM to smaller VMs, in attempts to free a Node: time (j). As can be seen from Fig. 4, these two levels, when implemented to work cooperatively, effectively optimize hardware resources (Node 3 is only used in 5 time slots, from time (e) to (i), similar to 5 time slots in (IV.A)), as well as minimize the performance overhead due to live migrations, hypervisor and balancer (similar to IV.B). In summary, the cooperative resource management policy combines all possible advantages, and provide a greater benefit for the customer (less used VMs, and therefore, less cost) as well as for the provider (less hardware resources, and thus, less power consumption). However, it requires both the provider and the customer to have a common API and protocol for the communication of each party's manager. VI. RELATED WORKS Many research works investigated dynamic resource allocation in the hosting center environments. Ref. [7] presents a dynamic allocation architecture for a hosting center based on an autonomic computing system and a load balancer. Similarly, Ref. [8] proposed many strategies: jobs distribution to a pool of VMs in a cloud infrastructure, based on dynamic VM allocation/deallocation: new VMs are deployed/undeployed when being overloaded and idle, respectively. Regarding our classification, these solutions are only customer-level strategies. Second category includes systems which implement resource management at the IaaS level. Consolidation systems such as GreenCloud [9] or [10] aim at saving resource in a hosting center using solely VM migration. Finally, only few systems addressed dynamic resource management at both levels (application and IaaS). Ref. [11] proposed a two-level resource management, but their resource provisioning at the hosting center level was only based on the allocation of additional resource to VMs. Most two-level resource management systems did not provide a cooperative strategy for these two levels, and thus, did not achieve optimal energy saving and performance. VII. CONCLUSION AND PERSPECTIVE This paper describes different scenarios which consist in ensuring dynamic resource allocation for a cloud in a hosting center. It shows that resources can be managed at two levels: at the level of the application layer and at the IaaS level. Moreover, it shows that resource managements at these two levels are complementary, especially when these two levels work cooperatively. We are currently conducting performance evaluations with real workload (monitored in a real hosting center), instead of synthesized workload, to demonstrate the effectiveness of this approach. A longer term perspective of this work will be to consider an optimal algorithm for VM placement and quota management based on work load prediction. REFERENCES [1] L. Broto, D. Hagimont, P. Stolf, N. Depalma, and S. Temate, Autonomic management policy specification in Tune, in Proc ACM Symposium on Applied Computing, Brazil, [2] C. Clark, K. Fraser, S. Hand, J. G. Hansen, E. Jul, C. Limpach, I. Pratt, and A. Warfield, Live migration of virtual machines, in Proc. Conference on Symposium on Networked Systems Design & Implementation, 2005, vol. 2. [3] A. Gulati, G. Shanmuganathan, A. Holler, and I. Ahmad, Cloudscale resource management: Challenges and techniques, in Proc. USENIX Conference on Hot Topics in Cloud Computing, USA, [4] T. C. Chieu, A. Mohindra, A. A. Karve, and A. Segal, Dynamic scaling of web applications in a virtualized cloud computing environment, in Proc. IEEE International Conference on e- Business Engineering, China, [5] Rightscale Web Site. (December, 2012.) [Online]. Available: [6] A. Tchana, S. Temate, L. Broto, and D. Hagimont, Autonomic resource allocation in a J2EE cluster, in Utility and Cloud Computing, India, December [7] H. S. AbdelSalam, K. Maly, R. Mukkamala, M. Zubair, and D. Kaminsky, Towards energy efficient change management in a cloud computing environment, in AIMS, Lecture Notes in Computer Science, vol. 5637, Springer, [8] S. Genaud and J. Gossa, Cost-wait Trade-offs in Client-side Resource Provisioning with Elastic Clouds, in IEEE CLOUD, USA Washington DC, [9] L. Liu, H. Wang, X, Liu, X. Jin, E. B. He, Q. B. Wang, and Y. Chen, GreenCloud: a new architecture for green data center, in International conference industry session on Autonomic computing and communications industry session (ICAC-INDST), Spain [10] Pablo Graubner, Matthias Schmidt, and Bernd Freisleben, Energy-Efficient Management of Virtual Machines in Eucalyptus, in IEEE CLOUD, USA, [11] Y. Song, H. Wang, Y. Li, B. Feng, and Y. Sun, Multi-tiered ondemand resource scheduling for vm-based data center, in IEEE/ACM International Symposium on Cluster Computing and the Grid, May
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
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
USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES
USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES Carlos Oliveira, Vinicius Petrucci, Orlando Loques Universidade Federal Fluminense Niterói, Brazil ABSTRACT In
Auto-Scaling Model for Cloud Computing System
Auto-Scaling Model for Cloud Computing System Che-Lun Hung 1*, Yu-Chen Hu 2 and Kuan-Ching Li 3 1 Dept. of Computer Science & Communication Engineering, Providence University 2 Dept. of Computer Science
Infrastructure as a Service (IaaS)
Infrastructure as a Service (IaaS) (ENCS 691K Chapter 4) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ References 1. R. Moreno et al.,
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
Migration of Virtual Machines for Better Performance in Cloud Computing Environment
Migration of Virtual Machines for Better Performance in Cloud Computing Environment J.Sreekanth 1, B.Santhosh Kumar 2 PG Scholar, Dept. of CSE, G Pulla Reddy Engineering College, Kurnool, Andhra Pradesh,
An Experimental Study of Load Balancing of OpenNebula Open-Source Cloud Computing Platform
An Experimental Study of Load Balancing of OpenNebula Open-Source Cloud Computing Platform A B M Moniruzzaman 1, Kawser Wazed Nafi 2, Prof. Syed Akhter Hossain 1 and Prof. M. M. A. Hashem 1 Department
Dynamic Load Balancing of Virtual Machines using QEMU-KVM
Dynamic Load Balancing of Virtual Machines using QEMU-KVM Akshay Chandak Krishnakant Jaju Technology, College of Engineering, Pune. Maharashtra, India. Akshay Kanfade Pushkar Lohiya Technology, College
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
Effective Resource Allocation For Dynamic Workload In Virtual Machines Using Cloud Computing
Effective Resource Allocation For Dynamic Workload In Virtual Machines Using Cloud Computing J.Stalin, R.Kanniga Devi Abstract In cloud computing, the business class customers perform scale up and scale
Multi-dimensional Affinity Aware VM Placement Algorithm in Cloud Computing
Multi-dimensional Affinity Aware VM Placement Algorithm in Cloud Computing Nilesh Pachorkar 1, Rajesh Ingle 2 Abstract One of the challenging problems in cloud computing is the efficient placement of virtual
Deploying Business Virtual Appliances on Open Source Cloud Computing
International Journal of Computer Science and Telecommunications [Volume 3, Issue 4, April 2012] 26 ISSN 2047-3338 Deploying Business Virtual Appliances on Open Source Cloud Computing Tran Van Lang 1 and
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
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
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
Cloud and Virtualization to Support Grid Infrastructures
ESAC GRID Workshop '08 ESAC, Villafranca del Castillo, Spain 11-12 December 2008 Cloud and Virtualization to Support Grid Infrastructures Distributed Systems Architecture Research Group Universidad Complutense
From Grid Computing to Cloud Computing & Security Issues in Cloud Computing
From Grid Computing to Cloud Computing & Security Issues in Cloud Computing Rajendra Kumar Dwivedi Assistant Professor (Department of CSE), M.M.M. Engineering College, Gorakhpur (UP), India E-mail: [email protected]
GUEST OPERATING SYSTEM BASED PERFORMANCE COMPARISON OF VMWARE AND XEN HYPERVISOR
GUEST OPERATING SYSTEM BASED PERFORMANCE COMPARISON OF VMWARE AND XEN HYPERVISOR ANKIT KUMAR, SAVITA SHIWANI 1 M. Tech Scholar, Software Engineering, Suresh Gyan Vihar University, Rajasthan, India, Email:
Virtual Machine Monitors. Dr. Marc E. Fiuczynski Research Scholar Princeton University
Virtual Machine Monitors Dr. Marc E. Fiuczynski Research Scholar Princeton University Introduction Have been around since 1960 s on mainframes used for multitasking Good example VM/370 Have resurfaced
A Survey Paper: Cloud Computing and Virtual Machine Migration
577 A Survey Paper: Cloud Computing and Virtual Machine Migration 1 Yatendra Sahu, 2 Neha Agrawal 1 UIT, RGPV, Bhopal MP 462036, INDIA 2 MANIT, Bhopal MP 462051, INDIA Abstract - Cloud computing is one
Virtualization Technologies (ENCS 691K Chapter 3)
Virtualization Technologies (ENCS 691K Chapter 3) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ The Key Technologies on Which Cloud Computing
Balancing Server in Public Cloud Using AJAS Algorithm
Balancing Server in Public Cloud Using AJAS Algorithm Ramya.B 1, Pragaladan R 2, M.Phil Part-Time Research Scholar, Assistant Professor Department of Computer Science, Department of Computer Science, Sri
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,
Energetic Resource Allocation Framework Using Virtualization in Cloud
Energetic Resource Allocation Framework Using Virtualization in Ms.K.Guna *1, Ms.P.Saranya M.E *2 1 (II M.E(CSE)) Student Department of Computer Science and Engineering, 2 Assistant Professor Department
Chapter 2 Addendum (More on Virtualization)
Chapter 2 Addendum (More on Virtualization) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ More on Systems Virtualization Type I (bare metal)
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
Analysis on Virtualization Technologies in Cloud
Analysis on Virtualization Technologies in Cloud 1 V RaviTeja Kanakala, V.Krishna Reddy, K.Thirupathi Rao 1 Research Scholar, Department of CSE, KL University, Vaddeswaram, India I. Abstract Virtualization
Elastic Load Balancing in Cloud Storage
Elastic Load Balancing in Cloud Storage Surabhi Jain, Deepak Sharma (Lecturer, Department of Computer Science, Lovely Professional University, Phagwara-144402) (Assistant Professor, Department of Computer
Affinity Aware VM Colocation Mechanism for Cloud
Affinity Aware VM Colocation Mechanism for Cloud Nilesh Pachorkar 1* and Rajesh Ingle 2 Received: 24-December-2014; Revised: 12-January-2015; Accepted: 12-January-2015 2014 ACCENTS Abstract The most of
Data Centers and Cloud Computing
Data Centers and Cloud Computing CS377 Guest Lecture Tian Guo 1 Data Centers and Cloud Computing Intro. to Data centers Virtualization Basics Intro. to Cloud Computing Case Study: Amazon EC2 2 Data Centers
9/26/2011. What is Virtualization? What are the different types of virtualization.
CSE 501 Monday, September 26, 2011 Kevin Cleary [email protected] What is Virtualization? What are the different types of virtualization. Practical Uses Popular virtualization products Demo Question,
AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD
AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD M. Lawanya Shri 1, Dr. S. Subha 2 1 Assistant Professor,School of Information Technology and Engineering, Vellore Institute of Technology, Vellore-632014
Cloud Infrastructure Pattern
1 st LACCEI International Symposium on Software Architecture and Patterns (LACCEI-ISAP-MiniPLoP 2012), July 23-27, 2012, Panama City, Panama. Cloud Infrastructure Pattern Keiko Hashizume Florida Atlantic
Computer Science. About PaaS Security. Donghoon Kim Henry E. Schaffer Mladen A. Vouk
About PaaS Security Donghoon Kim Henry E. Schaffer Mladen A. Vouk North Carolina State University, USA May 21, 2015 @ ICACON 2015 Outline Introduction Background Contribution PaaS Vulnerabilities and Countermeasures
Cloud Computing Architecture: A Survey
Cloud Computing Architecture: A Survey Abstract Now a day s Cloud computing is a complex and very rapidly evolving and emerging area that affects IT infrastructure, network services, data management and
Virtual Computing and VMWare. Module 4
Virtual Computing and VMWare Module 4 Virtual Computing Cyber Defense program depends on virtual computing We will use it for hands-on learning Cyber defense competition will be hosted on a virtual computing
Li Sheng. [email protected]. Nowadays, with the booming development of network-based computing, more and more
36326584 Li Sheng Virtual Machine Technology for Cloud Computing Li Sheng [email protected] Abstract: Nowadays, with the booming development of network-based computing, more and more Internet service vendors
VIRTUALIZATION, The next step for online services
Scientific Bulletin of the Petru Maior University of Tîrgu Mureş Vol. 10 (XXVII) no. 1, 2013 ISSN-L 1841-9267 (Print), ISSN 2285-438X (Online), ISSN 2286-3184 (CD-ROM) VIRTUALIZATION, The next step for
Setting deadlines and priorities to the tasks to improve energy efficiency in cloud computing
Setting deadlines and priorities to the tasks to improve energy efficiency in cloud computing Problem description Cloud computing is a technology used more and more every day, requiring an important amount
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
An Introduction to Virtualization and Cloud Technologies to Support Grid Computing
New Paradigms: Clouds, Virtualization and Co. EGEE08, Istanbul, September 25, 2008 An Introduction to Virtualization and Cloud Technologies to Support Grid Computing Distributed Systems Architecture Research
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: [email protected]
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
Windows Server 2008 R2 Hyper-V Live Migration
Windows Server 2008 R2 Hyper-V Live Migration Table of Contents Overview of Windows Server 2008 R2 Hyper-V Features... 3 Dynamic VM storage... 3 Enhanced Processor Support... 3 Enhanced Networking Support...
RESOURCE MANAGEMENT IN CLOUD COMPUTING ENVIRONMENT
RESOURCE MANAGEMENT IN CLOUD COMPUTING ENVIRONMENT A.Chermaraj 1, Dr.P.Marikkannu 2 1 PG Scholar, 2 Assistant Professor, Department of IT, Anna University Regional Centre Coimbatore, Tamilnadu (India)
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,
A Novel Method for Resource Allocation in Cloud Computing Using Virtual Machines
A Novel Method for Resource Allocation in Cloud Computing Using Virtual Machines Ch.Anusha M.Tech, Dr.K.Babu Rao, M.Tech, Ph.D Professor, MR. M.Srikanth Asst Professor & HOD, Abstract: Cloud computing
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,
Power Aware Load Balancing for Cloud Computing
, October 19-21, 211, San Francisco, USA Power Aware Load Balancing for Cloud Computing Jeffrey M. Galloway, Karl L. Smith, Susan S. Vrbsky Abstract With the increased use of local cloud computing architectures,
PARALLELS CLOUD SERVER
PARALLELS CLOUD SERVER Performance and Scalability 1 Table of Contents Executive Summary... Error! Bookmark not defined. LAMP Stack Performance Evaluation... Error! Bookmark not defined. Background...
PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE
PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE Sudha M 1, Harish G M 2, Nandan A 3, Usha J 4 1 Department of MCA, R V College of Engineering, Bangalore : 560059, India [email protected] 2 Department
IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures
IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Introduction
Black-box and Gray-box Strategies for Virtual Machine Migration
Black-box and Gray-box Strategies for Virtual Machine Migration Wood, et al (UMass), NSDI07 Context: Virtual Machine Migration 1 Introduction Want agility in server farms to reallocate resources devoted
Performance Management for Cloudbased STC 2012
Performance Management for Cloudbased Applications STC 2012 1 Agenda Context Problem Statement Cloud Architecture Need for Performance in Cloud Performance Challenges in Cloud Generic IaaS / PaaS / SaaS
LOGO Resource Management for Cloud Computing
LOGO Resource Management for Cloud Computing Supervisor : Dr. Pham Tran Vu Presenters : Nguyen Viet Hung - 11070451 Tran Le Vinh - 11070487 Date : April 16, 2012 Contents Introduction to Cloud Computing
COS 318: Operating Systems. Virtual Machine Monitors
COS 318: Operating Systems Virtual Machine Monitors Kai Li and Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall13/cos318/ Introduction u Have
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
Virtualization Technologies and Blackboard: The Future of Blackboard Software on Multi-Core Technologies
Virtualization Technologies and Blackboard: The Future of Blackboard Software on Multi-Core Technologies Kurt Klemperer, Principal System Performance Engineer [email protected] Agenda Session Length:
Enabling Technologies for Distributed Computing
Enabling Technologies for Distributed Computing Dr. Sanjay P. Ahuja, Ph.D. Fidelity National Financial Distinguished Professor of CIS School of Computing, UNF Multi-core CPUs and Multithreading Technologies
International Journal of Computer & Organization Trends Volume20 Number1 May 2015
Performance Analysis of Various Guest Operating Systems on Ubuntu 14.04 Prof. (Dr.) Viabhakar Pathak 1, Pramod Kumar Ram 2 1 Computer Science and Engineering, Arya College of Engineering, Jaipur, India.
CS 695 Topics in Virtualization and Cloud Computing. Introduction
CS 695 Topics in Virtualization and Cloud Computing Introduction This class What does virtualization and cloud computing mean? 2 Cloud Computing The in-vogue term Everyone including his/her dog want something
Cloud Computing through Virtualization and HPC technologies
Cloud Computing through Virtualization and HPC technologies William Lu, Ph.D. 1 Agenda Cloud Computing & HPC A Case of HPC Implementation Application Performance in VM Summary 2 Cloud Computing & HPC HPC
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,
Review on Virtualization for Cloud Computing
Review on Virtualization for Cloud Computing D.Kiran Kumar 1, T.P.Sarachandrica 2, B.Rajasekhar 3, P.Jayasankar 4 Assistant Professor, CSE, Vignana Bharathi Institute of Technology College, Hyderabad,
Planning, Provisioning and Deploying Enterprise Clouds with Oracle Enterprise Manager 12c Kevin Patterson, Principal Sales Consultant, Enterprise
Planning, Provisioning and Deploying Enterprise Clouds with Oracle Enterprise Manager 12c Kevin Patterson, Principal Sales Consultant, Enterprise Manager Oracle NIST Definition of Cloud Computing Cloud
CPET 581 Cloud Computing: Technologies and Enterprise IT Strategies. Virtualization of Clusters and Data Centers
CPET 581 Cloud Computing: Technologies and Enterprise IT Strategies Lecture 4 Virtualization of Clusters and Data Centers Text Book: Distributed and Cloud Computing, by K. Hwang, G C. Fox, and J.J. Dongarra,
Xen Live Migration. Networks and Distributed Systems Seminar, 24 April 2006. Matúš Harvan Xen Live Migration 1
Xen Live Migration Matúš Harvan Networks and Distributed Systems Seminar, 24 April 2006 Matúš Harvan Xen Live Migration 1 Outline 1 Xen Overview 2 Live migration General Memory, Network, Storage Migration
STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case)
10 th International Conference on Software Testing June 18 21, 2013 at Bangalore, INDIA by Sowmya Krishnan, Senior Software QA Engineer, Citrix Copyright: STeP-IN Forum and Quality Solutions for Information
Monitoring Elastic Cloud Services
Monitoring Elastic Cloud Services [email protected] Advanced School on Service Oriented Computing (SummerSoc 2014) 30 June 5 July, Hersonissos, Crete, Greece Presentation Outline Elasticity in Cloud
Dynamic memory Allocation using ballooning and virtualization in cloud computing
IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 2, Ver. IV (Mar-Apr. 2014), PP 19-23 Dynamic memory Allocation using ballooning and virtualization
Virtual Machine Management with OpenNebula in the RESERVOIR project
CISCO Cloud Computing Research Symposium (C 3 RS) November 5 & 6, 2008 San Jose, CA Virtual Machine Management with OpenNebula in the RESERVOIR project Ruben Santiago Montero Distributed Systems Architecture
The Building Blocks to the Architecture of a Cloud Platform
The Building Blocks to the Architecture of a Cloud Platform Promise. Mvelase, Nomusa. Dlodlo, David. MacLeod, and Happy. Sithole Abstract This research is on the identification of components that are general
INCREASING SERVER UTILIZATION AND ACHIEVING GREEN COMPUTING IN CLOUD
INCREASING SERVER UTILIZATION AND ACHIEVING GREEN COMPUTING IN CLOUD M.Rajeswari 1, M.Savuri Raja 2, M.Suganthy 3 1 Master of Technology, Department of Computer Science & Engineering, Dr. S.J.S Paul Memorial
Resource usage monitoring for KVM based virtual machines
2012 18th International Conference on Adavanced Computing and Communications (ADCOM) Resource usage monitoring for KVM based virtual machines Ankit Anand, Mohit Dhingra, J. Lakshmi, S. K. Nandy CAD Lab,
SolidFire SF3010 All-SSD storage system with Citrix CloudPlatform 3.0.5 Reference Architecture
SolidFire SF3010 All-SSD storage system with Citrix CloudPlatform 3.0.5 Reference Architecture 2 This reference architecture is a guideline for deploying Citrix CloudPlatform, powered by Apache CloudStack,
Reallocation and Allocation of Virtual Machines in Cloud Computing Manan D. Shah a, *, Harshad B. Prajapati b
Proceedings of International Conference on Emerging Research in Computing, Information, Communication and Applications (ERCICA-14) Reallocation and Allocation of Virtual Machines in Cloud Computing Manan
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,
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
Efficient Cloud Management for Parallel Data Processing In Private Cloud
2012 International Conference on Information and Network Technology (ICINT 2012) IPCSIT vol. 37 (2012) (2012) IACSIT Press, Singapore Efficient Cloud Management for Parallel Data Processing In Private
Efficient Data Management Support for Virtualized Service Providers
Efficient Data Management Support for Virtualized Service Providers Íñigo Goiri, Ferran Julià and Jordi Guitart Barcelona Supercomputing Center - Technical University of Catalonia Jordi Girona 31, 834
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
Efficient Load Balancing using VM Migration by QEMU-KVM
International Journal of Computer Science and Telecommunications [Volume 5, Issue 8, August 2014] 49 ISSN 2047-3338 Efficient Load Balancing using VM Migration by QEMU-KVM Sharang Telkikar 1, Shreyas Talele
Server and Storage Virtualization. Virtualization. Overview. 5 Reasons to Virtualize
Server and Storage Virtualization. Overview Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 [email protected] These slides and audio/video recordings of this class lecture are at:
Lecture 2 Cloud Computing & Virtualization. Cloud Application Development (SE808, School of Software, Sun Yat-Sen University) Yabo (Arber) Xu
Lecture 2 Cloud Computing & Virtualization Cloud Application Development (SE808, School of Software, Sun Yat-Sen University) Yabo (Arber) Xu Outline Introduction to Virtualization The Major Approaches
Run-time Resource Management in SOA Virtualized Environments. Danilo Ardagna, Raffaela Mirandola, Marco Trubian, Li Zhang
Run-time Resource Management in SOA Virtualized Environments Danilo Ardagna, Raffaela Mirandola, Marco Trubian, Li Zhang Amsterdam, August 25 2009 SOI Run-time Management 2 SOI=SOA + virtualization Goal:
