Optimizing of Resource Allocation in Cloud Computing for High Utilization

Size: px
Start display at page:

Download "Optimizing of Resource Allocation in Cloud Computing for High Utilization"

Transcription

1 Optimizing of Resource Allocation in Cloud Computing for High Utilization J.Rajani, C.Vasu Murthy, S.G.Nawaz Abstract Cloud computing has been around for some years as a new programming model that enables commodity computing. Without capital investment people and organizations can access huge amount of computing resources in pay per use fashion. Cloud provides various services including storage. While cloud users are being served, the resources of cloud are utilized as per the requirements. However, the resource utilization may experience skewness which needs to be avoided. Many algorithms came into existence in order to overcome this problem. In this paper a new algorithm is proposed for optimal resource allocation in cloud computing for high utilization of resources. Our algorithm considers two cases to act up on. In the first case when VM has scarcity of resources, its capacity gets second case makes use of a technique in which a VM is migrated from one physical machine to another available. We built a prototype web application that demonstrates the proof of concept. The application simulates the two cases proposed in the algorithm with visual clues. The empirical results reveal that the proposed algorithm is useful and can be used in real cloud computing applications. Index Terms Cloud computing, virtualization, load balancing, optimal resource allocation I. INTRODUCTION Cloud computing has been around for number of years. However, recently it became popular and made affordable. Its popularity can be understood in terms of the technology virtualization. The VM is a machine inside the machine which is software component that mimics as another machine. This way one machine can have multiple VMs to cater to the needs of thousands of cloud users. This will reduce the investment from the cloud service provider point of view. With fewer resources physically available, more users can be served. Thus the cloud computing became an affordable solution. However, dynamic resource allocation is an open problem in cloud computing to be addressed. It is very challenging job since it needs optimizing resource allocation and thus achieving high resource utilization. When more resources are allocation, it results in resource wastage. When fewer resources are allocated, it results in scarcity. To strike balance between these two, it is challenging to allocation resources dynamically. Many solutions came into existence to solve this issues in cloud computing. For instance MUSE [1] where replicas are maintained for optimal performance; load balancing strategies in [2]; integrated load dispatching approach in [3]; delay scheduling [4], HARMONY where multiple resource layers are used [5]; and skewness algorithm for dynamic resource allocation [6]. These researchers followed different strategies to solve the same problem. However, we follow different solution as proposed in this paper. Our solution has two cases. In the first case when VM has scarcity of resources, its capacity gets increased by assigning idle resources to VM or assigning free memory of physical machine. The second case makes use of a technique in which a VM is migrated from one physical machine to another physical machine where abundant resources are available. Our contributions in the paper include: Architecture is proposed to accommodate dynamic and optimal resource allocation. Al algorithm is proposed to facilitate dynamic resource allocation. A prototype application is built to demonstrate the proof of concept. The remainder of the paper is structured as follows. Section II provides review of literature that exists about the prior works on dynamic resource allocation problem. Section III presented the proposed architecture. Section IV provides the algorithm proposed. Section V presents experimental results while section VI concludes the paper. II. RELATED WORKS Data centers play crucial role in the successful implementation of cloud computing technology. At all levels resources are taken from the cloud data All Rights Reserved 2014 IJARCSEE 433

2 centers. There was focus on this aspect for [2] and [1] for dynamic resource allocation. The load on the resources is to be studied and the resource allocation needs to be done optimally. In [3] there was a study on server provisioning and also load dispatching without using virtual machines concept. They were also not done in multi-tier or distributed environment. Distributed computing allows multiple servers to involve in solving problems and cloud computing works in distributed environment. In [6] a solution is provided for resource allocation and its optimization using Amazon EC2-style cloud environment and experiments were made to this effect to demonstrate the optimization of resource allocation. The researcher used the concept of VIRTUAL MACHINES and the resource allocation to them. MapReduce, a new programming paradigm, was used in [7] in a distributed programming environment. Job scheduling and cost minimization was explored in [8]. In [4] a new approach is scheduling known as delay scheduling wasintroduced for local data processing effectively. The concept of dynamic priorities was introduced in [9] which targets dynamic resource allocation. The concept of VM migration was explored by many researchers as explored in [10], [11] and [5]. Their approach makes use of a VM that can simulate like a physical machine. It is a machine within another machine that mimics a physical machine and supports OS installation and users online. Load balancing was studied in [12] which have been around for number of years. However, it is used with cloud computing in the presence of virtual machines. In this paper we proposed an algorithm that demonstrates the concept of VM capacity extension and VM live migration towards optimal utilization of cloud resources. III. NEW APPROACH FOR DYNAMIC RESOURCE ALLOCATION Virtualization is the technology that provides affordable cloud computing solutions. Virtual Machines concept plays an important role as one physical machine can act as thousands of virtual machines and they can have their own OS and other applications, users and so on. This wonderful technology enables cloud computing at all levels to have affordable solution to resources that can be shared across the globe in pay per use fashion. Figure 1 shows an overview of the proposed architecture for optimizing resource allocation from a data center point of view. Figure 1 Architectural overview of the proposed system As the architectural diagram shows, there are virtual machines allocated to various physical machines. The physical machines have real resources required by computing needs of users while the VMs utilize the resources of PM so as to enable users to have affordable cloud solutions. As one physical resource is expanded by using multiple virtual machines, the virtualization is great technology on top of which cloud computing works. In this context, the proposed algorithm works. The architecture reveals that there are two possible solutions to resource optimization. They are VM capacity increment or VM live migration. These two are considered as two cases in the solution proposed in this paper. In the first case available. All Rights Reserved 2014 IJARCSEE 434

3 Figure 2 Live VM migration As shown in Figure 2, the VM3 of physical machine 1 is migrated to physical machine 2 as per the runtime dynamics according to the proposed algorithm which is described in ensuing section. IV. PROPOSED ALGORITHM The proposed algorithm is meant for maximizing resource utilization so as to optimize the dynamic resource allocation problem in cloud computing. The algorithm is based on the architecture proposed earlier in this paper. The goal of the algorithm is to ensure high utilization of resources while the resources are not wasted. The algorithm takes resources available as input and allocate them optimally. Thus a scalable solution is achieved. Figure 1 Algorithm for optimal resource allocation All Rights Reserved 2014 IJARCSEE 435

4 As shown in Figure 1, it is evident that the algorithm has two distinct cases to be considered. The first case is related to scarcity of resources with a VM and the solution is VM capacity extension while the second case is also VM having less resources but the solution here is VM live migration i.e., migrating VM from one PM to another PM. In the first case when VM has scarcity of resources, its capacity gets increased by assigning idle resources to VM or assigning free memory of physical machine. The second case makes use of a technique in which a VM is migrated from one physical machine to another physical machine where abundant resources are available. V. EXPERIMENTAL RESULTS In order to demonstrate the dynamic resource allocation, we built a custom simulator which is a prototype to demonstrate the proof of concept. The environment used for simulation study include JDK 1.7, Tomcat 7.0, MY SQL, Chrome running in Windows 7 machine with 4 GB RAM, core 2 dual processor. The application demonstrates the two cases of the proposed algorithm. In the first case available. Figure 3 Dynamic resource allocation As seen in Figure 3, it is evident that resource allocation could be possible with physical machine 1 as indicated in green color VM. The resource allocation is done for a VM on physical machine 1. Figure 4 Dynamic resource allocation Figure 2 Dynamic resource allocation As seen in Figure 2, it is evident that resource allocation could not be possible with physical machine as indicated in red color VMs. The resource allocation is done for a VM on physical machine 2. As seen in Figure 4, it is evident that VM migration took place. Initially there were 3 VMs with first physical machine. As one of the VMs experienced over-commitment and there was no possibility of extending resources for VM, it is migrated to other physical machine where resources are available. The migrated VM is shown in green color. VI. CONCLUSION AND FUTURE WORK In this paper we studied the dynamic resource allocation problem in cloud computing. Though cloud is supported by virtualization for affordable All Rights Reserved 2014 IJARCSEE 436

5 resource utilization, it needs to be optimized. The optimal resource allocation is a challenging job. Many techniques came into existence to solve this problem. In this paper a new algorithm is proposed for optimal resource allocation in cloud computing for high utilization of resources. Our algorithm considers two cases to act up on. In the first case available. We built a prototype web application that demonstrates the proof of concept. The application simulates the two cases proposed in the algorithm with visual clues. The empirical results reveal that the proposed algorithm is useful and can be used in real cloud computing applications. REFERENCES 1. J. S. Chase, D. C. Anderson, P. N. Thakar, A. M. Vahdat, and R. P. Doyle, Managing energy and server resources in hosting centers, in Proc. Of the ACM Symposium on Operating System Principles (SOSP 01), Oct C. Tang, M. Steinder, M. Spreitzer, and G. Pacifici, A scalable application placement controller for enterprise data centers, in Proc. Of the International World Wide Web Conference (WWW 07), May G. Chen, H. Wenbo, J. Liu, S. Nath, L. Rigas, L. Xiao, and F. Zhao, Energy-aware server provisioning and load dispatching for connection-intensive internet services, in Proc. of the USENIX Symposium on Networked Systems Design and Implementation (NSDI 08), Apr M. Zaharia, D. Borthakur, J. Sen Sarma, K. Elmeleegy, S. Shenker, and I. Stoica, Delay scheduling: a simple technique for achieving locality and fairness in cluster scheduling, in Proc. of the European conference on Computer systems (EuroSys 10), heterogeneous environments, in Proc. of the Symposium on Operating Systems Design and Implementation (OSDI 08), M. Isard, V. Prabhakaran, J. Currey, U. Wieder, K. Talwar, and A. Goldberg, Quincy: Fair scheduling for distributed computing clusters, in Proc. of the ACM Symposium on Operating System Principles (SOSP 09), Oct T. Sandholm and K. Lai, Mapreduce optimization using regulated dynamic prioritization, in Proc. of the international joint conference on Measurement and modeling of computer systems (SIGMETRICS 09), T. Wood, P. Shenoy, A. Venkataramani, and M. Yousif, Black-box and gray-box strategies for virtual machine migration, in Proc. Of the Symposium on Networked Systems Design and Implementation (NSDI 07), Apr N. Bobroff, A. Kochut, and K. Beaty, Dynamic placement of virtual machines for managing sla violations, in Proc. of the IFIP/IEEE International Symposium on Integrated Network Management (IM 07), Y. Toyoda, A simplified algorithm for obtaining approximate solutions to zero-one programming problems, Management Science, vol. 21, pp , august A.Singh, M. Korupolu, and D. Mohapatra, Serverstorage virtualization: integration and load balancing in data centers, in Proc. of the ACM/IEEE conference on Supercomputing, M. Zaharia, A. Konwinski, A. D. Joseph, R. H. Katz, and I. Stoica, Improving MapReduce performance in All Rights Reserved 2014 IJARCSEE 437

INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) LOAD BALANCING SERVER AVAILABILITY ISSUE

INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) LOAD BALANCING SERVER AVAILABILITY ISSUE INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 6367(Print) ISSN 0976 6375(Online)

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

AN APPROACH TOWARDS DISTRIBUTION OF DATA RESOURCES FOR CLOUD COMPUTING ENVIRONMENT

AN APPROACH TOWARDS DISTRIBUTION OF DATA RESOURCES FOR CLOUD COMPUTING ENVIRONMENT INTERNATIONAL JOURNAL OF REVIEWS ON RECENT ELECTRONICS AND COMPUTER SCIENCE AN APPROACH TOWARDS DISTRIBUTION OF DATA RESOURCES FOR CLOUD COMPUTING ENVIRONMENT A.Priyanka 1, G.Pavani 2 1 M.Tech Student,

More information

Cloud Based Dynamic Workload Management

Cloud Based Dynamic Workload Management International Journal of scientific research and management (IJSRM) Volume 2 Issue 6 Pages 940-945 2014 Website: www.ijsrm.in ISSN (e): 2321-3418 Cloud Based Dynamic Workload Management Ms. Betsy M Babykutty

More information

ENHANCING MINIMAL VIRTUAL MACHINE MIGRATION IN CLOUD ENVIRONMENT

ENHANCING MINIMAL VIRTUAL MACHINE MIGRATION IN CLOUD ENVIRONMENT ENHANCING MINIMAL VIRTUAL MACHINE MIGRATION IN CLOUD ENVIRONMENT Lidin Das 1, P Mohamed Shameem 2 1 M.Tech Student, Dept. of CSE, TKM Institute of Technology, Kerala, India 2 Associate Professor, Dept.

More information

Dynamic Resource management with VM layer and Resource prediction algorithms in Cloud Architecture

Dynamic Resource management with VM layer and Resource prediction algorithms in Cloud Architecture Dynamic Resource management with VM layer and Resource prediction algorithms in Cloud Architecture 1 Shaik Fayaz, 2 Dr.V.N.Srinivasu, 3 Tata Venkateswarlu #1 M.Tech (CSE) from P.N.C & Vijai Institute of

More information

Avoiding Overload Using Virtual Machine in Cloud Data Centre

Avoiding Overload Using Virtual Machine in Cloud Data Centre Avoiding Overload Using Virtual Machine in Cloud Data Centre Ms.S.Indumathi 1, Mr. P. Ranjithkumar 2 M.E II year, Department of CSE, Sri Subramanya College of Engineering and Technology, Palani, Dindigul,

More information

Exploring Resource Provisioning Cost Models in Cloud Computing

Exploring Resource Provisioning Cost Models in Cloud Computing Exploring Resource Provisioning Cost Models in Cloud Computing P.Aradhya #1, K.Shivaranjani *2 #1 M.Tech, CSE, SR Engineering College, Warangal, Andhra Pradesh, India # Assistant Professor, Department

More information

Dynamic memory Allocation using ballooning and virtualization in cloud computing

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

More information

Scheduling Data Intensive Workloads through Virtualization on MapReduce based Clouds

Scheduling Data Intensive Workloads through Virtualization on MapReduce based Clouds ABSTRACT Scheduling Data Intensive Workloads through Virtualization on MapReduce based Clouds 1 B.Thirumala Rao, 2 L.S.S.Reddy Department of Computer Science and Engineering, Lakireddy Bali Reddy College

More information

Dynamic Resource Allocation using Virtual Machines for Cloud Computing Environment

Dynamic Resource Allocation using Virtual Machines for Cloud Computing Environment IEEE TRANSACTION ON PARALLEL AND DISTRIBUTED SYSTEMS(TPDS), VOL. N, NO. N, MONTH YEAR Dynamic Resource Allocation using Virtual Machines for Cloud Computing Environment Zhen Xiao, Senior Member, IEEE,

More information

Virtualization Technology to Allocate Data Centre Resources Dynamically Based on Application Demands in Cloud Computing

Virtualization Technology to Allocate Data Centre Resources Dynamically Based on Application Demands in Cloud Computing Virtualization Technology to Allocate Data Centre Resources Dynamically Based on Application Demands in Cloud Computing Namita R. Jain, PG Student, Alard College of Engg & Mgmt., Rakesh Rajani, Asst. Professor,

More information

Dynamic Virtual Machine Scheduling for Resource Sharing In the Cloud Environment

Dynamic Virtual Machine Scheduling for Resource Sharing In the Cloud Environment Dynamic Virtual Machine Scheduling for Resource Sharing In the Cloud Environment Karthika.M 1 P.G Student, Department of Computer Science and Engineering, V.S.B Engineering College, Tamil Nadu 1 ABSTRACT:

More information

Effective Load Balancing For Dynamic Resource Allocation in Cloud Computing.

Effective Load Balancing For Dynamic Resource Allocation in Cloud Computing. Effective Load Balancing For Dynamic Allocation in Cloud Computing. K Prasanna Kumar 1, S.Arun Kumar 2, Dr Jagadeeshan 3 M.Tech(CSE) Student, SRM University,Ramapuram,Chennai,Tamil Nadu,India 1 Assistant

More information

INCREASING SERVER UTILIZATION AND ACHIEVING GREEN COMPUTING IN CLOUD

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

More information

A Hybrid Scheduling Approach for Scalable Heterogeneous Hadoop Systems

A Hybrid Scheduling Approach for Scalable Heterogeneous Hadoop Systems A Hybrid Scheduling Approach for Scalable Heterogeneous Hadoop Systems Aysan Rasooli Department of Computing and Software McMaster University Hamilton, Canada Email: rasooa@mcmaster.ca Douglas G. Down

More information

VM Based Resource Management for Cloud Computing Services

VM Based Resource Management for Cloud Computing Services Volume 4, Issue 5 AUG 2015 VM Based Resource Management for Cloud Computing Services 1 N. SOWMYA, 2 C. K. HEMANTHA RAMA 1 M.Tech Student, Department of CS. sowmyareddy.nr@gmail.com 2 Assistant Professor,

More information

Heterogeneity-Aware Resource Allocation and Scheduling in the Cloud

Heterogeneity-Aware Resource Allocation and Scheduling in the Cloud Heterogeneity-Aware Resource Allocation and Scheduling in the Cloud Gunho Lee, Byung-Gon Chun, Randy H. Katz University of California, Berkeley, Yahoo! Research Abstract Data analytics are key applications

More information

A Novel Method for Resource Allocation in Cloud Computing Using Virtual Machines

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

More information

Balancing Server in Public Cloud Using AJAS Algorithm

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

More information

Cost Effective Automated Scaling of Web Applications for Multi Cloud Services

Cost Effective Automated Scaling of Web Applications for Multi Cloud Services Cost Effective Automated Scaling of Web Applications for Multi Cloud Services SANTHOSH.A 1, D.VINOTHA 2, BOOPATHY.P 3 1,2,3 Computer Science and Engineering PRIST University India Abstract - Resource allocation

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

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

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 Approach for Dynamic Resource Allocation Using Virtualization technology for Cloud Computing

An Approach for Dynamic Resource Allocation Using Virtualization technology for Cloud Computing An Approach for Dynamic Resource Allocation Using Virtualization technology for Cloud Computing D. Mahesh Goud 1, V. Satish Kumar 2 1 M.Tech Student, Dept. of cse, Malla Reddy Engineering College (Autonomous),

More information

Guidelines for Selecting Hadoop Schedulers based on System Heterogeneity

Guidelines for Selecting Hadoop Schedulers based on System Heterogeneity Noname manuscript No. (will be inserted by the editor) Guidelines for Selecting Hadoop Schedulers based on System Heterogeneity Aysan Rasooli Douglas G. Down Received: date / Accepted: date Abstract Hadoop

More information

Energetic Resource Allocation Framework Using Virtualization in Cloud

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

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

Non-intrusive Slot Layering in Hadoop

Non-intrusive Slot Layering in Hadoop 213 13th IEEE/ACM International Symposium on Cluster, Cloud, and Grid Computing Non-intrusive Layering in Hadoop Peng Lu, Young Choon Lee, Albert Y. Zomaya Center for Distributed and High Performance Computing,

More information

Allocation of Datacenter Resources Based on Demands Using Virtualization Technology in Cloud

Allocation of Datacenter Resources Based on Demands Using Virtualization Technology in Cloud Allocation of Datacenter Resources Based on Demands Using Virtualization Technology in Cloud G.Rajesh L.Bobbian Naik K.Mounika Dr. K.Venkatesh Sharma Associate Professor, Abstract: Introduction: Cloud

More information

USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES

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

More information

INFO5011. Cloud Computing Semester 2, 2011 Lecture 11, Cloud Scheduling

INFO5011. Cloud Computing Semester 2, 2011 Lecture 11, Cloud Scheduling INFO5011 Cloud Computing Semester 2, 2011 Lecture 11, Cloud Scheduling COMMONWEALTH OF Copyright Regulations 1969 WARNING This material has been reproduced and communicated to you by or on behalf of the

More information

Resource Allocation Using Virtual Machines and Practical Outsourcing for Cloud Computing Environment

Resource Allocation Using Virtual Machines and Practical Outsourcing for Cloud Computing Environment IJCST Vo l. 5, Is s u e 4, Oc t - De c 2014 ISSN : 0976-8491 (Online) ISSN : 2229-4333 (Print) Resource Allocation Using Virtual Machines and Practical Outsourcing for Cloud Computing Environment 1 V.Sudarshan,

More information

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 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

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

AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD

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

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

Task Scheduling in Hadoop

Task Scheduling in Hadoop Task Scheduling in Hadoop Sagar Mamdapure Munira Ginwala Neha Papat SAE,Kondhwa SAE,Kondhwa SAE,Kondhwa Abstract Hadoop is widely used for storing large datasets and processing them efficiently under distributed

More information

Nagadevi et al., International Journal of Advanced Engineering Technology E-ISSN 0976-3945

Nagadevi et al., International Journal of Advanced Engineering Technology E-ISSN 0976-3945 Research Paper A SURVEY ON ECONOMIC CLOUD SCHEDULERS FOR OPTIMIZED TASK SCHEDULING S.Nagadevi 1, K.Satyapriya 2, Dr.D.Malathy 3 Address for Correspondence Department of Computer Science and Engineering,

More information

Migration of Virtual Machines for Better Performance in Cloud Computing Environment

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,

More information

Dynamic Load Balancing of Virtual Machines using QEMU-KVM

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

More information

Improving MapReduce Performance in Heterogeneous Environments

Improving MapReduce Performance in Heterogeneous Environments UC Berkeley Improving MapReduce Performance in Heterogeneous Environments Matei Zaharia, Andy Konwinski, Anthony Joseph, Randy Katz, Ion Stoica University of California at Berkeley Motivation 1. MapReduce

More information

Cloud Based Big Data Analytic: a Review

Cloud Based Big Data Analytic: a Review , pp.7-12 http://dx.doi.org/10.21742/ijcs.2016.3.1.02 Cloud Based Big Data Analytic: a Review A.S. Manekar 1, G. Pradeepini 2 1 Research Scholar, K L University, Vijaywada, A. P asmanekar24@gmail.com 2

More information

ENERGY EFFICIENT AND REDUCTION OF POWER COST IN GEOGRAPHICALLY DISTRIBUTED DATA CARDS

ENERGY EFFICIENT AND REDUCTION OF POWER COST IN GEOGRAPHICALLY DISTRIBUTED DATA CARDS ENERGY EFFICIENT AND REDUCTION OF POWER COST IN GEOGRAPHICALLY DISTRIBUTED DATA CARDS M Vishnu Kumar 1, E Vanitha 2 1 PG Student, 2 Assistant Professor, Department of Computer Science and Engineering,

More information

Cloud Management: Knowing is Half The Battle

Cloud Management: Knowing is Half The Battle Cloud Management: Knowing is Half The Battle Raouf BOUTABA David R. Cheriton School of Computer Science University of Waterloo Joint work with Qi Zhang, Faten Zhani (University of Waterloo) and Joseph

More information

Data Centers and Cloud Computing. Data Centers

Data Centers and Cloud Computing. Data Centers Data Centers and Cloud Computing Slides courtesy of Tim Wood 1 Data Centers Large server and storage farms 1000s of servers Many TBs or PBs of data Used by Enterprises for server applications Internet

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

Advanced Load Balancing Mechanism on Mixed Batch and Transactional Workloads

Advanced Load Balancing Mechanism on Mixed Batch and Transactional Workloads Advanced Load Balancing Mechanism on Mixed Batch and Transactional Workloads G. Suganthi (Member, IEEE), K. N. Vimal Shankar, Department of Computer Science and Engineering, V.S.B. Engineering College,

More information

Virtual Putty: Reshaping the Physical Footprint of Virtual Machines

Virtual Putty: Reshaping the Physical Footprint of Virtual Machines Virtual Putty: Reshaping the Physical Footprint of Virtual Machines Jason Sonnek and Abhishek Chandra Department of Computer Science and Engineering University of Minnesota Minneapolis, MN 55455 {sonnek,chandra}@cs.umn.edu

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

Design of Simulator for Cloud Computing Infrastructure and Service

Design of Simulator for Cloud Computing Infrastructure and Service , pp. 27-36 http://dx.doi.org/10.14257/ijsh.2014.8.6.03 Design of Simulator for Cloud Computing Infrastructure and Service Changhyeon Kim, Junsang Kim and Won Joo Lee * Dept. of Computer Science and Engineering,

More information

Matchmaking: A New MapReduce Scheduling Technique

Matchmaking: A New MapReduce Scheduling Technique Matchmaking: A New MapReduce Scheduling Technique Chen He Ying Lu David Swanson Department of Computer Science and Engineering University of Nebraska-Lincoln Lincoln, U.S. {che,ylu,dswanson}@cse.unl.edu

More information

Elastic VM for Rapid and Optimum Virtualized

Elastic VM for Rapid and Optimum Virtualized Elastic VM for Rapid and Optimum Virtualized Resources Allocation Wesam Dawoud PhD. Student Hasso Plattner Institute Potsdam, Germany 5th International DMTF Academic Alliance Workshop on Systems and Virtualization

More information

CURTAIL THE EXPENDITURE OF BIG DATA PROCESSING USING MIXED INTEGER NON-LINEAR PROGRAMMING

CURTAIL THE EXPENDITURE OF BIG DATA PROCESSING USING MIXED INTEGER NON-LINEAR PROGRAMMING Journal homepage: http://www.journalijar.com INTERNATIONAL JOURNAL OF ADVANCED RESEARCH RESEARCH ARTICLE CURTAIL THE EXPENDITURE OF BIG DATA PROCESSING USING MIXED INTEGER NON-LINEAR PROGRAMMING R.Kohila

More information

Black-box and Gray-box Strategies for Virtual Machine Migration

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

More information

Product: Order Delivery Tracking

Product: Order Delivery Tracking Product: Order Delivery Tracking Subject: On Premise Environment Recommendations Version: 1.7 June 1, 2015 Distribution: ODT Customers Contents 1. Introduction... 2 2. Backend Application and Database

More information

Energy Aware Consolidation for Cloud Computing

Energy Aware Consolidation for Cloud Computing Abstract Energy Aware Consolidation for Cloud Computing Shekhar Srikantaiah Pennsylvania State University Consolidation of applications in cloud computing environments presents a significant opportunity

More information

A Virtual Machine Placement Algorithm in Mobile Cloud Computing Environment by Considering Network Features

A Virtual Machine Placement Algorithm in Mobile Cloud Computing Environment by Considering Network Features A Virtual Machine Placement Algorithm in Mobile Cloud Computing Environment by Considering Network Features Chaitra Sathyampet M.E. Scholar Department of Computer Science & Engineering APPA Institute Of

More information

A Survey of Cloud Computing Guanfeng Octides

A Survey of Cloud Computing Guanfeng Octides A Survey of Cloud Computing Guanfeng Nov 7, 2010 Abstract The principal service provided by cloud computing is that underlying infrastructure, which often consists of compute resources like storage, processors,

More information

IMPROVED FAIR SCHEDULING ALGORITHM FOR TASKTRACKER IN HADOOP MAP-REDUCE

IMPROVED FAIR SCHEDULING ALGORITHM FOR TASKTRACKER IN HADOOP MAP-REDUCE IMPROVED FAIR SCHEDULING ALGORITHM FOR TASKTRACKER IN HADOOP MAP-REDUCE Mr. Santhosh S 1, Mr. Hemanth Kumar G 2 1 PG Scholor, 2 Asst. Professor, Dept. Of Computer Science & Engg, NMAMIT, (India) ABSTRACT

More information

Network-Aware Scheduling of MapReduce Framework on Distributed Clusters over High Speed Networks

Network-Aware Scheduling of MapReduce Framework on Distributed Clusters over High Speed Networks Network-Aware Scheduling of MapReduce Framework on Distributed Clusters over High Speed Networks Praveenkumar Kondikoppa, Chui-Hui Chiu, Cheng Cui, Lin Xue and Seung-Jong Park Department of Computer Science,

More information

Infrastructure as a Service (IaaS)

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.,

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

NetFlow Analysis with MapReduce

NetFlow Analysis with MapReduce NetFlow Analysis with MapReduce Wonchul Kang, Yeonhee Lee, Youngseok Lee Chungnam National University {teshi85, yhlee06, lee}@cnu.ac.kr 2010.04.24(Sat) based on "An Internet Traffic Analysis Method with

More information

IMPLEMENTATION OF VIRTUAL MACHINES FOR DISTRIBUTION OF DATA RESOURCES

IMPLEMENTATION OF VIRTUAL MACHINES FOR DISTRIBUTION OF DATA RESOURCES INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND SCIENCE IMPLEMENTATION OF VIRTUAL MACHINES FOR DISTRIBUTION OF DATA RESOURCES M.Nagesh 1, N.Vijaya Sunder Sagar 2, B.Goutham 3, V.Naresh 4

More information

Effective Resource Allocation For Dynamic Workload In Virtual Machines Using Cloud Computing

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

More information

Comparison of Request Admission Based Performance Isolation Approaches in Multi-tenant SaaS Applications

Comparison of Request Admission Based Performance Isolation Approaches in Multi-tenant SaaS Applications Comparison of Request Admission Based Performance Isolation Approaches in Multi-tenant SaaS Applications Rouven Kreb 1 and Manuel Loesch 2 1 SAP AG, Walldorf, Germany 2 FZI Research Center for Information

More information

Maximizing Profit in Cloud Computing System via Resource Allocation

Maximizing Profit in Cloud Computing System via Resource Allocation Maximizing Profit in Cloud Computing System via Resource Allocation Hadi Goudarzi and Massoud Pedram University of Southern California, Los Angeles, CA 90089 {hgoudarz,pedram}@usc.edu Abstract With increasing

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 3, May-Jun 2014

International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 3, May-Jun 2014 RESEARCH ARTICLE OPEN ACCESS Survey of Optimization of Scheduling in Cloud Computing Environment Er.Mandeep kaur 1, Er.Rajinder kaur 2, Er.Sughandha Sharma 3 Research Scholar 1 & 2 Department of Computer

More information

Multi-dimensional Affinity Aware VM Placement Algorithm in Cloud Computing

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

More information

Load balancing model for Cloud Data Center ABSTRACT:

Load balancing model for Cloud Data Center ABSTRACT: Load balancing model for Cloud Data Center ABSTRACT: Cloud data center management is a key problem due to the numerous and heterogeneous strategies that can be applied, ranging from the VM placement to

More information

Phoenix Cloud: Consolidating Different Computing Loads on Shared Cluster System for Large Organization

Phoenix Cloud: Consolidating Different Computing Loads on Shared Cluster System for Large Organization Phoenix Cloud: Consolidating Different Computing Loads on Shared Cluster System for Large Organization Jianfeng Zhan, Lei Wang, Bibo Tu, Yong Li, Peng Wang, Wei Zhou, Dan Meng Institute of Computing Technology

More information

Index Terms : Load rebalance, distributed file systems, clouds, movement cost, load imbalance, chunk.

Index Terms : Load rebalance, distributed file systems, clouds, movement cost, load imbalance, chunk. Load Rebalancing for Distributed File Systems in Clouds. Smita Salunkhe, S. S. Sannakki Department of Computer Science and Engineering KLS Gogte Institute of Technology, Belgaum, Karnataka, India Affiliated

More information

Residual Traffic Based Task Scheduling in Hadoop

Residual Traffic Based Task Scheduling in Hadoop Residual Traffic Based Task Scheduling in Hadoop Daichi Tanaka University of Tsukuba Graduate School of Library, Information and Media Studies Tsukuba, Japan e-mail: s1421593@u.tsukuba.ac.jp Masatoshi

More information

Survey on Models to Investigate Data Center Performance and QoS in Cloud Computing Infrastructure

Survey on Models to Investigate Data Center Performance and QoS in Cloud Computing Infrastructure Survey on Models to Investigate Data Center Performance and QoS in Cloud Computing Infrastructure Chandrakala Department of Computer Science and Engineering Srinivas School of Engineering, Mukka Mangalore,

More information

Virtual Machine Based Resource Allocation For Cloud Computing Environment

Virtual Machine Based Resource Allocation For Cloud Computing Environment Virtual Machine Based Resource Allocation For Cloud Computing Environment D.Udaya Sree M.Tech (CSE) Department Of CSE SVCET,Chittoor. Andra Pradesh, India Dr.J.Janet Head of Department Department of CSE

More information

Towards Improving MapReduce Task Scheduling Using Online Simulation Based Predictions

Towards Improving MapReduce Task Scheduling Using Online Simulation Based Predictions Towards Improving MapReduce Task Scheduling Using Online Simulation Based s Guanying Wang, Aleksandr Khasymski, Krish K. R., Ali R. Butt Department of Computer Science, Virginia Tech Email: {wanggy, khasymskia,

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY Karthi M,, 2013; Volume 1(8):1062-1072 INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK EFFICIENT MANAGEMENT OF RESOURCES PROVISIONING

More information

Reallocation and Allocation of Virtual Machines in Cloud Computing Manan D. Shah a, *, Harshad B. Prajapati b

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

More information

Efficient Resources Allocation and Reduce Energy Using Virtual Machines for Cloud Environment

Efficient Resources Allocation and Reduce Energy Using Virtual Machines for Cloud Environment Efficient Resources Allocation and Reduce Energy Using Virtual Machines for Cloud Environment R.Giridharan M.E. Student, Department of CSE, Sri Eshwar College of Engineering, Anna University - Chennai,

More information

Figure 1. The cloud scales: Amazon EC2 growth [2].

Figure 1. The cloud scales: Amazon EC2 growth [2]. - Chung-Cheng Li and Kuochen Wang Department of Computer Science National Chiao Tung University Hsinchu, Taiwan 300 shinji10343@hotmail.com, kwang@cs.nctu.edu.tw Abstract One of the most important issues

More information

Evaluating HDFS I/O Performance on Virtualized Systems

Evaluating HDFS I/O Performance on Virtualized Systems Evaluating HDFS I/O Performance on Virtualized Systems Xin Tang xtang@cs.wisc.edu University of Wisconsin-Madison Department of Computer Sciences Abstract Hadoop as a Service (HaaS) has received increasing

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

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

CSE-E5430 Scalable Cloud Computing Lecture 2

CSE-E5430 Scalable Cloud Computing Lecture 2 CSE-E5430 Scalable Cloud Computing Lecture 2 Keijo Heljanko Department of Computer Science School of Science Aalto University keijo.heljanko@aalto.fi 14.9-2015 1/36 Google MapReduce A scalable batch processing

More information

Final Project Proposal. CSCI.6500 Distributed Computing over the Internet

Final Project Proposal. CSCI.6500 Distributed Computing over the Internet Final Project Proposal CSCI.6500 Distributed Computing over the Internet Qingling Wang 660795696 1. Purpose Implement an application layer on Hybrid Grid Cloud Infrastructure to automatically or at least

More information

MapReduce Analysis for Cloud-archived Data

MapReduce Analysis for Cloud-archived Data MapReduce Analysis for Cloud-archived Data Balaji Palanisamy Aameek Singh Nagapramod Mandagere Gabriel Alatorre Ling Liu College of Computing, Georgia Tech IBM Research - Almaden {balaji, lingliu}@cc.gatech.edu,

More information

MANAGEMENT OF DATA REPLICATION FOR PC CLUSTER BASED CLOUD STORAGE SYSTEM

MANAGEMENT OF DATA REPLICATION FOR PC CLUSTER BASED CLOUD STORAGE SYSTEM MANAGEMENT OF DATA REPLICATION FOR PC CLUSTER BASED CLOUD STORAGE SYSTEM Julia Myint 1 and Thinn Thu Naing 2 1 University of Computer Studies, Yangon, Myanmar juliamyint@gmail.com 2 University of Computer

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

International Journal of Scientific & Engineering Research, Volume 4, Issue 5, May-2013 617 ISSN 2229-5518

International Journal of Scientific & Engineering Research, Volume 4, Issue 5, May-2013 617 ISSN 2229-5518 International Journal of Scientific & Engineering Research, Volume 4, Issue 5, May-2013 617 Load Distribution & Resource Scheduling for Mixed Workloads in Cloud Environment 1 V. Sindhu Shri II ME (Software

More information

Application-aware Virtual Machine Migration in Data Centers

Application-aware Virtual Machine Migration in Data Centers This paper was presented as part of the Mini-Conference at IEEE INFOCOM Application-aware Virtual Machine Migration in Data Centers Vivek Shrivastava,PetrosZerfos,Kang-wonLee,HaniJamjoom,Yew-HueyLiu,SumanBanerjee

More information

Unleash Stranded Power in Data Centers with RackPacker

Unleash Stranded Power in Data Centers with RackPacker Unleash Stranded Power in Data Centers with RackPacker Lakshmi Ganesh, Jie Liu, Suman Nath, Feng Zhao Dept. of Computer Science, Cornell University, Ithaca, NY 14853 lakshmi@cs.cornell.edu Microsoft Research,

More information

Adaptive Task Scheduling for Multi Job MapReduce

Adaptive Task Scheduling for Multi Job MapReduce Adaptive Task Scheduling for MultiJob MapReduce Environments Jordà Polo, David de Nadal, David Carrera, Yolanda Becerra, Vicenç Beltran, Jordi Torres and Eduard Ayguadé Barcelona Supercomputing Center

More information

Benchmarking the Performance of XenDesktop Virtual DeskTop Infrastructure (VDI) Platform

Benchmarking the Performance of XenDesktop Virtual DeskTop Infrastructure (VDI) Platform Benchmarking the Performance of XenDesktop Virtual DeskTop Infrastructure (VDI) Platform Shie-Yuan Wang Department of Computer Science National Chiao Tung University, Taiwan Email: shieyuan@cs.nctu.edu.tw

More information

Scalable Cloud Computing Solutions for Next Generation Sequencing Data

Scalable Cloud Computing Solutions for Next Generation Sequencing Data Scalable Cloud Computing Solutions for Next Generation Sequencing Data Matti Niemenmaa 1, Aleksi Kallio 2, André Schumacher 1, Petri Klemelä 2, Eija Korpelainen 2, and Keijo Heljanko 1 1 Department of

More information

Virtual Machine Migration in an Over-committed Cloud

Virtual Machine Migration in an Over-committed Cloud Virtual Machine Migration in an Over-committed Cloud Xiangliang Zhang, Zon-Yin Shae, Shuai Zheng, and Hani Jamjoom King Abdullah University of Science and Technology (KAUST), Saudi Arabia IBM T. J. Watson

More information

THE CLOUD AND ITS EFFECTS ON WEB DEVELOPMENT

THE CLOUD AND ITS EFFECTS ON WEB DEVELOPMENT TREX WORKSHOP 2013 THE CLOUD AND ITS EFFECTS ON WEB DEVELOPMENT Jukka Tupamäki, Relevantum Oy Software Specialist, MSc in Software Engineering (TUT) tupamaki@gmail.com / @tukkajukka 30.10.2013 1 e arrival

More information

Introduction to Cloud Computing

Introduction to Cloud Computing Discovery 2015: Cloud Computing Workshop June 20-24, 2011 Berkeley, CA Introduction to Cloud Computing Keith R. Jackson Lawrence Berkeley National Lab What is it? NIST Definition Cloud computing is a model

More information

Big Data Analysis and Its Scheduling Policy Hadoop

Big Data Analysis and Its Scheduling Policy Hadoop IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 1, Ver. IV (Jan Feb. 2015), PP 36-40 www.iosrjournals.org Big Data Analysis and Its Scheduling Policy

More information

Cloud computing The cloud as a pool of shared hadrware and software resources

Cloud computing The cloud as a pool of shared hadrware and software resources Cloud computing The cloud as a pool of shared hadrware and software resources cloud Towards SLA-oriented Cloud Computing middleware layers (e.g. application servers) operating systems, virtual machines

More information