Combining a Virtual Grid Testbed and elearning Courseware

Size: px
Start display at page:

Download "Combining a Virtual Grid Testbed and elearning Courseware"

Transcription

1 Combining a Virtual Grid Testbed and elearning Courseware Kathryn Cassidy, Jason McCandless, Stephen Childs, John Walsh, Brian Coghlan, Declan Dagger Department of Computer Science, Trinity College Dublin Kathryn.Cassidy@cs.tcd.ie, mccandjm@cs.tcd.ie, Stephen.Childs@cs.tcd.ie, John.Walsh@cs.tcd.ie, coghlan@cs.tcd.ie, Declan.Dagger@cs.tcd.ie Abstract Training activities in realistic settings are important contributors to successful elearning. For grid courseware, however, training users on a live production infrastructure is not ideal and a dedicated teaching environment which closely replicates the live infrastructure is more desirable. We show how the priciples of virtualisation have been applied to develop a learning environment that realistically simulates the workings of a production EGEE Grid. We outline how our tools GridBuilder and TransDeploy quickly replicate grid sites with minimum effort. We also indicate how the Adaptive Personalised elearning Service (APeLS), suitably extended with grid security, can deliver adaptive courses to users with live exercises which they can perform in the virtual teaching environment. 1 Introduction Grid technologies are maturing and entering a production phase, but outside of the High Energy Physics (HEP) community there is still a dearth of knowledgeble users who can exploit the potential of Grids. To grow the grid user community will require significant investment in training and education. This need has been recognised by the grid community and many projects, such as EGEE II[8] and ICEAGE[10] contain a strong training component. elearning is well suited to grid training because of the distributed nature of the Grid and its users, and the asynchronous training demand. elearning allows learners to begin their training when and where they wish, while simultaneously reducing the overheads associated with face-to-face learning (organisation, catering, space, registration, etc.). Delivery of instruction is not sufficient, however. In order for training to be successful it should also provide opportunities for learner engagement with the course material, in particular, opportunities for learners to practice what they have learnt. Granting learners access to a production infrastructure is risky, and an isolated training infrastructure (t-infrastructure) is a more secure option.

2 We present the elgrid elearning t-infrastructure which aims to integrate elearning software and courses with a training infrastructure that closely simulates a production environment, the Grid-Ireland infrastructure. 2 Requirements We identified a number of requirements for our t-infrastructure: (a) It should have dedicated resources to guarantee fast response times as learners may need the results of one exercise before progressing to the next. (b) It should be isolated from the production Grid so that many users can be trained without compromising security. (c) It should simulate a production infrastructure as closely as possible in order to ensure that there is no additional learning curve for trained users migrating to a production infrastructure. (d) Ideally, it should be easily set up to simulate the local production infrastructure, rather than some fixed example infrastructure. (e) elearning tools should be integrated into the grid t-infrastructure in order to allow communication between the courseware and the tools used in practical exercises. It should be possible to launch these tools from within the elearning course and to capture their results for use in assessment and adaptivity. (f) The system should be easy to configure and maintain for systems adminstration staff, ideally utilising the same management tools which are already in use for production. It should also be easy for learners to use so as not to impose an additional learning curve or induce rejection by users. (g) The system should follow best-practice for elearning and use tried and tested elearning tools so that the teaching can benefit from recent advances in Learning theory and elearning technology. 3 Architecture The basic architecture of our integrated t-infrastructure solution is shown in Figure 1. A firewall server ensures that the t-infrastructure is isolated from the production Grid while providing limited connectivity where required. This machine also runs certain necessary services such as the TransDeploy tool (see Section 3.5) and an install server (Section 3.4). Additional network aliases are configured on this machine to allow the replica grid sites to connect to this machine as their default gateway, install server, etc. The replica sites are hosted as virtual machines on a number of physical servers. Grid services which are shared by all the replica sites are likewise hosted on virtual machines. The tools used in this solution are described in more detail below.

3 Fig. 1: The ELGrid t-infrastructure architecture 3.1 Virtualisation We wanted our t-infrastructure to mirror the local production infrastructure as closely as possible. The size of the Grid-Ireland infrastructure and the number of necessary services, however, means that physically replicating even part of the infrastructure would be a huge and costly undertaking. The use of virtualisation allows us to replicate a large number of grid nodes and servers, while significantly reducing hardware requirments. There are a number of virtualisation systems available for x86 architectures which could support creation of a large virtualised testbed using inexpensive off-the-shelf hardware. The system chosen for this project was Xen[12], not only because it is already used within Grid-Ireland for our testing and development infrastructure[3] and for our production infrastructure [2], but also because it has price/performance advantages over other virtualisation systems for the x86 platform. Tests conducted by Childs et al[2] and confirmed by Hardt and Berlich[9], found that Xen performs favourably compared to a reference Grid machine without Virtualisation, outperforming alternatives such as User Mode Linux, VMWare, etc. Our t-infrastructure uses eight Dell dual-processor dual-core machines, each with 8 Gigabytes of memory, running a Xen Linux Kernel. Each replica site consists of a minimum of four virtual machines: a User Interface (UI), a Compute Element (CE), a Storage Element (SE) and a Worker Node (WN). The local resource management system (LRMS) is PBS on the CE. Allowing approx 400 Megabytes of memory for the root VM (VM0) and guest VMs allows replication of up to four Grid-Ireland sites on each physical machine. This enables replication of the entire Irish grid infrastructure with very little hardware. 3.2 Network Configuration Each of the replica VMs in our elgrid t-infrastructure has a public IP address and network configuration that is identical to those used by that machine s

4 counterpart in the production Grid-Ireland infrastructure. Because of this it is necessary to completely firewall off the t-infrastructure network from the rest of the network. The elgrid firewall is a dual-homed machine with an internal network device connected to the elgrid t-infrastructure and an external device connected to the real production network. Iptables firewalling is configured to ensure that no traffic from the internal interface can accidentally be sent out onto the external network and thereby to the production network (and vice-versa). A DNS server installed on the firewall machine handles DNS for the physical elgrid machines (the Xen hosts) and queries the production Grid Ireland DNS servers for the IP addresses of grid nodes (the replica virtual machines). These addresses are then cached for subsequent use. The firewall machine has an additional network alias on its internal interface for the default gateway for each replica site. All intra-site traffic (from one machine in a particular replica site to another machine in the same site) arrives at the default gateway alias of the internal interface on the firewall machine. These packets are then routed back through the same alias on this interface. Thus the firewall routing ensures that internal packets intended for replica Grid- Ireland sites are directed to the internal network interface and not to the real production sites via the external interface. Some other services are hosted on the elgrid firewall machine rather than being replicated as VMs. The replica hosts, however, know only of the real IP addresses for these services. Network aliases are created on the elgrid firewall for the install servers for each site as these are required in order to perform the initial installation of a replica site. Once installed, NAT is used on the elgrid firewall to redirect packets directed at servers which do not exist in the elgrid network to the firewall machine where these services are hosted. The use of the real IP addresses means that we have an identical configuration to the production infrastructure. This is a tried and tested configuration and is also used for our testing and development infrastructure[3]. Using an identical setup means that we can actually use the same configuration files as those used to configure the production infrastructure, thus management and administration of our t-infrastructure can be done using the same fabric management system which we use in production, with changes to configuration files only having to be made and tested once. 3.3 The GridBuilder Tool The GridBuilder[1] tool was developed by the Computer Architecture and Grid Research Group in Trinity College Dublin. It provides an easy-to-use webbased user interface which allows the user to quickly configure and start new VMs which replicate live systems. An example of this interface is provided in Figure 2. Gridbuilder stores a library of filesystem images for standard node types, each as an independent LVM partition. Examples of these standard filesystem

5 Fig. 2: The GridBuilder tool allows fast replica VM creation. images include gridmon (test worker node (WN)), gridui (user interface (UI)), gridstore (storage element (SE)) and gridgate (site entry point (CE)). When a new virtual machine is created, GridBuilder creates a copy-on-write clone of the appropriate LVM partition. The copy-on-write feature of LVM allows clone volumes to be created which only contain changes to the base volume, thus saving disk-space. It also speeds up the cloning process. GridBuilder then mounts the new volume and modifies the configuration. The required configuration is downloaded from the fabric management system (in our case Quattor, but Yaim and LCFG are also supported). Once the filesystem volume is unmounted a Xen image is then available and ready to boot. GridBuilder then boots a Xen VM from this image and any final updates are performed by the fabric management system on the VM, again using copy-on-write. 3.4 Configuration and Management Any network with more than a few nodes should have a fabric management system to configure, update and install machines or the workload of system administration will quickly become unscalable. In grid systems this is particularly important as the sites involved can be particularly large. In Grid-Ireland we use the Quattor fabric management system [11]. All configuration is stored in each site s install server and autonomous nodes pull this configuration and update themselves. This autonomy makes the system scalable. The configuration is stored in templates, and preconfigureed templates for grid nodes are available from CERN. The hierarchical structure of quattor templates means that templates can be combined. For example, a general site template can be overridden with a machine-specific template. These templates are stored in a CVS repository on each Grid-Ireland site s install server. As previously mentioned the same configuration files are used for the pro-

6 duction grid and for and the t-infrastructure. These are accessed by the Quattor client via http and so the install server is simply a webserver which makes the Quattor templates available for download. In Grid-Ireland, all the site install servers host identical CVS repositories, so a t-infrastructure optimisation would be to have only one install server (e.g. on the firewall) and alias all the site install servers to it, and this is what we do. In order to make the Quattor profiles available via http on the elgrid firewall we use the TransDeploy tool described in section 3.5. Both the physical elgrid machines and the replica VMs are configured via Quattor. The physical machines require that a new Quattor site be configured and templates created for each machine. However, the configuration of the replica VMs does not require any work as it is possible to use the same configuration templates as those used to manage the production infrastructure. 3.5 Deployment To deploy configuration changes to Grid-Ireland the Quattor configuration templates are pushed out to the site install servers. To do this Grid-Ireland uses a deployment tool called TransDeploy [4], developed by the Computer Architecture and Grid Research Group in Trinity College Dublin. The TransDeploy tool aims to ensure consistency of sites and to minimise downtime due to upgrades. Upgrades are split into a variable-duration prepare phase and a short-duration upgrade phase, i.e. a two-phase commit, which is performed transactionally insofar as the entire upgrade is treated as one atomic operation which can either fully succeed or must be entirely rolled-back. The prepare phase checks out the Quattor templates from a central CVS repository, compiles and tests them and identifies most configuration errors. If the configuration is valid then the templates are copied to the site install servers using rsync over ssh. Only if this succeeds will TransDeploy progress to the upgrade phase where the new configuration is made live by changing a symbolic link in a directory under the site install server s webserver document root to point to the new profiles. There is one TransDeploy instance for the entire Grid-Ireland production network which copies templates out to the install servers in each site. A separate TransDeploy instance is configured for the elgrid t-infrastructure. This is installed on the t-infrastructure firewall machine and copies the templates to the elgrid site install servers, which are implemented as network aliases on the internal interface of the firewall machine. At present this gives rise to redundant deployments, but once network behaviour emulation is incorporated this will ensure realistic behaviour for student grid administrators. Alternatively one could set up separate install server VMs for each replica site. 3.6 APeLS and ACCT In collaboration with the Knowledge and Data Engineering Group (KDEG) at Trinity College Dublin, we are using advanced elearning tools for our courses

7 that incorporate recent developments in elearning technology such as adaptivity. The tools include the Adaptive Personalised elearning Service (APeLS)[5] and the Adaptive Course Construction Toolkit (ACCT)[7] developed by KDEG. APeLS is a web-services-based Adaptive Hypermedia System (AHS) which creates personalised courses at run time by adapting the content or the navigation based on the interaction of models such as Pedagogic Activity Sequence, Subject Area, Candidate Learning Resources, Learner Model, Context, etc. The system has been used in Trinity College Dublin for delivery of an undergraduate SQL course since 2000[6]. ACCT is a user-friendly tool for designing and developing personalised elearning experiences which can be delivered via APeLS. We wish to integrate the t-infrastructure with our courses to allow launching of practical exercises from within APeLS courses and to capture the results of grid jobs. In order to achieve this APeLS must be installed on a machine which is connected to the elgrid t-infrastructure. We will use the firewall machine for this purpose as it already runs a webserver which can be accessed from outside of the elgrid t-infrastructure and yet applications running on this machine will have access to the t-infrastructure. The webserver on which APeLS runs will be secured with Grid certificates so that only users posessing a valid certificate will be permitted to gain access to the courses. We will use GridSite software to handle the user authentication based on Grid certificates and will pass the user s distinguished name (DN) to APeLS as the user name, allowing single-sign-on. 4 Preliminary Results It is difficult to judge the success of the t-infrastructure without user evaluation, however, we believe that the requirements set out at the beginning of the project have largely been met. Table 1 indicates how the technologies used in the solution have helped to meet these requirements. 5 Conclusions We have shown that it is possible to create an isolated t-infrastructure which, through the use of virtualisation, can closely replicate a production EGEE Grid. By using the existing fabric management system, along with the tools Grid- Builder and TransDeploy, the replicated t-infrastructure can be implemented with minimal effort on the part of the systems administrators. Furthermore we have indicated how it is possible to use tried-and-tested elearning tools within a Grid context to allow interaction between the elearning tools and the t-infrastructure, in courses based on sound pedagogic principles. Two courses are already in development, the first is a basic Introduction to Grid course and the second is an advanced Relational Grid Monitoring Architecture (RGMA) course. We hope to evaluate the elgrid t-infrastructure early in 2007 when undergraduates at Trinity College Dublin will use these courses as part of a Virtualisation and Grid course.

8 Tab. 1: How the technologies used have met the requirements Requirement Technologies (a) Dedicated resources to guarantee QoS. (b) Isolate training testbed for security (c) Simulate a production infrastructure (d) Simulate the local production infrastructure (e) Integrate elearning and grid environment (f) Make easy to use and configure (g) Follow best-practice for elearning design Xen, Network Configuration, Quattor, TransDeploy, GridBuilder Xen, Network Configuration Xen, Network Configuration, Quattor, TransDeploy, GridBuilder Xen, Network Configuration, Quattor, TransDeploy, GridBuilder APeLS GridBuilder, TransDeploy, Quattor, APeLS ACCT and APeLS References 1. Childs, S., Coghlan, B., McCandless, J. (2006) GridBuilder: A tool for creating virtual Grid testbeds In 2nd IEEE Conference on escience and Grid computing, Amsterdam, December Childs, S., Coghlan, B., O Callaghan, D., Quigley, G., Walsh, J. (2005) A singlecomputer Grid gateway using virtual machines AINA 05, Taiwan, March, Childs, S., Coghlan, B., Walsh, J., O Callaghan, D., Quigley, G., Kenny, E. (2006) A Virtual TestGrid, or how to replicate a national Grid, Proc.ExpGrid workshop at HPDC2006, Paris, June, Coghlan, B.A., Walsh, J., O.Callaghan, D. (2005) Grid-Ireland Deployment Architecture Proc.EGC 05, Amsterdam, February, Conlan, O. (2004) The Multi-Model, Metadata driven approach to Personalised elearning Services, PhD Thesis. Trinity College Dublin. 6. Conlan, O., Wade, V. (2004) Evaluation of APeLS - An Adaptive elearning Service based on the Multi-model, Metadata-driven Approach, Third International Conference on Adaptive Hypermedia and Adaptive Web-Based Systems (AH2004) Proceedings, Eindhoven, The Netherlands, Dagger, D. (2006) Personalised Elearning Development Environments, PhD Thesis. Trinity College Dublin. 8. Enabling Grids for E-SciencE EGEE 9. Hardt, M., Berlich, R. (2005) Xen: Scientific Use Cases and Performance Comparisons, UKUUG Linux Technical Conference, Swansea UK, August 4-7, International Collaboration to Extend and Advance Grid Education ICEAGE Quattor Accessed September Xen Accessed September 2006

Deploying virtualisation in a production grid

Deploying virtualisation in a production grid Deploying virtualisation in a production grid Stephen Childs Trinity College Dublin & Grid-Ireland TERENA NRENs and Grids workshop 2 nd September 2008 www.eu-egee.org EGEE and glite are registered trademarks

More information

Figure 1: cstcdie Grid Site architecture

Figure 1: cstcdie Grid Site architecture AccessionIndex: TCD-SCSS-T.20121208.098 Accession Date: Accession By: Object name: cstcdie Grid Site Beowulf Clusters and Datastore Vintage: c.2009 Synopsis: Complex of clusters & storage (1500 cores/600

More information

Heterogeneous Grid Computing: Issues and Early Benchmarks

Heterogeneous Grid Computing: Issues and Early Benchmarks Heterogeneous Grid Computing: Issues and Early Benchmarks Eamonn Kenny 1, Brian Coghlan 1, George Tsouloupas 2, Marios Dikaiakos 2, John Walsh 1, Stephen Childs 1, David O Callaghan 1, and Geoff Quigley

More information

A virtual TestGrid or how to replicate a national Grid

A virtual TestGrid or how to replicate a national Grid A virtual TestGrid or how to replicate a national Grid Stephen Childs, Brian Coghlan, John Walsh, David O Callaghan, Geoff Quigley, Eamonn Kenny Department of Computer Science Trinity College Dublin Ireland

More information

A High Availability Solution for GRID Services

A High Availability Solution for GRID Services A High Availability Solution for GRID Services Álvaro López García 1 Mirko Mariotti 2 Davide Salomoni 3 Leonello Servoli 12 1 INFN Sezione di Perugia 2 Physics Department University of Perugia 3 INFN CNAF

More information

Veeam Cloud Connect. Version 8.0. Administrator Guide

Veeam Cloud Connect. Version 8.0. Administrator Guide Veeam Cloud Connect Version 8.0 Administrator Guide June, 2015 2015 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be reproduced,

More information

VMs at a Tier-1 site. EGEE 09, Sander Klous, Nikhef

VMs at a Tier-1 site. EGEE 09, Sander Klous, Nikhef VMs at a Tier-1 site EGEE 09, 21-09-2009 Sander Klous, Nikhef Contents Introduction Who are we? Motivation Why are we interested in VMs? What are we going to do with VMs? Status How do we approach this

More information

A single-computer Grid gateway using virtual machines

A single-computer Grid gateway using virtual machines A single-computer Grid gateway using virtual machines Stephen Childs, Brian Coghlan, David O Callaghan, Geoff Quigley, John Walsh Department of Computer Science Trinity College Dublin, Ireland Firstname.Lastname@cs.tcd.ie

More information

Application of Virtualization Technologies & CernVM. Benedikt Hegner CERN

Application of Virtualization Technologies & CernVM. Benedikt Hegner CERN Application of Virtualization Technologies & CernVM Benedikt Hegner CERN Virtualization Use Cases Worker Node Virtualization Software Testing Training Platform Software Deployment }Covered today Server

More information

Avoiding the Cost of Confusion: SQL Server Failover Cluster Instances versus Basic Availability Group on Standard Edition

Avoiding the Cost of Confusion: SQL Server Failover Cluster Instances versus Basic Availability Group on Standard Edition One Stop Virtualization Shop Avoiding the Cost of Confusion: SQL Server Failover Cluster Instances versus Basic Availability Group on Standard Edition Written by Edwin M Sarmiento, a Microsoft Data Platform

More information

Testing an Open Source installation and server provisioning tool for the INFN CNAF Tier1 Storage system

Testing an Open Source installation and server provisioning tool for the INFN CNAF Tier1 Storage system Testing an Open Source installation and server provisioning tool for the INFN CNAF Tier1 Storage system M Pezzi 1, M Favaro 1, D Gregori 1, PP Ricci 1, V Sapunenko 1 1 INFN CNAF Viale Berti Pichat 6/2

More information

XenServer Release Notes

XenServer Release Notes Version 5.5.0 Published June 2009 1.0 Edition About this document XenServer Release Notes This document provides important information about the XenServer 5.5.0 Release. Release notes specific to the supported

More information

Microsoft SQL Server

Microsoft SQL Server Microsoft SQL Server Abstract This white paper outlines the best practices for Microsoft SQL Server Failover Cluster Instance data protection with Cohesity DataPlatform. December 2017 Table of Contents

More information

Dependable services, built on group communication systems, providing fast access to huge volumes of data in distributed systems

Dependable services, built on group communication systems, providing fast access to huge volumes of data in distributed systems Dependable services, built on group communication systems, providing fast access to huge volumes of data in distributed systems PhD Thesis Extended abstract PhD Student ing. Adrian Coleșa Scientic advisor

More information

COURSE OUTLINE IT TRAINING

COURSE OUTLINE IT TRAINING CMB-207-1I Citrix XenApp and XenDesktop Fast Track Duration: 5 days Overview: This fast-paced course covers select content from training courses CXA-206 and CXD- 202 and provides the foundation necessary

More information

20533B: Implementing Microsoft Azure Infrastructure Solutions

20533B: Implementing Microsoft Azure Infrastructure Solutions 20533B: Implementing Microsoft Azure Infrastructure Solutions Course Details Course Code: Duration: Notes: 20533B 5 days This course syllabus should be used to determine whether the course is appropriate

More information

20331B: Core Solutions of Microsoft SharePoint Server 2013

20331B: Core Solutions of Microsoft SharePoint Server 2013 20331B: Core Solutions of Microsoft SharePoint Server 2013 Course Details Course Code: Duration: Notes: 20331B 5 days This course syllabus should be used to determine whether the course is appropriate

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532C: Developing Microsoft Azure Solutions Course details Course Outline Module 1: OVERVIEW OF THE MICROSOFT AZURE PLATFORM This module reviews the services available in the Azure platform and

More information

Introducing VMware Validated Designs for Software-Defined Data Center

Introducing VMware Validated Designs for Software-Defined Data Center Introducing VMware Validated Designs for Software-Defined Data Center VMware Validated Design 4.0 VMware Validated Design for Software-Defined Data Center 4.0 You can find the most up-to-date technical

More information

Scalable Computing: Practice and Experience Volume 8, Number 3, pp

Scalable Computing: Practice and Experience Volume 8, Number 3, pp Scalable Computing: Practice and Experience Volume 8, Number 3, pp. 281 290. http://www.scpe.org ISSN 1895-1767 c 2007 SWPS AN AGENT-BASED APPROACH TO GRID SERVICE MONITORING KEITH ROCHFORD, BRIAN COGHLAN

More information

Introducing VMware Validated Designs for Software-Defined Data Center

Introducing VMware Validated Designs for Software-Defined Data Center Introducing VMware Validated Designs for Software-Defined Data Center VMware Validated Design for Software-Defined Data Center 4.0 This document supports the version of each product listed and supports

More information

How to Use This Lab Manual

How to Use This Lab Manual 3 Contents How to Use This Lab Manual........................................ 5 Lab 1: Setting Up the Student System.................................. 7 Lab 2: Installing Fedora............................................

More information

Microsoft Core Solutions of Microsoft SharePoint Server 2013

Microsoft Core Solutions of Microsoft SharePoint Server 2013 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20331 - Core Solutions of Microsoft SharePoint Server 2013 Length 5 days Price $4290.00 (inc GST) Version B Overview This course will provide you with the

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Cloud Services. Introduction

Cloud Services. Introduction Introduction adi Digital have developed a resilient, secure, flexible, high availability Software as a Service (SaaS) cloud platform. This Platform provides a simple to use, cost effective and convenient

More information

SharePoint 2016 Administrator's Survival Camp

SharePoint 2016 Administrator's Survival Camp SharePoint 2016 Administrator's Survival Camp Installing and Managing SharePoint 2016 in an On -premises Environment Course Code Audience Format Length Course Description Student Prerequisites SSC2016

More information

Microsoft Azure Integration and Security. Course Code: AZ-101; Duration: 4 days; Instructorled

Microsoft Azure Integration and Security. Course Code: AZ-101; Duration: 4 days; Instructorled Microsoft Azure Integration and Security Course Code: AZ-101; Duration: 4 days; Instructorled WHAT YOU WILL LEARN This course teaches IT professionals how to discover, assess, plan and implement a migration

More information

Introducing VMware Validated Designs for Software-Defined Data Center

Introducing VMware Validated Designs for Software-Defined Data Center Introducing VMware Validated Designs for Software-Defined Data Center VMware Validated Design for Software-Defined Data Center 3.0 This document supports the version of each product listed and supports

More information

Developing ILNP. Saleem Bhatti, University of St Andrews, UK FIRE workshop, Chania. (C) Saleem Bhatti.

Developing ILNP. Saleem Bhatti, University of St Andrews, UK FIRE workshop, Chania. (C) Saleem Bhatti. Developing ILNP Saleem Bhatti, University of St Andrews, UK 2010-07-16 FIRE workshop, Chania. (C) Saleem Bhatti. 1 What is ILNP? Identifier Locator Network Protocol: http://ilnp.cs.st-andrews.ac.uk/ ILNP

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Disclaimer: I haven t gone through RHCSA/RHCE EL 7. I am preparing for upgrade of my RHCE certificate from RHCE EL4 to RHCE EL7. I don

More information

Assignment 5. Georgia Koloniari

Assignment 5. Georgia Koloniari Assignment 5 Georgia Koloniari 2. "Peer-to-Peer Computing" 1. What is the definition of a p2p system given by the authors in sec 1? Compare it with at least one of the definitions surveyed in the last

More information

Virtualization. A very short summary by Owen Synge

Virtualization. A very short summary by Owen Synge Virtualization A very short summary by Owen Synge Outline What is Virtulization? What's virtulization good for? What's virtualisation bad for? We had a workshop. What was presented? What did we do with

More information

SQA Advanced Unit specification. General information. Network Server Operating Systems. Unit code: HP2W 48. Unit purpose

SQA Advanced Unit specification. General information. Network Server Operating Systems. Unit code: HP2W 48. Unit purpose SQA Advanced Unit specification General information Unit title: Network Server Operating Systems Unit code: HP2W 48 Superclass: CB Publication date: August 2017 Source: Scottish Qualifications Authority

More information

Interoute Use Case. SQL 2016 Always On in Interoute VDC. Last updated 11 December 2017 ENGINEERED FOR THE AMBITIOUS

Interoute Use Case. SQL 2016 Always On in Interoute VDC. Last updated 11 December 2017 ENGINEERED FOR THE AMBITIOUS Interoute Use Case SQL 2016 Always On in Interoute VDC Last updated 11 December 2017 ENGINEERED FOR THE AMBITIOUS VERSION HISTORY Version Date Title Author 1 11 / 12 / 17 SQL 2016 Always On in Interoute

More information

VMware Horizon 7 Administration Training

VMware Horizon 7 Administration Training VMware Horizon 7 Administration Training Course Course Duration : 20 Working Days Class Duration : 3 hours per day Fast Track: - Course duration 10days (Per day 8 hours) Get Fee Details Module 1: Introduction

More information

Overview. Prerequisites. VMware vsphere 6.5 Optimize, Upgrade, Troubleshoot

Overview. Prerequisites. VMware vsphere 6.5 Optimize, Upgrade, Troubleshoot VMware vsphere 6.5 Optimize, Upgrade, Troubleshoot Course Name Format Course Books vsphere Version Delivery Options Remote Labs Max Attendees Requirements Lab Time Availability May, 2017 Suggested Price

More information

ElasterStack 3.2 User Administration Guide - Advanced Zone

ElasterStack 3.2 User Administration Guide - Advanced Zone ElasterStack 3.2 User Administration Guide - Advanced Zone With Advance Zone Configuration TCloud Computing Inc. 6/22/2012 Copyright 2012 by TCloud Computing, Inc. All rights reserved. This document is

More information

Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate

Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate White Paper PlateSpin Transformation Manager PlateSpin Migrate Best Practices for Migrating Servers to Microsoft Azure with PlateSpin Migrate Updated for PlateSpin Transformation Manager 1.1 and PlateSpin

More information

Course Outline. Introduction to Azure for Developers Course 10978A: 5 days Instructor Led

Course Outline. Introduction to Azure for Developers Course 10978A: 5 days Instructor Led Introduction to Azure for Developers Course 10978A: 5 days Instructor Led About this course This course offers students the opportunity to take an existing ASP.NET MVC application and expand its functionality

More information

where the Web was born Experience of Adding New Architectures to the LCG Production Environment

where the Web was born Experience of Adding New Architectures to the LCG Production Environment where the Web was born Experience of Adding New Architectures to the LCG Production Environment Andreas Unterkircher, openlab fellow Sverre Jarp, CTO CERN openlab Industrializing the Grid openlab Workshop

More information

MyCloud Computing Business computing in the cloud, ready to go in minutes

MyCloud Computing Business computing in the cloud, ready to go in minutes MyCloud Computing Business computing in the cloud, ready to go in minutes In today s dynamic environment, businesses need to be able to respond quickly to changing demands. Using virtualised computing

More information

Assignment List for CIS 242 Microsoft LAN Administration II. Winter 2016 (Revised 1/1/16)

Assignment List for CIS 242 Microsoft LAN Administration II. Winter 2016 (Revised 1/1/16) Assignment List-1 Assignment List for CIS 242 Microsoft LAN Administration II Winter 2016 (Revised 1/1/16) Getting Started Module (Orientation) - Course Syllabus, Assignments List, and other Getting Started

More information

Oracle for administrative, technical and Tier-0 mass storage services

Oracle for administrative, technical and Tier-0 mass storage services Oracle for administrative, technical and Tier-0 mass storage services openlab Major Review Meeting 29 September 2009 Lucia Moreno Lopez, Carlos Garcia Fernandez (presenter), Ruben Domingo Gaspar Aparicio,

More information

Cisco TelePresence VCS Cluster Creation and Maintenance

Cisco TelePresence VCS Cluster Creation and Maintenance Cisco TelePresence VCS Cluster Creation and Maintenance Deployment Guide Cisco VCS X8.5 Cisco TMS 13.2 or later December 2014 Contents Introduction 4 Prerequisites 5 Upgrading an X7.1 or later cluster

More information

Virtualization. Michael Tsai 2018/4/16

Virtualization. Michael Tsai 2018/4/16 Virtualization Michael Tsai 2018/4/16 What is virtualization? Let s first look at a video from VMware http://www.vmware.com/tw/products/vsphere.html Problems? Low utilization Different needs DNS DHCP Web

More information

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus Linux system administrator-i Unit 1: Get Started with the GNOME Graphical Desktop Objective: Get started with GNOME and edit text files with gedit Unit 2: Manage Files Graphically with Nautilus Objective:

More information

Audience Profile Experienced system administrators and system integrators responsible for implementing desktop solutions

Audience Profile Experienced system administrators and system integrators responsible for implementing desktop solutions [VMHICMAVFTV7.3]: VMware Horizon 7: Install, Configure, Manage plus App Volumes Fast Track [V7.3] Length Delivery Method : 5 Days : Instructor-led (Classroom) Course Overview This intensive five-day, extended-hours

More information

Middleware-Tests with our Xen-based Testcluster

Middleware-Tests with our Xen-based Testcluster Tier-2 meeting March 3, 2008 1 Introduction Overview of the Testcluster Overview of the installed Software Xen 2 Main Original Usage of the Testcluster Present Activities The Testcluster Future Activities

More information

MCSA Windows Server A Success Guide to Prepare- Microsoft Installing and Configuring Windows Server edusum.com

MCSA Windows Server A Success Guide to Prepare- Microsoft Installing and Configuring Windows Server edusum.com 70-410 MCSA Windows Server 2012 A Success Guide to Prepare- Microsoft Installing and Configuring Windows Server 2012 edusum.com Table of Contents Introduction to 70-410 Exam on Installing and Configuring

More information

Course Outline. Developing Microsoft Azure Solutions Course 20532C: 4 days Instructor Led

Course Outline. Developing Microsoft Azure Solutions Course 20532C: 4 days Instructor Led Developing Microsoft Azure Solutions Course 20532C: 4 days Instructor Led About this course This course is intended for students who have experience building ASP.NET and C# applications. Students will

More information

ISTITUTO NAZIONALE DI FISICA NUCLEARE

ISTITUTO NAZIONALE DI FISICA NUCLEARE ISTITUTO NAZIONALE DI FISICA NUCLEARE Sezione di Perugia INFN/TC-05/10 July 4, 2005 DESIGN, IMPLEMENTATION AND CONFIGURATION OF A GRID SITE WITH A PRIVATE NETWORK ARCHITECTURE Leonello Servoli 1,2!, Mirko

More information

OpenManage Server Assistant 8.x

OpenManage Server Assistant 8.x Using Dell OpenManage Server Assistant 8.x to Optimize Installation of Dell PowerEdge Servers Dell OpenManage Server Assistant 8.x provides features designed to improve operating system (OS) installation

More information

[MS10974B]: Deploying and Migrating Windows Servers

[MS10974B]: Deploying and Migrating Windows Servers [MS10974B]: Deploying and Migrating Windows Servers Length : 3 days Audience(s) : IT Professionals Level : 300 Technology : Windows Server 2012 Delivery Method : Instructor-led (Classroom) Course Overview

More information

Upgrading Your Skills to MCSA: Windows Server 2016

Upgrading Your Skills to MCSA: Windows Server 2016 Upgrading Your Skills to MCSA: Windows Server 2016 Audience Profile: Candidates for this exam are IT professionals who implement the Windows Server 2016 core infrastructure services. Candidates have already

More information

ELFms industrialisation plans

ELFms industrialisation plans ELFms industrialisation plans CERN openlab workshop 13 June 2005 German Cancio CERN IT/FIO http://cern.ch/elfms ELFms industrialisation plans, 13/6/05 Outline Background What is ELFms Collaboration with

More information

EMC Business Continuity for Microsoft Applications

EMC Business Continuity for Microsoft Applications EMC Business Continuity for Microsoft Applications Enabled by EMC Celerra, EMC MirrorView/A, EMC Celerra Replicator, VMware Site Recovery Manager, and VMware vsphere 4 Copyright 2009 EMC Corporation. All

More information

IBM Data Protection for Virtual Environments: Extending IBM Spectrum Protect Solutions to VMware and Hyper-V Environments

IBM Data Protection for Virtual Environments: Extending IBM Spectrum Protect Solutions to VMware and Hyper-V Environments The Challenges ESG Lab Review IBM Data Protection for Virtual Environments: Extending IBM Spectrum Protect Solutions to VMware and Hyper-V Environments Date: August 2015 Author: Vinny Choinski, Senior

More information

Developing Microsoft Azure Solutions (MS 20532)

Developing Microsoft Azure Solutions (MS 20532) Developing Microsoft Azure Solutions (MS 20532) COURSE OVERVIEW: This course is intended for students who have experience building ASP.NET and C# applications. Students will also have experience with the

More information

DOWNLOAD PDF SQL SERVER 2012 STEP BY STEP

DOWNLOAD PDF SQL SERVER 2012 STEP BY STEP Chapter 1 : Microsoft SQL Server Step by Step - PDF Free Download - Fox ebook Your hands-on, step-by-step guide to building applications with Microsoft SQL Server Teach yourself the programming fundamentals

More information

Andrea Sciabà CERN, Switzerland

Andrea Sciabà CERN, Switzerland Frascati Physics Series Vol. VVVVVV (xxxx), pp. 000-000 XX Conference Location, Date-start - Date-end, Year THE LHC COMPUTING GRID Andrea Sciabà CERN, Switzerland Abstract The LHC experiments will start

More information

Work-ready skills in Business, Administration and IT

Work-ready skills in Business, Administration and IT Work-ready skills in Business, Administration and IT A guide for centres We believe in learning At the core of everything we do is the desire to make a measurable impact on improving people s lives through

More information

20532D: Developing Microsoft Azure Solutions

20532D: Developing Microsoft Azure Solutions 20532D: Developing Microsoft Azure Solutions Course Details Course Code: Duration: Notes: 20532D 5 days Elements of this syllabus are subject to change. About this course This course is intended for students

More information

The OnApp Cloud Platform

The OnApp Cloud Platform The OnApp Cloud Platform Everything you need to sell cloud, dedicated, CDN, storage & more 286 Cores / 400 Cores 114 Cores 218 10 86 20 The complete cloud platform for service providers OnApp software

More information

Operation of Site Running StratusLab toolkit v1.0

Operation of Site Running StratusLab toolkit v1.0 Operation of Site Running StratusLab toolkit v1.0 Evangelos Floros, Charles Loomis, Christophe Blanchet, David O Callaghan To cite this version: Evangelos Floros, Charles Loomis, Christophe Blanchet, David

More information

Horizon Console Administration. 13 DEC 2018 VMware Horizon 7 7.7

Horizon Console Administration. 13 DEC 2018 VMware Horizon 7 7.7 Horizon Console Administration 13 DEC 2018 VMware Horizon 7 7.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

ITT Technical Institute. NT1230T Client-Server Networking I Onsite Course SYLLABUS

ITT Technical Institute. NT1230T Client-Server Networking I Onsite Course SYLLABUS ITT Technical Institute NT1230T Client-Server Networking I Onsite Course SYLLABUS Credit hours: 4.5 Contact/Instructional hours: 67 (41 Theory Hours, 26 Lab Hours) Prerequisite(s) and/or Corequisite(s):

More information

vcenter Server Installation and Setup Update 1 Modified on 30 OCT 2018 VMware vsphere 6.7 vcenter Server 6.7

vcenter Server Installation and Setup Update 1 Modified on 30 OCT 2018 VMware vsphere 6.7 vcenter Server 6.7 vcenter Server Installation and Setup Update 1 Modified on 30 OCT 2018 VMware vsphere 6.7 vcenter Server 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3

Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3 Upgrading from TrafficShield 3.2.X to Application Security Module 9.2.3 Introduction Preparing the 3.2.X system for the upgrade Installing the BIG-IP version 9.2.3 software Licensing the software using

More information

Grid services. Enabling Grids for E-sciencE. Dusan Vudragovic Scientific Computing Laboratory Institute of Physics Belgrade, Serbia

Grid services. Enabling Grids for E-sciencE. Dusan Vudragovic Scientific Computing Laboratory Institute of Physics Belgrade, Serbia Grid services Dusan Vudragovic dusan@phy.bg.ac.yu Scientific Computing Laboratory Institute of Physics Belgrade, Serbia Sep. 19, 2008 www.eu-egee.org Set of basic Grid services Job submission/management

More information

Planning and Administering SharePoint 2016

Planning and Administering SharePoint 2016 Planning and Administering SharePoint 2016 20339-1; 5 Days; Instructor-led Course Description This five-day course will provide you with the knowledge and skills to plan and administer a Microsoft SharePoint

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Grid-wide Intrusion Detection

Grid-wide Intrusion Detection Grid-wide Intrusion Detection Stuart Kenny and Brian Coghlan Trinity College Dublin, Ireland email: [stuart.kenny, coghlan]@cs.tcd.ie phone: (+353 1) 6081797, fax: (+353 1) 6772204 Abstract We describe

More information

Architecture and Governance with SharePoint for Internet Sites. Ashish Bahuguna Kartik Shah

Architecture and Governance with SharePoint for Internet Sites. Ashish Bahuguna Kartik Shah Architecture and Governance with SharePoint for Internet Sites Ashish Bahuguna ashish.bauguna@bitscape.com Kartik Shah kartik.shah@bitscape.com Agenda Web Content Management Architecture Information Architecture

More information

Best Practices for Virtualizing Active Directory

Best Practices for Virtualizing Active Directory Best Practices for Virtualizing Active Directory Breakout Session AP01 Chris Skinner Senior Technical Instructor,VMware, Inc. February 25, 2009 Disclaimer This session may contain product features that

More information

10 Steps to Virtualization

10 Steps to Virtualization AN INTEL COMPANY 10 Steps to Virtualization WHEN IT MATTERS, IT RUNS ON WIND RIVER EXECUTIVE SUMMARY Virtualization the creation of multiple virtual machines (VMs) on a single piece of hardware, where

More information

CMB-207-1I Citrix Desktop Virtualization Fast Track

CMB-207-1I Citrix Desktop Virtualization Fast Track Page1 CMB-207-1I Citrix Desktop Virtualization Fast Track This fast-paced course covers select content from training courses CXA-206: Citrix XenApp 6.5 Administration and CXD-202: Citrix XenDesktop 5 Administration

More information

Cisco UCS C-Series IMC Emulator Quick Start Guide. Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9

Cisco UCS C-Series IMC Emulator Quick Start Guide. Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9 Cisco UCS C-Series IMC Emulator Quick Start Guide Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9 Revised: October 6, 2017, Cisco IMC Emulator Overview About

More information

Infrastructure as a Service (IaaS) Compute with Storage and Backup PRICING DOCUMENT

Infrastructure as a Service (IaaS) Compute with Storage and Backup PRICING DOCUMENT Infrastructure as a Service (IaaS) Compute with Storage and Backup PRICING DOCUMENT Contents 1 Cloud+ IaaS Pricing...2 1.1 Service Pricing Guide... Error! Bookmark not defined. 1.2 Cloud+ Networking Pricing...

More information

Azure Development Course

Azure Development Course Azure Development Course About This Course This section provides a brief description of the course, audience, suggested prerequisites, and course objectives. COURSE DESCRIPTION This course is intended

More information

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server How Parallels RAS Enhances Microsoft RDS White Paper Parallels Remote Application Server Table of Contents Introduction... 3 Overview of Microsoft Remote Desktop Services... 3 Microsoft RDS Pain Points...

More information

Systems Software. Level 6 L Module Descriptor

Systems Software. Level 6 L Module Descriptor The Further Education and Training Awards Council (FETAC) was set up as a statutory body on 11 June 2001 by the Minister for Education and Science. Under the Qualifications (Education & Training) Act,

More information

Figure 1: VRengine (left rack)

Figure 1: VRengine (left rack) AccessionIndex: TCD-SCSS-T.20121208.097 Accession Date: Accession By: Object name: VRengine Vintage: c.2005 Synopsis: 9-node virtual reality engine using 600MB/s SCI 2-d toroidal interconnect. Description:

More information

Online data storage service strategy for the CERN computer Centre G. Cancio, D. Duellmann, M. Lamanna, A. Pace CERN, Geneva, Switzerland

Online data storage service strategy for the CERN computer Centre G. Cancio, D. Duellmann, M. Lamanna, A. Pace CERN, Geneva, Switzerland Online data storage service strategy for the CERN computer Centre G. Cancio, D. Duellmann, M. Lamanna, A. Pace CERN, Geneva, Switzerland Abstract. The Data and Storage Services group at CERN is conducting

More information

Course CXS-203 Citrix XenServer 6.0 Administration

Course CXS-203 Citrix XenServer 6.0 Administration Course CXS-203 Citrix XenServer 6.0 Administration Overview In the Citrix XenServer 6.0 classroom training course, students are provided the foundation necessary to effectively install, configure, administer,

More information

VMware vsphere 6.5 Boot Camp

VMware vsphere 6.5 Boot Camp Course Name Format Course Books 5-day, 10 hour/day instructor led training 724 pg Study Guide fully annotated with slide notes 243 pg Lab Guide with detailed steps for completing all labs 145 pg Boot Camp

More information

BlueCat Training Services BlueCat Fundamentals elearning Suite Course Outline

BlueCat Training Services BlueCat Fundamentals elearning Suite Course Outline BlueCat Training Services empower your staff with hands-on training that keeps pace with the design and deployment of your BlueCat solution. BlueCat experts design distinct learning paths to address the

More information

VMware vsphere Data Protection Evaluation Guide REVISED APRIL 2015

VMware vsphere Data Protection Evaluation Guide REVISED APRIL 2015 VMware vsphere Data Protection REVISED APRIL 2015 Table of Contents Introduction.... 3 Features and Benefits of vsphere Data Protection... 3 Requirements.... 4 Evaluation Workflow... 5 Overview.... 5 Evaluation

More information

Planning and Administering SharePoint 2016 ( A)

Planning and Administering SharePoint 2016 ( A) Planning and Administering SharePoint 2016 (20339-1A) Duration: 5 Days Price: $895 Delivery Option: Attend via MOC On-Demand Students Will Learn Describing the key features of SharePoint 2016. Designing

More information

20745B: Implementing a Software- Defined DataCenter Using System Center Virtual Machine Manager

20745B: Implementing a Software- Defined DataCenter Using System Center Virtual Machine Manager 20745B: Implementing a Software- Defined DataCenter Using System Center Virtual Machine Manager Duration: 5 days; Instructor-led Familiarity with Windows Server and Windows Server administration An understanding

More information

Microsoft Office SharePoint Server 2007

Microsoft Office SharePoint Server 2007 Microsoft Office SharePoint Server 2007 Enabled by EMC Celerra Unified Storage and Microsoft Hyper-V Reference Architecture Copyright 2010 EMC Corporation. All rights reserved. Published May, 2010 EMC

More information

AMGA metadata catalogue system

AMGA metadata catalogue system AMGA metadata catalogue system Hurng-Chun Lee ACGrid School, Hanoi, Vietnam www.eu-egee.org EGEE and glite are registered trademarks Outline AMGA overview AMGA Background and Motivation for AMGA Interface,

More information

vcenter Server Installation and Setup Modified on 11 MAY 2018 VMware vsphere 6.7 vcenter Server 6.7

vcenter Server Installation and Setup Modified on 11 MAY 2018 VMware vsphere 6.7 vcenter Server 6.7 vcenter Server Installation and Setup Modified on 11 MAY 2018 VMware vsphere 6.7 vcenter Server 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

SQA Advanced Unit specification: general information

SQA Advanced Unit specification: general information SQA Advanced Unit specification: general information Unit title: Routing Technology Unit code: HP1J 48 Superclass: CB Publication date: August 2017 Source: Scottish Qualifications Authority Version: 01

More information

Logical Operations Certified Virtualization Professional (CVP) VMware vsphere 6.0 Level 2 Exam CVP2-110

Logical Operations Certified Virtualization Professional (CVP) VMware vsphere 6.0 Level 2 Exam CVP2-110 Logical Operations Certified Virtualization Professional (CVP) VMware vsphere 6.0 Level 2 Exam CVP2-110 Exam Information Candidate Eligibility: The Logical Operations Certified Virtualization Professional

More information

"Charting the Course... MOC /2: Planning, Administering & Advanced Technologies of SharePoint Course Summary

Charting the Course... MOC /2: Planning, Administering & Advanced Technologies of SharePoint Course Summary Description Course Summary This five-day course will provide you with the knowledge and skills to plan and administer a Microsoft environment. The course teaches you how to deploy, administer, and troubleshoot

More information

ONTAP 9 Cluster Administration. Course outline. Authorised Vendor e-learning. Guaranteed To Run. DR Digital Learning. Module 1: ONTAP Overview

ONTAP 9 Cluster Administration. Course outline. Authorised Vendor e-learning. Guaranteed To Run. DR Digital Learning. Module 1: ONTAP Overview ONTAP 9 Cluster Administration Course Code: Duration: 3 Days Product Page: https://digitalrevolver.com/product/ontap-9-cluster-administration-2/ This 3-day, instructor led course uses lecture and hands-on

More information

Programming model and implementation for processing and. Programs can be automatically parallelized and executed on a large cluster of machines

Programming model and implementation for processing and. Programs can be automatically parallelized and executed on a large cluster of machines A programming model in Cloud: MapReduce Programming model and implementation for processing and generating large data sets Users specify a map function to generate a set of intermediate key/value pairs

More information

EGEE and Interoperation

EGEE and Interoperation EGEE and Interoperation Laurence Field CERN-IT-GD ISGC 2008 www.eu-egee.org EGEE and glite are registered trademarks Overview The grid problem definition GLite and EGEE The interoperability problem The

More information

Build Cloud like Rackspace with OpenStack Ansible

Build Cloud like Rackspace with OpenStack Ansible Build Cloud like Rackspace with OpenStack Ansible https://etherpad.openstack.org/p/osa-workshop-01 Jirayut Nimsaeng DevOps & Cloud Architect 2nd Cloud OpenStack-Container Conference and Workshop 2016 Grand

More information