Execution of scientific workflows on federated multi-cloud infrastructures
|
|
|
- Ruth Hicks
- 10 years ago
- Views:
Transcription
1 Execution of scientific workflows on federated multi-cloud infrastructures Daniele Lezzi 1, Francesc Lordan 1, Roger Rafanell 1, and Rosa M. Badia 1, 1 Barcelona Supercomputing Center - Centro Nacional de Supercomputación (BSC-CNS) {daniele.lezzi, francesc.lordan, roger.rafanell, rosa.m.badia}@bsc.es, Artificial Intelligence Research Institute (IIIA), Spanish Council for Scientific Research (CSIC) Abstract. Recently cloud services have been evaluated by scientific communities as a viable solution to satisfy their computing needs, reducing the cost of ownership and operation to the minimum. The analysis on the adoption of the cloud computing model for escience has identified several areas of improvement as federation management and interoperability between providers. Portability between cloud vendors is a widely recognized feature to avoid the risk of lock-in of users in proprietary systems, a stopper to the complete adoption of clouds. In this paper we present a programming framework that allows the coordination of applications on federated clouds used to provide flexibility to traditional research infrastructures as clusters and grids. This approach allows researchers to program applications abstracting the underlying infrastructure and providing scaling and elasticity features through the dynamic provision of virtualized resources. The adoption of standard interfaces is a basic feature in the development of connectors for different middlewares ensuring the portability of the code between different providers. Keywords: Programming models, Cloud interoperability, Cloud federation, Standards 1 Introduction The revolutionary advent of Cloud computing has changed the way IT services are developed and offered. Enterprises have switched their IT organization moving from on premises owned physical infrastructures to rented on demand services. This new model has implied a shift from capital expense avoiding up-front investments in the procurement of computational infrastructures in favor of a renting model where resources are acquired, by Amazon EC [13], Microsoft Azure [7] or Google Apps [], on a pay per use basis. Similarly, Cloud computing has revealed useful and convenient in many scientific research fields allowing to have access to almost unlimited resources without the need of taking care of the management and deployment of the underlying infrastructure. In the last years,
2 several research projects [1], [1], [] have analyzed how to face these challenges exploring the adaptability of virtualization and Cloud computing to research. In particular the European Grid Infrastructure (EGI) [3] has started a specific Federated Cloud Task Force [5] in order to evaluate the adoption of clouds to make the existing infrastructure more flexible and scalable to expand its services to new user communities. An hybrid model for escience is being gradually adopted with cloud infrastructures, both private and public, offered as complementary solutions to traditional environments as grids and clusters to provide flexibility and cost-effectiveness to the so called long-tail of science. Nevertheless cloud adoption is not so straightforward for non-technical users that have to deal with issues related to the adaptation of their applications to new environments and with the lack of guaranteed portability and interoperability between different providers. In order to facilitate the execution of applications in the cloud, tools that simplify their development, deployment and transparent execution on federated infrastructures are required. In this paper we present the enhancements to the COMP Superscalar programming framework (COMPSs) [9] to make it interoperable with the EGI Federated Cloud testbed in order to optimize the execution of the related use cases. COMPSs allows the automatic parallelization of sequential applications on top of computational infrastructures as grids and clouds providing elasticity features. In particular, here we focus on the development of a connector for the management of virtual appliances using the Open Cloud Computing Interface (OCCI) [8] specification and on the evaluation of the framework executing a workflow for the biodiversity community in EGI. The rest of the paper is organized as follows. Section describes the related work and Section 3 introduces COMPSs and how it enables interoperability with several clouds offerings. In particular Section 3. presents the main contribution of the paper, the developments to make COMPSs interoperable with the EGI Federated Cloud. Section evaluates the execution of a use case highlighting the benefits of using COMPSs in a federated multi-cloud environment. Section 5 concludes the paper and presents the future work. Related work Several frameworks allow the graphical composition of an application workflow and its execution on distributed infrastructures. Taverna [3] is a workflow language and computational model designed to support the automation of complex, service-based and data-intensive processes. A prototype version has been tested on a private cloud testbed deploying Taverna Servers on a set of virtual machines but neither plugins are offered to execute tasks on public clouds nor the possibility exists of elastically modify the pool of resources. In [15] authors evaluate the usage of Pegasus workflow manager on multiple clouds. The setup of the execution is not straightforward because forces the user to manually predeploy several nodes configured as Condor workers, while COMPSs automatically deploys the applications on dynamically created virtual machines. The
3 3 guse framework [18] includes a workflow manager and a distributed computing infrastructure (DCI) bridge that provides standard access, through a Basic Execution Service (BES) [17] compliant interface, to various DCIs including clouds. COMPSs implements a similar approach [] through a deployment and execution service accessible by compliant clients. In guse the support to clouds is delegated to an external service and is still in development phase in the context of the SCI-BUS project [5]. The Contrail project is developing ConPaaS [], a runtime environment for elastically hosting and deploying applications on federated and multi-clouds following SLA constraints. Applications in ConPaaS are composed of any number of services programmed through a common generic Python interface for the service management and a Javascript part to extend the front-end GUI with service-specific information and control. The main difference with COMPSs is the existence of predefined patterns for the implementation of a service, thus forcing the users to write new code or to adapt the existing one to use the currently provided services. Support to OCCI specification is not available in ConPaaS at writing time. 3 COMPSs interoperability in the EGI Federated Cloud 3.1 The EGI federation model The federation model of the EGI Cloud Infrastructure Platform provides an abstract cloud management stack to operate an infrastructure integrated with the components of EGI Core Infrastructure Platform. This model defines the required external interfaces and corresponding interaction ports that each resource provider has to support. The former requires the deployment of interoperable standard interfaces for VM management(occi), data management(cdmi[]) and information discovery (GLUE ). The interaction with the core EGI components includes the integration with the AAI VOMS (Virtual Organization Membership Service) [1] system and with the monitoring and accounting services. An Appliance Repository and a VM Marketplace support the sharing and deployment of appliances across the providers. The EGI Cloud Testbed includes different management middlewares (OpenStack [7], OpenNebula [8], Stratus- Lab, WNoDeS [] and Synnefo [11]) but the federation model does not impose any specific technology leaving to the providers the responsibility to identify and deploy the solution that fits best their individual needs with the only constraint of providing the appropriate interfaces in order to be interoperable with other implementations. 3. COMPSs integration in the EGI Cloud COMPSs is a framework, composed of a programming model and a runtime, that aims to ease the development and deployment of distributed applications and web services. The core of the framework is its programming model which allows the programmer to write applications in a sequential way and to execute
4 them on top of heterogeneous infrastructures exploiting the inherent parallelism of the application. The COMPSs programming model is task-based allowing the programmer to select the methods of the sequential application to be executed remotely. This selection is done by means of an annotated interface where all the methods that have to be considered as a task are defined with some annotations describing their data accesses and constraints on the execution resources. At execution time this information is used by the runtime to build a dependency graph and orchestrate the tasks on the available resources. One important feature of the COMPSs runtime is the ability to exploit the cloud elasticity by adjusting the amount of resources to the current workload. When the number of tasks is higher than the available cores, the runtime turns to the cloud looking for the provider that offers the resources that better fit the requirements of the application with a lower economical cost. Symmetrically, when the runtime detects an excess of resources it powers off unused instances in a cost-efficient way. Such decisions are based on information provided by the user who describes the details of the software images and instance templates available for every cloud provider. Since each cloud provider offers its own API, COMPSs defines a generic interface to manage resources and to query details about the execution cost of multiple cloud providers during the same execution. The implementations of this interface, called connectors, are in charge of translating the generic requests to the actual provider s API. In order to support the usage of EGI Federated Cloud IaaS resources, a new connector has been developed to operate with the interfaces and protocols described in subsection 3.1. The support for the VM management is implemented using the rocci client [9] that transparently interoperates with the rocci servers deployed in the testbed on top of different middlewares as OpenNebula and OpenStack. The connector supports different authentication methods, including X59 type through VOMS proxy certificates. To setup each connector instance, the user indicates which virtual images and instance types are offered by the specific provider; thus, when the runtime asks for the creation of a VM, the connector selects the appropriate image and resource template according to the requirements (in terms of cpu, memory, disk, etc) and invokes the rocci client through Mixins, extensions of the OCCI Model that allow the instantiation of a VM through templates with additional capabilities (network, storage, etc). For the data management, the support to CDMI protocol is offered through the VENUS-C middleware to store and retrieve input data and final results, as detailed in [17]. The interaction with the deployed resources is done via SSH. To allow the job submission and data transfers between worker VMs, public key exchange is used as authentication method. At boot time, the VM contacts the Perun [19] server to obtain the public key of the user. Once the VM is accessible, the connector contextualizes it configuring the SSH keys and deploying the software packages such as the binaries used by the tasks, the application code and the COMPSs worker application. The connector also implements methods for the computation of the economical and temporal costs on each provider such as the accumulated execution cost, the current cost per hour, the cost per hour
5 5 for a VM that fulfills certain requirements or the time required to start a new instance. Evaluation A series of tests has been performed in order to evaluate the performance of COMPSs and the developed connector to run a use case provided by an EGI user community. In the following section we describe the implementation of the application, the deployed testbed, the benchmarks and the results obtained..1 Modeller Service The Modeller Web Service provides a COMPSs implementation of the Extended Open Modeler Web Service (OMWS+) [1] which performs Ecological Niche Modelling (ENM) operations automatically converting multi-stage & multi-parameter experiment requests into a set of single invocations of the openmodeller (OM) [1] suite. The Serivce provides operations that execute a COMPSs workflow, whose example dependency graph is depicted in Figure 1, composed of OM operations that model a species distribution, test it agains an input dataset, project the distribution on a geographical map and print it on an image file (translate). In the figure the numbers represent the generation order of the tasks by the COMPSs runtime and each type of task is depicted with a color. Fig. 1. Dependency graph for an execution of COMPSs workflow with 1 species, 3 modelling algorithms and multiple tests. COMPSs generates three model tasks, two tests operations and three project tasks, one per model.. Testbed The Web Service has been deployed on the federated cloud scenario depicted in Figure and composed of the following elements: Client: Java application that invokes the Modeller Service. WS server: machine running an Apache Tomcat 7. [] WS container hostingtheservice.itisaintelcorequadq93at.5ghz,gboframand 3GB ofdisk space.both, the service main programand the COMPSsruntime execute in this machine located at BSC premises in Barcelona, Spain.
6 Fig.. The testbed comprises two EGI FedCloud providers, CESNET and CESGA, providing VMs to the Modeller Service running at BSC. EGI Federated Cloud: composed of two providers, CESGA (Spain) and CESNET (Czech Republic) both providing resources through the rocci server for OpenNebula cloud middleware. CESGA contributed 33 octo-core servers (5 CPUs) and 1.5 TB of shared NFS/SSH filesystem, CESNET contributed ten -core servers, 9 GB of memory and TB of shared filesystem. The providers offered different VM plans; CESGA provided Large VMs template consisting of cores and 8 GB of memory. CESNET provided an XLarge template which consists of cores and 15 GB of memory. The VMs images, stored in the appliance repository, take up 1 GB and were configured with a Linux distribution, the COMPSs runtime, the Modeller service packages and the OM suite..3 Results Two different usage modes of the implemented use case are discussed below, representing two ways of usage of the ENM service. In the Single test a complex workflow is submitted in a unique request, while in the Multiple test, simpler workflows are submitted to the service. When the ENM service starts, it automatically instances one Large VM at CESGA and two XLarge VMs at CESNET that will be always available throughout different executions. This strategy reduces the initial response time because the first requests can be immediately submitted without waiting for the instantiation of new VMs. The number of pre-deployed instances can be configured in the connector. Single request In order to evaluate the performance of the runtime and how it adapts the VMs pool size to the workload, a single invocation request has been issued. This request includes species and algorithms, thus producing 1 distribution models; each model is then tested and projected generating a total of 3 dependent tasks. This test exploits different VM templates offered by the EGI FedCloud providers by using method constraints defined in the COMPSs
7 7 5 Model XLarge VMs 7 5 Test Project Large VMs Load 5 3 #Resources Load 5 3 #Resources Time (min) (a) Time (min) Fig. 3. System load vs. available virtual resources during a single request execution. Figure 3(a) and Figure 3(b) represent the model and the test, project tasks respectively. (b) application interface. This forces the model and test, project tasks to be executed on XLarge and Large VMs respectively. Figure 3 describes the runtime behavior during the execution of a single request; a growth of the number of tasks forces the runtime to acquire new resources while, as the load decreases, virtual resources are progressively released adapting the system needs to the current workload. In the figures, VMs are available after a creation time specific of each provider and released at the end of the tasks currently executed there. Multiple requests This test aims to evaluate the global service performance on a multi-request scenario. In this case, a set of invocations has been issued following a Gaussian random workload pattern, generated by Apache JMeter [1] benchmark suite. The JMeter test plan has been tuned to issue 3 simultaneous requests in a random time frame of / minutes during 5 hours as depicted in Figure. This suite also permits to obtain and analyze some service Key Performance Indicators (KPI) such as: response time, dynamic resource consumption and throughput. In this experiment, each request requires low computation time, generating a dependency graph composed of three OM tasks (model, test and project) where the last two ones executed in parallel. The response time is depicted in Figure 5 together with the evolution of the number of virtual resources used in the execution. When multiple requests are issued at the same time (Figure ) the response time increases and the COMPSs runtime reacts to the rise of the load produced, adapting the number of resources needed to execute every kind of new task, according to the task constraint. As represented in #Resources curve, the connector manages XLarge type machines at CESNET and Large type ones at CESGA. Another important performance indicator to consider is the global throughput of the service. Figure shows a slightly lower sustained value (.9%) than the average requests per minute, thanks to the accuracy on the resources man-
8 8 1 Requests Distribution Average Requests 8 #Requests Time (min) Fig.. Requests per minute. The average cadence is set on.1 requests/min Response Time Large VMs XLarge VMs Response Time (min) #Resources Time (min) Fig. 5. Response time vs. resource consumption. agement system. This evidences a fast responsiveness of COMPSs framework facing unexpected workload peaks. 5 Conclusions and future work This paper presented the extension of the COMPSs framework to execute applications in the EGI Federated Cloud. The developed OCCI compliant connector allows the orchestration of COMPSs applications on hybrid environments elastically adapting the number of resources to the actual load requirements. The application used in the evaluation, published as virtual appliance in the EGI Marketplace, has been executed in order to evaluate two possible scenarios. The results of the tests demonstrate that the runtime is able to deal with variations of loads of complex workflows by provisioning virtual instances on demand and also to serve multiple independent execution requests properly managing the pool of resources.
9 9 1 Throughput Average Throughput 8 #Requests Time (min) Fig.. Responses per minute (throughput). The sustained value is.3 responses/min. The ongoing work includes the improvement of the connector to support contextualization features that will be introduced in the EGI FedCloud in the production phase of the testbed and the enhancement of resource management in order to support the assignment of tasks to multi-core instances. Acknowledgements This work has been supported by the Spanish Ministry of Science and Innovation (contracts TIN7-5, CSD7-5 and CAC7-5), by Generalitat de Catalunya (contract 9-SGR-98), and the European Commission (EUBrazilOpenbio: RI-8875 and EGI-InSPIRE: RI-133). References 1. Apache jmeter. Apache Tomcat Egi-inspire white paper. Last visited on /1/13.. European Middleware Initiative (EMI) Federated Clouds Task Force. Last visited on //13.. Google App Engine Microsoft Azure Open Cloud Computing Interface. Last visited on /1/ The rocci framework. Last visited on 7/17/ Stratuslab Synnefo cloud. ( Last visited on 7/17/ Virtual multidisciplinary ENvironments USing Cloud infrastructures Project Amazon elastic compute cloud (Amazon EC), 8.
10 1 1. R. Alfieri, R. Cecchini, V. Ciaschini, L. dell Agnello, A. Frohner, A. Gianoli, K. Lrentey, and F. Spataro. Voms, an authorization system for virtual organizations. In F. Fernandez Rivera, M. Bubak, A. Gomez Tato, and R. Doallo, editors, Grid Computing, volume 97 of Lecture Notes in Computer Science, pages 33. Springer Berlin Heidelberg,. 15. G. B. Berriman, E. Deelman, G. Juve, M. Rynge, and J.-S. Vöckler. The application of cloud computing to scientific workflows: a study of cost and performance. Physical and Engineering Sciences, 371(1983), Jan M. E. de Souza Muñoz, R. De Giovanni, M. F. de Siqueira, T. Sutton, P. Brewer, R.S.Pereira, D.A.L. Canhos, andv.p.canhos. openmodeller: ageneric approach to species potential distribution modelling. GeoInformatica, 15(1): , I. Foster. OGSA Basic Execution Service Version 1.. Grid Forum Document GFD-RP /13/ P. Kacsuk, Z. Farkas, M. Kozlovszky, G. Hermann, A. Balasko, K. Karoczkai, and I. Marton. Ws-pgrade/guse generic dci gateway framework for a large variety of user communities. Journal of Grid Computing, 1:1 3, Jan A. Krenek and Z. Sebestianov. Perun fault-tolerant management of grid resources. In Krakow Grid Workshop, pages 133 1, Krakow, 5. Academic Computer Centre CYFRONET AGH.. D. Lezzi, S. Memon, R. Rafanell, H. Soncu, M. Riedel, and R. M. Badia. Interoperable execution of escience applications on grids & clouds through open standards. In Proceedings of the Unicore Summit 1, IAS. Forschungszentrum Jülich GmbH, D. Lezzi, R. Rafanell, E. Torres, R. De Giovanni, I. Blanquer, and R. M. Badia. Programming ecological niche modeling workflows in the cloud. In The 7th IEEE International Conference on Advanced Information Networking and Applications (AINA-13), Barcelona, Spain, Mar I. Livenson and E. Laure. Towards transparent integration of heterogeneous cloud storage platforms. In Proceedings of the fourth international workshop on Dataintensive distributed computing, DIDC 11, pages 7 3, New York, NY, USA, 11. ACM. 3. P. Missier, S. Soiland-Reyes, S. Owen, W. Tan, A. Nenadic, I. Dunlop, A. Williams, T. Oinn, and C. Goble. Taverna, reloaded. InM. Gertz, T. Hey,and B. Ludaescher, editors, SSDBM 1, Heidelberg, Germany, June 1.. G. Pierre and C. Stratan. ConPaaS: a platform for hosting elastic cloud applications. IEEE Internet Computing, 1(5):88 9, September-October S.-B. Project. The sci-bus project: (11). Last visited on 5/31/13.. D. Salomoni, A. Italiano, and E. Ronchieri. Wnodes, a tool for integrated grid and cloud access and computing farm virtualization. Journal of Physics: Conference Series, 331(5):517, O. Sefraoui, M. Aissaoui, and M. Eleuldj. Article: Openstack: Toward an opensource solution for cloud computing. International Journal of Computer Applications, 55(3):38, October 1. Published by Foundation of Computer Science, New York, USA. 8. B. Sotomayor, R. S. Montero, I. M. Llorente, and I. Foster. Virtual infrastructure management in private and hybrid clouds. IEEE Internet Computing, 13:1, E. Tejedor and R. Badia. Comp superscalar: Bringing grid superscalar and gcm together. In Cluster Computing and the Grid, 8. CCGRID 8. 8th IEEE International Symposium on, pages IEEE, 8.
Mobile Cloud Computing T-110.5121 Open Source IaaS
Mobile Cloud Computing T-110.5121 Open Source IaaS Tommi Mäkelä, Otaniemi Evolution Mainframe Centralized computation and storage, thin clients Dedicated hardware, software, experienced staff High capital
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
FREE AND OPEN SOURCE SOFTWARE FOR CLOUD COMPUTING SERENA SPINOSO ([email protected]) FULVIO VALENZA (fulvio.valenza@polito.
+ FREE AND OPEN SOURCE SOFTWARE FOR CLOUD COMPUTING SERENA SPINOSO ([email protected]) FULVIO VALENZA ([email protected]) + OUTLINE INTRODUCTION OF CLOUD DEFINITION OF CLOUD BASIC CLOUD COMPONENTS
Work in Progress on Cloud Computing in Myriads Team and Contrail European Project Christine Morin, Inria
Potential collaboration talk Work in Progress on Cloud Computing in Myriads Team and Contrail European Project Christine Morin, Inria Design and implementation of autonomous distributed systems Internet
Enabling cloud for e-science with OpenNebula
Enabling cloud for e-science with OpenNebula cloud-devroom@fosdem 13 Zeeshan Ali Shah System Administrator, PDC-HPC KTH, Stockholm [email protected] disclaimer: opinions expressed in this talk are solely
The EGI pan-european Federation of Clouds
The EGI pan-european Federation of Clouds CGW12 Cracow, 22-24 Oct 2012 Matteo Turilli Senior Research Associate Chair EGI Federated Clouds Task Force Oxford e-research Centre University of Oxford [email protected]
Processing big data by WS- PGRADE/gUSE and Data Avenue
Processing big data by WS- PGRADE/gUSE and Data Avenue http://www.sci-bus.eu Peter Kacsuk, Zoltan Farkas, Krisztian Karoczkai, Istvan Marton, Akos Hajnal, Tamas Pinter MTA SZTAKI SCI-BUS is supported by
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]
OpenNebula Open Souce Solution for DC Virtualization. C12G Labs. Online Webinar
OpenNebula Open Souce Solution for DC Virtualization C12G Labs Online Webinar What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision on Virtualized Environments I m using virtualization/cloud,
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
Challenges in Hybrid and Federated Cloud Computing
Cloud Day 2011 KTH-SICS Cloud Innovation Center and EIT ICT Labs Kista, Sweden, September 14th, 2011 Challenges in Hybrid and Federated Cloud Computing Ignacio M. Llorente Project Director Acknowledgments
OpenNebula Open Souce Solution for DC Virtualization
13 th LSM 2012 7 th -12 th July, Geneva OpenNebula Open Souce Solution for DC Virtualization Constantino Vázquez Blanco OpenNebula.org What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision
OpenNebula Open Souce Solution for DC Virtualization
OSDC 2012 25 th April, Nürnberg OpenNebula Open Souce Solution for DC Virtualization Constantino Vázquez Blanco OpenNebula.org What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision on Virtualized
Getting Started Hacking on OpenNebula
LinuxTag 2013 Berlin, Germany, May 22nd Getting Started Hacking on OpenNebula Carlos Martín Project Engineer Acknowledgments The research leading to these results has received funding from Comunidad de
SLA BASED SERVICE BROKERING IN INTERCLOUD ENVIRONMENTS
SLA BASED SERVICE BROKERING IN INTERCLOUD ENVIRONMENTS Foued Jrad, Jie Tao and Achim Streit Steinbuch Centre for Computing, Karlsruhe Institute of Technology, Karlsruhe, Germany {foued.jrad, jie.tao, achim.streit}@kit.edu
Cloud-pilot.doc 12-12-2010 SA1 Marcus Hardt, Marcin Plociennik, Ahmad Hammad, Bartek Palak E U F O R I A
Identifier: Date: Activity: Authors: Status: Link: Cloud-pilot.doc 12-12-2010 SA1 Marcus Hardt, Marcin Plociennik, Ahmad Hammad, Bartek Palak E U F O R I A J O I N T A C T I O N ( S A 1, J R A 3 ) F I
Cloud Computing Architecture with OpenNebula HPC Cloud Use Cases
NASA Ames NASA Advanced Supercomputing (NAS) Division California, May 24th, 2012 Cloud Computing Architecture with OpenNebula HPC Cloud Use Cases Ignacio M. Llorente Project Director OpenNebula Project.
Assignment # 1 (Cloud Computing Security)
Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual
Automating Big Data Benchmarking for Different Architectures with ALOJA
www.bsc.es Jan 2016 Automating Big Data Benchmarking for Different Architectures with ALOJA Nicolas Poggi, Postdoc Researcher Agenda 1. Intro on Hadoop performance 1. Current scenario and problematic 2.
Cloud services in PL-Grid and EGI Infrastructures
1 Cloud services in PL-Grid and EGI Infrastructures J. Meizner, M. Radecki, M. Pawlik, T. Szepieniec ACK Cyfronet AGH Cracow Grid Workshop 2012, Kraków, 22.10.2012 Overview 2 Different types of Compute
OpenNebula The Open Source Solution for Data Center Virtualization
LinuxTag April 23rd 2012, Berlin OpenNebula The Open Source Solution for Data Center Virtualization Hector Sanjuan OpenNebula.org 1 What is OpenNebula? Multi-tenancy, Elasticity and Automatic Provision
THE CC1 PROJECT SYSTEM FOR PRIVATE CLOUD COMPUTING
Computer Science 13 (2) 2012 http://dx.doi.org/10.7494/csci.2012.13.2.103 J. Chwastowski R. Grzymkowski M. Kruk M. Nabożny Z. Natkaniec A. Olszewski H. Pa lka Z. Sobocińska T. Sośnicki M. Szostak P. Syktus
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
Sistemi Operativi e Reti. Cloud Computing
1 Sistemi Operativi e Reti Cloud Computing Facoltà di Scienze Matematiche Fisiche e Naturali Corso di Laurea Magistrale in Informatica Osvaldo Gervasi [email protected] 2 Introduction Technologies
OpenNebula An Innovative Open Source Toolkit for Building Cloud Solutions
Cloud Computing and its Applications 20th October 2009 OpenNebula An Innovative Open Source Toolkit for Building Cloud Solutions Distributed Systems Architecture Research Group Universidad Complutense
OpenNebula Leading Innovation in Cloud Computing Management
OW2 Annual Conference 2010 Paris, November 24th, 2010 OpenNebula Leading Innovation in Cloud Computing Management Ignacio M. Llorente DSA-Research.org Distributed Systems Architecture Research Group Universidad
Cloud Computing from an Institutional Perspective
15th April 2010 e-infranet Workshop Louvain, Belgium Next Generation Data Center Summit Cloud Computing from an Institutional Perspective Distributed Systems Architecture Research Group Universidad Complutense
Simulation-based Evaluation of an Intercloud Service Broker
Simulation-based Evaluation of an Intercloud Service Broker Foued Jrad, Jie Tao and Achim Streit Steinbuch Centre for Computing, SCC Karlsruhe Institute of Technology, KIT Karlsruhe, Germany {foued.jrad,
SUSE Cloud 2.0. Pete Chadwick. Douglas Jarvis. Senior Product Manager [email protected]. Product Marketing Manager djarvis@suse.
SUSE Cloud 2.0 Pete Chadwick Douglas Jarvis Senior Product Manager [email protected] Product Marketing Manager [email protected] SUSE Cloud SUSE Cloud is an open source software solution based on OpenStack
Design and Building of IaaS Clouds
21th May 2010 CloudViews 2010 Porto, Portugal Next Generation Data Center Summit Design and Building of IaaS Clouds Distributed Systems Architecture Research Group Universidad Complutense de Madrid This
Enabling Technologies for Cloud Computing
3th June 2010 1 st European Summit on the Future Internet Luxembourg Next Generation Data Center Summit Enabling Technologies for Cloud Computing Distributed Systems Architecture Research Group Universidad
CloudCenter Full Lifecycle Management. An application-defined approach to deploying and managing applications in any datacenter or cloud environment
CloudCenter Full Lifecycle Management An application-defined approach to deploying and managing applications in any datacenter or cloud environment CloudCenter Full Lifecycle Management Page 2 Table of
Manjrasoft Market Oriented Cloud Computing Platform
Manjrasoft Market Oriented Cloud Computing Platform Innovative Solutions for 3D Rendering Aneka is a market oriented Cloud development and management platform with rapid application development and workload
VIRTUAL RESOURCE MANAGEMENT FOR DATA INTENSIVE APPLICATIONS IN CLOUD INFRASTRUCTURES
U.P.B. Sci. Bull., Series C, Vol. 76, Iss. 2, 2014 ISSN 2286-3540 VIRTUAL RESOURCE MANAGEMENT FOR DATA INTENSIVE APPLICATIONS IN CLOUD INFRASTRUCTURES Elena Apostol 1, Valentin Cristea 2 Cloud computing
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.,
Scheduler in Cloud Computing using Open Source Technologies
Scheduler in Cloud Computing using Open Source Technologies Darshan Upadhyay Prof. Chirag Patel Student of M.E.I.T Asst. Prof. Computer Department S. S. Engineering College, Bhavnagar L. D. College of
Aneka: A Software Platform for.net-based Cloud Computing
Aneka: A Software Platform for.net-based Cloud Computing Christian VECCHIOLA a, Xingchen CHU a,b, and Rajkumar BUYYA a,b,1 a Grid Computing and Distributed Systems (GRIDS) Laboratory Department of Computer
Test of cloud federation in CHAIN-REDS project
Test of cloud federation in CHAIN-REDS project Italian National Institute of Nuclear Physics, Division of Catania - Italy E-mail: [email protected] Roberto Barbera Department of Physics and
IaaS Federation. Contrail project. IaaS Federation! Objectives and Challenges! & SLA management in Federations 5/23/11
Cloud Computing (IV) s and SPD Course 19-20/05/2011 Massimo Coppola IaaS! Objectives and Challenges! & management in s Adapted from two presentations! by Massimo Coppola (CNR) and Lorenzo Blasi (HP) Italy)!
Cloud Computing An Introduction
Cloud Computing An Introduction Distributed Systems Sistemi Distribuiti Andrea Omicini [email protected] Dipartimento di Informatica Scienza e Ingegneria (DISI) Alma Mater Studiorum Università di
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
CLEVER: a CLoud-Enabled Virtual EnviRonment
CLEVER: a CLoud-Enabled Virtual EnviRonment Francesco Tusa Maurizio Paone Massimo Villari Antonio Puliafito {ftusa,mpaone,mvillari,apuliafito}@unime.it Università degli Studi di Messina, Dipartimento di
Cluster, Grid, Cloud Concepts
Cluster, Grid, Cloud Concepts Kalaiselvan.K Contents Section 1: Cluster Section 2: Grid Section 3: Cloud Cluster An Overview Need for a Cluster Cluster categorizations A computer cluster is a group of
Scientific and Technical Applications as a Service in the Cloud
Scientific and Technical Applications as a Service in the Cloud University of Bern, 28.11.2011 adapted version Wibke Sudholt CloudBroker GmbH Technoparkstrasse 1, CH-8005 Zurich, Switzerland Phone: +41
The OpenNebula Cloud Platform for Data Center Virtualization
CloudOpen 2012 San Diego, USA, August 29th, 2012 The OpenNebula Cloud Platform for Data Center Virtualization Carlos Martín Project Engineer Acknowledgments The research leading to these results has received
Introduction to Cloud Computing
Introduction to Cloud Computing Shang Juh Kao Dept. of Computer Science and Engineering National Chung Hsing University 2011/10/27 CSE, NCHU 1 Table of Contents 1. Introduction ( 資 料 取 自 NCHC 自 由 軟 體 實
SURVEY ON THE ALGORITHMS FOR WORKFLOW PLANNING AND EXECUTION
SURVEY ON THE ALGORITHMS FOR WORKFLOW PLANNING AND EXECUTION Kirandeep Kaur Khushdeep Kaur Research Scholar Assistant Professor, Department Of Cse, Bhai Maha Singh College Of Engineering, Bhai Maha Singh
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
Manjrasoft Market Oriented Cloud Computing Platform
Manjrasoft Market Oriented Cloud Computing Platform Aneka Aneka is a market oriented Cloud development and management platform with rapid application development and workload distribution capabilities.
An Introduction to Private Cloud
An Introduction to Private Cloud As the word cloud computing becomes more ubiquitous these days, several questions can be raised ranging from basic question like the definitions of a cloud and cloud computing
cloud functionality: advantages and Disadvantages
Whitepaper RED HAT JOINS THE OPENSTACK COMMUNITY IN DEVELOPING AN OPEN SOURCE, PRIVATE CLOUD PLATFORM Introduction: CLOUD COMPUTING AND The Private Cloud cloud functionality: advantages and Disadvantages
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
Perun Modern Approach for User and Service Management
IST-Africa 2014 Conference Proceedings Paul Cunningham and Miriam Cunningham (Eds) IIMC International Information Management Corporation, 2014 ISBN: 978-1-905824-44-1 Perun Modern Approach for User and
Elastic Management of Cluster based Services in the Cloud
First Workshop on Automated Control for Datacenters and Clouds (ACDC09) June 19th, Barcelona, Spain Elastic Management of Cluster based Services in the Cloud Rafael Moreno Vozmediano, Ruben S. Montero,
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
Key Research Challenges in Cloud Computing
3rd EU-Japan Symposium on Future Internet and New Generation Networks Tampere, Finland October 20th, 2010 Key Research Challenges in Cloud Computing Ignacio M. Llorente Head of DSA Research Group Universidad
DESIGN OF A PLATFORM OF VIRTUAL SERVICE CONTAINERS FOR SERVICE ORIENTED CLOUD COMPUTING. Carlos de Alfonso Andrés García Vicente Hernández
DESIGN OF A PLATFORM OF VIRTUAL SERVICE CONTAINERS FOR SERVICE ORIENTED CLOUD COMPUTING Carlos de Alfonso Andrés García Vicente Hernández 2 INDEX Introduction Our approach Platform design Storage Security
2) Xen Hypervisor 3) UEC
5. Implementation Implementation of the trust model requires first preparing a test bed. It is a cloud computing environment that is required as the first step towards the implementation. Various tools
BSC vision on Big Data and extreme scale computing
BSC vision on Big Data and extreme scale computing Jesus Labarta, Eduard Ayguade,, Fabrizio Gagliardi, Rosa M. Badia, Toni Cortes, Jordi Torres, Adrian Cristal, Osman Unsal, David Carrera, Yolanda Becerra,
StratusLab project. Standards, Interoperability and Asset Exploitation. Vangelis Floros, GRNET
StratusLab project Standards, Interoperability and Asset Exploitation Vangelis Floros, GRNET EGI Technical Forum 2011 19-22 September 2011, Lyon, France StratusLab is co-funded by the European Community
CompatibleOne Open Source Cloud Broker Architecture Overview
CompatibleOne Open Source Cloud Broker Architecture Overview WHITE PAPER October 2012 Table of Contents Abstract 2 Background 2 Disclaimer 2 Introduction 2 Section A: CompatibleOne: Open Standards and
Grid Computing Vs. Cloud Computing
International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 6 (2013), pp. 577-582 International Research Publications House http://www. irphouse.com /ijict.htm Grid
Tuyet-Trinh Vu, Binh-Minh Nguyen, Viet-Trung Tran Hanoi University of Science and Technology. contact: [email protected]
Tuyet-Trinh Vu, Binh-Minh Nguyen, Viet-Trung Tran Hanoi University of Science and Technology contact: [email protected] Cloud computing Cloud service models Interoperability Infrastructure for
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
White Paper on CLOUD COMPUTING
White Paper on CLOUD COMPUTING INDEX 1. Introduction 2. Features of Cloud Computing 3. Benefits of Cloud computing 4. Service models of Cloud Computing 5. Deployment models of Cloud Computing 6. Examples
Open Source Cloud Computing Management with OpenNebula
CloudCamp Campus Party July 2011, Valencia Open Source Cloud Computing Management with OpenNebula Javier Fontán Muiños dsa-research.org Distributed Systems Architecture Research Group Universidad Complutense
A Survey Study on Monitoring Service for Grid
A Survey Study on Monitoring Service for Grid Erkang You [email protected] ABSTRACT Grid is a distributed system that integrates heterogeneous systems into a single transparent computer, aiming to provide
The OpenNebula Standard-based Open -source Toolkit to Build Cloud Infrastructures
Jornadas Técnicas de RedIRIS 2009 Santiago de Compostela 27th November 2009 The OpenNebula Standard-based Open -source Toolkit to Build Cloud Infrastructures Distributed Systems Architecture Research Group
Lecture 02a Cloud Computing I
Mobile Cloud Computing Lecture 02a Cloud Computing I 吳 秀 陽 Shiow-yang Wu What is Cloud Computing? Computing with cloud? Mobile Cloud Computing Cloud Computing I 2 Note 1 What is Cloud Computing? Walking
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
CLOUDFORMS Open Hybrid Cloud
Open Hybrid Cloud Cloud Evolution statt Cloud Revolution Lutz Lange, RHCA, Solution Architect, Red Hat Frank Rosendahl, RHCA, Solution Architect, DASEQ GmbH Cloud Operations Management Delivers an Open
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
EMI views on Cloud Computing
EMI views on Cloud Computing Florido Paganelli Lund University NorduGrid 2011, May 10th, Sundvolden, Norway Florido Paganelli (Lund University) EMI views on Cloud Computing NorduGrid2011 1 / 25 Outline
IBM Platform Computing Cloud Service Ready to use Platform LSF & Symphony clusters in the SoftLayer cloud
IBM Platform Computing Cloud Service Ready to use Platform LSF & Symphony clusters in the SoftLayer cloud February 25, 2014 1 Agenda v Mapping clients needs to cloud technologies v Addressing your pain
How To Compare Cloud Computing To Cloud Platforms And Cloud Computing
Volume 3, Issue 11, November 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Cloud Platforms
Infrastructure Management of Hybrid Cloud for Enterprise Users
Infrastructure Management of Hybrid Cloud for Enterprise Users Shixing Yan *, Bu Sung Lee *^, Guopeng Zhao *, Ding Ma *, Peer Mohamed * * HP Labs Singapore 1 Fusionopolis Way Singapore 138632 ^School of
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
