Virtual Cloud Service System for Building Research and Educational Applications over Inter-Cloud environments. Atsuko Takefusa

Size: px
Start display at page:

Download "Virtual Cloud Service System for Building Research and Educational Applications over Inter-Cloud environments. Atsuko Takefusa"

Transcription

1 Virtual Cloud Service System for Building Research and Educational s over Inter-Cloud environments Atsuko Takefusa National Institute of Informatics (NII) This work was partly supported by JST CREST Grant Number JPMJCR1501, Japan. 1

2 Inter-Cloud Computing Inter-Cloud is a new computing paradigm. Utilizes geographically distributed resources provided by multiple cloud data centers. Enables the implementation of performance-assured, highly available and fault-tolerant applications. Data locality Performance assurance job Disaster recovery Avoiding cloud vender lock-in Load balancing 2

3 Issues for Inter-Cloud Computing Security and Performance of inter-cloud network. Difficult to ensure security of networks between multiple clouds over the public Internet. The performance of Internet is unstable and limited. High performance R&E network can improve them. Difficulty of building an application environment. Requires knowledge about not only the target applications, but also cloud APIs and optimization of cloud resources. Instance types, cost, OS/kernel/library versions, network configuration, etc. Performance tuning in multiple cloud environments is not easy for general researchers or faculty. 3

4 SINET, Japanese R&E Network SINET is a Japanese R&E network operated by NII. SINET5 allows construction of a high performance inter-cloud environment. Fully meshed 100-Gbps lines among all prefectures. High performance international links. Secure L2/L3 VPN services. Direct connections to cloud datacenters. AWS, Azure, etc. : SINET router : Domestic line (100Gbps or more) : International line (100Gbps) : International line (10Gbps) To Europe Sapporo Fukuoka Osaka Tokyo To US To Asia 4

5 Issues for Inter-Cloud Computing Security and Performance of inter-cloud network. Difficult to ensure security of networks between multiple clouds over the public Internet. The performance of Internet is unstable and limited. Difficulty of building an application environment. Requires knowledge about not only the target applications, but also cloud APIs and optimization of cloud resources. Instance types, cost, OS/kernel/library versions, network configuration, etc. Performance tuning in multiple cloud environments is not easy for general researchers or faculty. 5

6 Virtual Cloud Service System (VCSS) Propose Virtual Cloud Service System (VCSS) [CloudCom2017]. Aims to support academic users to use research and educational applications over clouds via R&E networks. Allows users to build and operate an effective application environment using Jupyter Notebook. Galaxy Template VCSS User (VC Administrator) Galaxy Users VCP system VCP Manager Unit: galaxy Unit: galaxy-compute Unit: compute VC Controller GW VCSS App: Galaxy +Slurmctld BC NFS Server BM disk node #1 App: Slurmd BC BM Private Cloud chiba node #2 App: Slurmd BC BM NFS Client Scale-out VPN over SINET5 node #n App: Slurmd BC VM Public Cloud: node #n+1 App: Slurmd BC VM 6

7 Virtual Cloud Service System (VCSS) Templates Cluster Cluster L2/3 Net L2/3 Net L2 Overlay L2 Overlay Virtual Cloud Provider (VCP) BM BM VM VM BM BM VM VM High Performance R&E Network (e.g., SINET5) Cloud Provider Cloud Provider Cloud Provider Cloud Provider OpenStack AWS Azure 7

8 Virtual Cloud Service System (VCSS) Virtual Cloud Provider (VCP) middleware Enables easy deployment of computing infrastructure called virtual cloud (VC) using Docker container. Secure connections between remote cloud data centers. Abstracts different cloud APIs and provides a service I/F to control a VC deployed over multiple clouds. Templates Provides Jupyter-based procedure manuals and a management environment for typical research and educational applications. Virtual Cloud Provider (VCP) BM BM VM VM BM BM VM VM Cloud Provider Templates Cluster Cluster L2/3 Net L2/3 Net L2 Overlay L2 Overlay High Performance R&E Network (e.g., SINET5) Cloud Provider Cloud Provider Cloud Provider OpenStack AWS Azure 8

9 ) () ) ( 9

10 Virtual Cloud (VC) deployed by VCP VCP composes a VC in Docker-in-Docker manner. Base containers configure VM/BM and provide monitoring functionalities for VC. Users can deploy application containers using existing images provided by each community. app bins/libs Container Constructs secure inter-datacenter networks. OS (kernel) app bins/libs Container VCP Base Container Hardware / VM LAN VLAN SINET5/R&E Network L2VPLS LAN VLAN G W IPSec tunnel Internet G W 10

11 VCP Performance: iperf3 Throughput Better Two m4.large/r4.large nodes in AWS m4.large: 450 Mbps (EBS BW) r4.large: 10G NIC Throughput [Mbps] host net=host net=ipvlan net=bridge net=overlay Capped by VM NIC performance Throughput [Mbps] w/ EN show good performance and VCP overhead is slightly. Better w/o EN show low performance 0 EN: Enhanced Networking m4.large w/o EN m4.large w/ EN m4.large w/ VCP, EN 0 r4.large w/o EN r4.large w/ EN r4.large w/ VCP, EN Default is w/o EN and images w/ EN for some instances not provided. VCP allows users to use optimized communication environments easily. 11

12 VCP Performance: HPL Performance Four m4.large/r4.large nodes w/ EN in AWS host net=host net=ipvlan net=overlay VCP net=host VCP net=ipvlan VCP net=overlay Better Performance [Gflops] host 1-tier VCP host 1-tier VCP host 1-tier VCP host 1-tier VCP host 1-tier VCP 0 m4.large r4.large m4.large r4.large r4.large Matrix size Computing performance is decreasing due to the container overheads, but it is acceptable. 12

13 VCP Performance: Inter-Cloud iperf3 Throughput Base container on BM Base container on r4.large NII Cloud in Chiba SINET5 VCP IGW in Tokyo SINET5 IPSec over Internet AWS Tokyo Better Throughput [Mbps] IPSec over Internet SINET SINET5 provides a high-performance communication environment IPSec throughput saturates around 400Mbps Transfer data size [Mbytes] 13

14 VCP abstracts different cloud provider APIs. Utilizes Terraform to control resources provided by each provider. Supports major cloud provider APIs. Allows to implement a provider plug-in. Provides REST API. VCP Service Interfaces User can describe configuration of VC in a YAML-based configuration file (CCI) Also provides user-friendly I/F. Python-based VCP SDK and a Jupyter Notebook environment. Jupyter Notebook Template VCP SDK REST I/F VC Controller Terraform POST + CCI VCP API A API B API C Cloud A Cloud B Cloud C OpenStack, AWS, Azure, etc. 14

15 VCP SDK Pseude-code of VCP SDK # initialize a VC vcp_accesskey = "KEY_FOR_TEST001 my_vc_name = "my_vc vc = VcpSDK(vcp_accesskey, my_vc_name) # specify the node flavor (performance) spec = vc.spec.find( aws, small ) # provision a node nodes = vc.unit.create( sample_server, spec) # cleanup vc # vc.cleanup() Example of VCP SDK property file # VC Controller address vcc_host = ' ### Default AWS settings aws_access_key= AWS_access_key aws_secret_key="aws_secret_key aws_region="ap-northeast-1" ### Default Azure settings azure_subscription_id= Azure_subscription_ID : Node flavors for each cloud are defined in advance in VCP SDK. User can overwrite each parameter. Example of generated CCI - vc: name: my_vc - unit: name: sample_server image: vcp/base:1.0 num: 1 cloud_provider: aws cloud_params: access_key: AWS_access_key instance-type: t2.small region: ap-northeast-1 secret_key: ' AWS_secret_key disk_size: 20 15

16 16

17 Provides Jupyter-based procedure manuals and a management environment for typical research and educational applications. Jupyter is a python-based coding and documentation environment via web interface. NII has been developing extensions for collaborative operation of infrastructure. We have been developing them in cooperation with each app community. Templates Templates Cluster Virtual Cloud Provider (VCP) Cluster L2/3 Net L2/3 Net L2 Overlay L2 Overlay BM BM VM VM BM BM VM VM High Performance R&E Network (e.g., SINET5) Cloud Provider Cloud Provider Cloud Provider Cloud Provider OpenStack AWS Azure 17

18 HPC Template Supports construction of an HPC cluster system using OpenHPC. LMS Template Builds and maintains a Moodle-based learning management system. VDI Template Builds a scalable virtual desktop infrastructure (VDI) using Apache Guacamole. Genome Analysis Template Constructs genome analysis environment using Galaxy workflow tool. Courseware Template Templates Galaxy Provides courseware and its contents such as TensorFlow and Elasticsearch. 18

19 An Example: HPC Template Outline of HPC Template Parameter settings Resource Allocation Network configuration of application containers Installation of HPC libraries User account settings Installation of optional packages Execution of benchmark programs 19

20 20

21 Demonstration of Scale-out for Galaxy VC 21

22 Summary Propose Virtual Cloud Service System (VCSS). Consists of the inter-cloud middleware, Virtual Cloud Provider (VCP) and Templates. Aims to support academic users to use research and educational applications over clouds via R&E networks. Allows users to build and operate an effective application environment using Jupyter Notebook. Future work is international collaboration. Deployment of an experimental environment over international inter-cloud resources using VCP and NSI testbed. 22

23 Software Defined Experimental Env by VCP We are working on on-demand construction of international experimental environment over SINET, JGN and Pacific Wave. RISE Dojima JGN RISE Tokyo Pacific Wave PRAGMA- ENT C C Minio JGN Dojima JGN Tokyo PW Seattle NAIST SINET VLAN3 NSI-enabled network C C Minio SINET Dojima VLAN2 SINET Tokyo VLAN4 PW LA Osaka Univ. VLAN1 VLAN0 NSI/L2OD on-demand VLAN C C Minio C PRAGMA-ENT static VLAN Static VLAN BC (Base Container) C Minio BC2 BGP OVS BC1 VCP System AWS Tokyo US UCSD BGP App ( Container) NII Chiba NII Tokyo 23

BUILDING OF A DISASTER RECOVERY FRAMEWORK FOR E-LEARNING ENVIRONMENT USING PRIVATE CLOUD COLLABORATION

BUILDING OF A DISASTER RECOVERY FRAMEWORK FOR E-LEARNING ENVIRONMENT USING PRIVATE CLOUD COLLABORATION BUILDING OF A DISASTER RECOVERY FRAMEWORK FOR E-LEARNING ENVIRONMENT USING PRIVATE CLOUD COLLABORATION Satoshi Togawa 1 and Kazuhide Kanenishi 2 1 Faculty of Management and Information Science, Shikoku

More information

Supporting Japanese Academic Community in Use of Cloud Computing

Supporting Japanese Academic Community in Use of Cloud Computing 1 Supporting Japanese Academic Community in Use of Cloud Computing Kento Aida National Institute of Informatics National Institute of Informatics (NII) 2 The National Institute of Informatics (NII) seeks

More information

Experiences and challenges in the development of the JASMIN cloud service for the environmental science community

Experiences and challenges in the development of the JASMIN cloud service for the environmental science community JASMIN (STFC/Stephen Kill) Experiences and challenges in the development of the JASMIN cloud service for the environmental science community ECMWF Visualisa-on in Meteorology Week, 28 September 2015 Philip

More information

Cloud Computing #8 - Datacenter OS. Johan Eker

Cloud Computing #8 - Datacenter OS. Johan Eker Cloud Computing #8 - Datacenter OS Johan Eker Outline What is a Datacenter OS? OpenStack Kubernetes Resource Management What is an OS? What is an OS? Manage hardware resources such as CPU, RAM, disk, I/O,

More information

Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading

Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading Requirement and driving forces multi-site cloud Along with the increasing popularity and wide adoption of Openstack as the de facto

More information

Boas Betzler. Planet. Globally Distributed IaaS Platform Examples AWS and SoftLayer. November 9, 2015. 20014 IBM Corporation

Boas Betzler. Planet. Globally Distributed IaaS Platform Examples AWS and SoftLayer. November 9, 2015. 20014 IBM Corporation Boas Betzler Cloud IBM Distinguished Computing Engineer for a Smarter Planet Globally Distributed IaaS Platform Examples AWS and SoftLayer November 9, 2015 20014 IBM Corporation Building Data Centers The

More information

Ryu SDN Framework What weʼ ve learned Where weʼ ll go

Ryu SDN Framework What weʼ ve learned Where weʼ ll go Ryu SDN Framework What weʼ ve learned Where weʼ ll go FUJITA Tomonori NTT Software Innovation Center Ryu Project lead 2014.11.14 NTT Ryu team goal Change the networking industry by Open Source Software

More information

ArcGIS for Server in the Cloud

ArcGIS for Server in the Cloud Esri Developer Summit March 8 11, 2016 Palm Springs, CA ArcGIS for Server in the Cloud Cherry Lin, Nikhil Shampur, and Derek Law March 10, 2016 Quick Survey 1. How many attendees are using the Cloud today?

More information

Assignment # 1 (Cloud Computing Security)

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

More information

Amazon EC2 Product Details Page 1 of 5

Amazon EC2 Product Details Page 1 of 5 Amazon EC2 Product Details Page 1 of 5 Amazon EC2 Functionality Amazon EC2 presents a true virtual computing environment, allowing you to use web service interfaces to launch instances with a variety of

More information

Overlay Cloud - Yet another approach to Inter-cloud -

Overlay Cloud - Yet another approach to Inter-cloud - Overlay - Yet another approach to Inter-cloud - Shigetoshi Yokoyama (NII) @jxta Back ground 1 What s NII? National Institute of Informatics (http://www.nii.ac.jp/en) Research Institute + Academic Service

More information

Alternative Deployment Models for Cloud Computing in HPC Applications. Society of HPC Professionals November 9, 2011 Steve Hebert, Nimbix

Alternative Deployment Models for Cloud Computing in HPC Applications. Society of HPC Professionals November 9, 2011 Steve Hebert, Nimbix Alternative Deployment Models for Cloud Computing in HPC Applications Society of HPC Professionals November 9, 2011 Steve Hebert, Nimbix The case for Cloud in HPC Build it in house Assemble in the cloud?

More information

Big Data and Cloud Computing for GHRSST

Big Data and Cloud Computing for GHRSST Big Data and Cloud Computing for GHRSST Jean-Francois Piollé (jfpiolle@ifremer.fr) Frédéric Paul, Olivier Archer CERSAT / Institut Français de Recherche pour l Exploitation de la Mer Facing data deluge

More information

David.Balka@chi.frb.org 2009 STREAM FRBC

David.Balka@chi.frb.org 2009 STREAM FRBC Virtualization ti Dave Balka David.Balka@chi.frb.org Examination Elements Architecture Management Processes Integrity Availability Security 2 Datacenter Consolidation 3 What is Virtualization A framework

More information

Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led

Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led Course Description This course is intended for students who have experience building vertically scaled applications. Students should

More information

Cloud Computing. A new kind of developers? Presentation by. Nick Barcet nick.barcet@canonical.com

Cloud Computing. A new kind of developers? Presentation by. Nick Barcet nick.barcet@canonical.com Cloud Computing A new kind of developers? Presentation by Nick Barcet nick.barcet@canonical.com www.canonical.com July 2011 Cloud computing stack Salesforce.com, GoogleDocs, Office, etc... GoogleApps,

More information

Microsoft HPC. V 1.0 José M. Cámara (checam@ubu.es)

Microsoft HPC. V 1.0 José M. Cámara (checam@ubu.es) Microsoft HPC V 1.0 José M. Cámara (checam@ubu.es) Introduction Microsoft High Performance Computing Package addresses computing power from a rather different approach. It is mainly focused on commodity

More information

Cloud Security Best Practices

Cloud Security Best Practices Cloud Security Best Practices Cohesive Networks - your applications secured VNS3 security and connectivity solutions protect cloud-based applications from exploitation by hackers, criminal gangs, and foreign

More information

Aligning Your Cloud Service Delivery to Your Customer s Needs

Aligning Your Cloud Service Delivery to Your Customer s Needs Aligning Your Cloud Service Delivery to Your Customer s Needs Eric M. Hui Director Service Provider Markets Asia Pacific September, 2014 2014 Equinix Inc. www.equinix.com Context Control Flexibility Management

More information

IT VIRTUALIZATION FOR DISASTER MITIGATION AND RECOVERY

IT VIRTUALIZATION FOR DISASTER MITIGATION AND RECOVERY IT VIRTUALIZATION FOR DISASTER MITIGATION AND RECOVERY Maurício Tsugawa Renato Figueiredo José Fortes Takahiro Hirofuchi Hidemoto Nakada Ryousei Takano J-RAPID Symposium Sendai, March 6-7th, 2013 2 Motivation

More information

Deploying Baremetal Instances with OpenStack

Deploying Baremetal Instances with OpenStack Deploying Baremetal Instances with OpenStack Ver1.1 2013/02/10 Etsuji Nakai $ who am i Etsuji Nakai Senior solution architect and cloud evangelist at Red Hat. Working for NII (National Institute of Informatics

More information

CLOUD COMPUTING. When It's smarter to rent than to buy

CLOUD COMPUTING. When It's smarter to rent than to buy CLOUD COMPUTING When It's smarter to rent than to buy Is it new concept? Nothing new In 1990 s, WWW itself Grid Technologies- Scientific applications Online banking websites More convenience Not to visit

More information

IPOP-TinCan: User-defined IP-over-P2P Virtual Private Networks

IPOP-TinCan: User-defined IP-over-P2P Virtual Private Networks IPOP-TinCan: User-defined IP-over-P2P Virtual Private Networks Renato Figueiredo Advanced Computing and Information Systems Lab University of Florida ipop-project.org Unit 3: Intra-cloud Virtual Networks

More information

Benchmarking Sahara-based Big-Data-as-a-Service Solutions. Zhidong Yu, Weiting Chen (Intel) Matthew Farrellee (Red Hat) May 2015

Benchmarking Sahara-based Big-Data-as-a-Service Solutions. Zhidong Yu, Weiting Chen (Intel) Matthew Farrellee (Red Hat) May 2015 Benchmarking Sahara-based Big-Data-as-a-Service Solutions Zhidong Yu, Weiting Chen (Intel) Matthew Farrellee (Red Hat) May 2015 Agenda o Why Sahara o Sahara introduction o Deployment considerations o Performance

More information

Disaster-Resilient Backbone and Access Networks

Disaster-Resilient Backbone and Access Networks The Workshop on Establishing Resilient Life-Space in the Cyber-Physical Integrated Society, March. 17, 2015, Sendai, Japan Disaster-Resilient Backbone and Access Networks Shigeki Yamada (shigeki@nii.ac.jp)

More information

OpenFlow/SDN for IaaS Providers

OpenFlow/SDN for IaaS Providers OpenFlow/SDN for IaaS Providers Open Networking Summit 2011 Stanford University Paul Lappas & Ivan Batanov The Public Cloud Our Definition Shared infrastructure operated by a service provider where no

More information

A Comparison of Clouds: Amazon Web Services, Windows Azure, Google Cloud Platform, VMWare and Others (Fall 2012)

A Comparison of Clouds: Amazon Web Services, Windows Azure, Google Cloud Platform, VMWare and Others (Fall 2012) 1. Computation Amazon Web Services Amazon Elastic Compute Cloud (Amazon EC2) provides basic computation service in AWS. It presents a virtual computing environment and enables resizable compute capacity.

More information

Network Virtualization for Large-Scale Data Centers

Network Virtualization for Large-Scale Data Centers Network Virtualization for Large-Scale Data Centers Tatsuhiro Ando Osamu Shimokuni Katsuhito Asano The growing use of cloud technology by large enterprises to support their business continuity planning

More information

cloud functionality: advantages and Disadvantages

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

More information

Private Cloud Management

Private Cloud Management Private Cloud Management Speaker Systems Engineer Unified Data Center & Cloud Team Germany Juni 2016 Agenda Cisco Enterprise Cloud Suite Two Speeds of Applications DevOps Starting Point into PaaS Cloud

More information

Het is een kleine stap naar een hybrid cloud

Het is een kleine stap naar een hybrid cloud Het is een kleine stap naar een hybrid cloud Isabel Moll-Kranenburg Microsoft 14 jaar IT industrie 4 jaar Microsoft Cloud Private Private Cloud Meeting customers where they are The Microsoft Cloud Computing

More information

AMD SEAMICRO OPENSTACK BLUEPRINTS CLOUD- IN- A- BOX OCTOBER 2013

AMD SEAMICRO OPENSTACK BLUEPRINTS CLOUD- IN- A- BOX OCTOBER 2013 AMD SEAMICRO OPENSTACK BLUEPRINTS CLOUD- IN- A- BOX OCTOBER 2013 OpenStack What is OpenStack? OpenStack is a cloud operaeng system that controls large pools of compute, storage, and networking resources

More information

NCTA Cloud Architecture

NCTA Cloud Architecture NCTA Cloud Architecture Course Specifications Course Number: 093019 Course Length: 5 days Course Description Target Student: This course is designed for system administrators who wish to plan, design,

More information

2015 Techstravaganza The Microsoft Cloud

2015 Techstravaganza The Microsoft Cloud 2015 Techstravaganza The Microsoft Cloud http://virtuallycloud9.com @tommy_patterson http://aka.ms/tplinkedin Tommy.Patterson@Microsoft.com http://aka.ms/mshostingbw Leaders in Gartner Magic Quadrants

More information

70-414: Implementing a Cloud Based Infrastructure. Course Overview

70-414: Implementing a Cloud Based Infrastructure. Course Overview 70-414: Implementing a Cloud Based Infrastructure Course Overview This course covers will prepare the student for Exam 70-414: Implementing a Cloud Based Infrastructure. Students will learn how to create

More information

Windows Azure and private cloud

Windows Azure and private cloud Windows Azure and private cloud Joe Chou Senior Program Manager China Cloud Innovation Center Customer Advisory Team Microsoft Asia-Pacific Research and Development Group 1 Agenda Cloud Computing Fundamentals

More information

Amazon Web Services Primer. William Strickland COP 6938 Fall 2012 University of Central Florida

Amazon Web Services Primer. William Strickland COP 6938 Fall 2012 University of Central Florida Amazon Web Services Primer William Strickland COP 6938 Fall 2012 University of Central Florida AWS Overview Amazon Web Services (AWS) is a collection of varying remote computing provided by Amazon.com.

More information

Data Center Infrastructure of the future. Alexei Agueev, Systems Engineer

Data Center Infrastructure of the future. Alexei Agueev, Systems Engineer Data Center Infrastructure of the future Alexei Agueev, Systems Engineer Traditional DC Architecture Limitations Legacy 3 Tier DC Model Layer 2 Layer 2 Domain Layer 2 Layer 2 Domain Oversubscription Ports

More information

Virtual Client Solution: Desktop Virtualization

Virtual Client Solution: Desktop Virtualization IBM System x and BladeCenter Virtual Client Solution: Desktop Virtualization Powered by and VMware View June 29, 2010 Agenda 1 2 3 4 5 6 Virtual client solution overview Addressing companies pain points

More information

How To Establish IPSec VPN between Cyberoam and Microsoft Azure

How To Establish IPSec VPN between Cyberoam and Microsoft Azure How To Establish IPSec VPN between Cyberoam and Microsoft Azure How To Establish IPSec VPN Connection between Cyberoam and Microsoft Azure Applicable Version: 10.00 onwards Overview Microsoft Azure is

More information

Automatic verification technology of virtual machine software patch on IaaS cloud

Automatic verification technology of virtual machine software patch on IaaS cloud Automatic verification technology of virtual machine software patch on IaaS cloud 2015/01/23 Yoji Yamato Software Innovation Center, NTT Corporation Agenda Background Problems of existing methods Proposal

More information

(R)Evolution im Software Defined Datacenter Hyper-Converged Infrastructure

(R)Evolution im Software Defined Datacenter Hyper-Converged Infrastructure (R)Evolution im Software Defined Datacenter Hyper-Converged Infrastructure David Kernahan Senior Systems Engineer VMware Switzerland GmbH 2014 VMware Inc. All rights reserved. Agenda 1 VMware Strategy

More information

Feature Comparison. Windows Server 2008 R2 Hyper-V and Windows Server 2012 Hyper-V

Feature Comparison. Windows Server 2008 R2 Hyper-V and Windows Server 2012 Hyper-V Comparison and Contents Introduction... 4 More Secure Multitenancy... 5 Flexible Infrastructure... 9 Scale, Performance, and Density... 13 High Availability... 18 Processor and Memory Support... 24 Network...

More information

Cloud Computing: Making the right choices

Cloud Computing: Making the right choices Cloud Computing: Making the right choices Kalpak Shah Clogeny Technologies Pvt Ltd 1 About Me Kalpak Shah Founder & CEO, Clogeny Technologies Passionate about economics and technology evolving through

More information

Clodoaldo Barrera Chief Technical Strategist IBM System Storage. Making a successful transition to Software Defined Storage

Clodoaldo Barrera Chief Technical Strategist IBM System Storage. Making a successful transition to Software Defined Storage Clodoaldo Barrera Chief Technical Strategist IBM System Storage Making a successful transition to Software Defined Storage Open Server Summit Santa Clara Nov 2014 Data at the core of everything Data is

More information

Linux A first-class citizen in Windows Azure. Bruno Terkaly bterkaly@microsoft.com Principal Software Engineer Mobile/Cloud/Startup/Enterprise

Linux A first-class citizen in Windows Azure. Bruno Terkaly bterkaly@microsoft.com Principal Software Engineer Mobile/Cloud/Startup/Enterprise Linux A first-class citizen in Windows Azure Bruno Terkaly bterkaly@microsoft.com Principal Software Engineer Mobile/Cloud/Startup/Enterprise 1 First, I am software developer (C/C++, ASM, C#, Java, Node.js,

More information

SwiftStack Global Cluster Deployment Guide

SwiftStack Global Cluster Deployment Guide OpenStack Swift SwiftStack Global Cluster Deployment Guide Table of Contents Planning Creating Regions Regions Connectivity Requirements Private Connectivity Bandwidth Sizing VPN Connectivity Proxy Read

More information

Linux/Open Source and Cloud computing Wim Coekaerts Senior Vice President, Linux and Virtualization Engineering

Linux/Open Source and Cloud computing Wim Coekaerts Senior Vice President, Linux and Virtualization Engineering Linux/Open Source and Cloud computing Wim Coekaerts Senior Vice President, Linux and Virtualization Engineering NIST Definition of Cloud Computing Cloud computing is a model for enabling convenient, on-demand

More information

Performance of Network Virtualization in Cloud Computing Infrastructures: The OpenStack Case.

Performance of Network Virtualization in Cloud Computing Infrastructures: The OpenStack Case. Performance of Network Virtualization in Cloud Computing Infrastructures: The OpenStack Case. Franco Callegati, Walter Cerroni, Chiara Contoli, Giuliano Santandrea Dept. of Electrical, Electronic and Information

More information

Citrix Training. Course: Citrix Training. Duration: 40 hours. Mode of Training: Classroom (Instructor-Led)

Citrix Training. Course: Citrix Training. Duration: 40 hours. Mode of Training: Classroom (Instructor-Led) Citrix Training Course: Citrix Training Duration: 40 hours Mode of Training: Classroom (Instructor-Led) Virtualization has redefined the way IT resources are consumed and services are delivered. It offers

More information

DevOps with Containers. for Microservices

DevOps with Containers. for Microservices DevOps with Containers for Microservices DevOps is a Software Development Method Keywords Communication, collaboration, integration, automation, measurement Goals improved deployment frequency faster time

More information

Going Hybrid. The first step to your! Enterprise Cloud journey! Eric Sansonny General Manager!

Going Hybrid. The first step to your! Enterprise Cloud journey! Eric Sansonny General Manager! Going Hybrid The first step to your! Enterprise Cloud journey! Eric Sansonny General Manager! About Aruba! Few figures! About Aruba! Few figures! 2 million customers! About Aruba! Few figures! 600 people!

More information

SINET3 for Grid Environments (New Japanese Academic Backbone Network)

SINET3 for Grid Environments (New Japanese Academic Backbone Network) SINET3 for Grid Environments (New Japanese Academic Backbone Network) M. Koibuchi, M. Nakao, and NW groupers National Institute of Informatics (NII), JAPAN 1 2 Evolution of Japanese Academic Networks SINET3

More information

Security. Environments. Dave Shackleford. John Wiley &. Sons, Inc. s j}! '**»* t i j. l:i. in: i««;

Security. Environments. Dave Shackleford. John Wiley &. Sons, Inc. s j}! '**»* t i j. l:i. in: i««; Security N Environments '' J J H -. i ^ s j}! Dave Shackleford '**»* t i j i««; l:i in: John Wiley &. Sons, Inc. Contents Introduction.. : xix Chapter l Fundamentals of Virtualization Security Virtualization

More information

Hybrid and Multi Cloud Deployments Via Cloud Exchange

Hybrid and Multi Cloud Deployments Via Cloud Exchange Hybrid and Multi Cloud Deployments Via Cloud Exchange Eric M. Hui Director Service Provider Markets August, 2014 2014 Equinix Inc. www.equinix.com Context Control Flexibility Management Choice Best of

More information

Expand Your Infrastructure with the Elastic Cloud. Mark Ryland Chief Solutions Architect Jenn Steele Product Marketing Manager

Expand Your Infrastructure with the Elastic Cloud. Mark Ryland Chief Solutions Architect Jenn Steele Product Marketing Manager Expand Your Infrastructure with the Elastic Cloud Mark Ryland Chief Solutions Architect Jenn Steele Product Marketing Manager Today we re going to talk about The Cloud Scenarios Questions You Probably

More information

VMware Virtualization. Garrett Hartney VMware Evangelist

VMware Virtualization. Garrett Hartney VMware Evangelist VMware Virtualization Garrett Hartney VMware Evangelist Agenda Virtualization VMware Management vservices The Virtual Datacenter Operating System Desktop Virtualization Virtualization Virtualization on

More information

Agenda About SUNY and ITEC Cloud project Challenges and Use cases for ITEC Cloud EM Solution Business Benefits

Agenda About SUNY and ITEC Cloud project Challenges and Use cases for ITEC Cloud EM Solution Business Benefits Agenda About SUNY and ITEC Cloud project Challenges and Use cases for ITEC Cloud EM Solution Business Benefits About SUNY Power of SUNY Nations Largest State University System 64 Geographically Dispersed

More information

BASHO DATA PLATFORM SIMPLIFIES BIG DATA, IOT, AND HYBRID CLOUD APPS

BASHO DATA PLATFORM SIMPLIFIES BIG DATA, IOT, AND HYBRID CLOUD APPS WHITEPAPER BASHO DATA PLATFORM BASHO DATA PLATFORM SIMPLIFIES BIG DATA, IOT, AND HYBRID CLOUD APPS INTRODUCTION Big Data applications and the Internet of Things (IoT) are changing and often improving our

More information

OnApp Cloud. The complete platform for cloud service providers. 114 Cores. 286 Cores / 400 Cores

OnApp Cloud. The complete platform for cloud service providers. 114 Cores. 286 Cores / 400 Cores OnApp Cloud The complete platform for cloud service providers 286 Cores / 400 Cores 114 Cores 218 10 86 20 The complete platform for cloud service providers OnApp software turns your datacenter into an

More information

Network performance in virtual infrastructures

Network performance in virtual infrastructures Network performance in virtual infrastructures A closer look at Amazon EC2 Alexandru-Dorin GIURGIU University of Amsterdam System and Network Engineering Master 03 February 2010 Coordinators: Paola Grosso

More information

VMware vcenter Site Recovery Manager 5 Technical

VMware vcenter Site Recovery Manager 5 Technical VMware vcenter Site Recovery Manager 5 Technical Raj Jethnani, VCP 4/5, VCAP4-DCA / DCD Systems Engineer VMware, Inc. rjethnani@vmware.com @rajtech 2009 VMware Inc. All rights reserved Agenda Simplifying

More information

Alfresco Enterprise on Azure: Reference Architecture. September 2014

Alfresco Enterprise on Azure: Reference Architecture. September 2014 Alfresco Enterprise on Azure: Reference Architecture Page 1 of 14 Abstract Microsoft Azure provides a set of services for deploying critical enterprise workloads on its highly reliable cloud platform.

More information

Product Overview and Functional Specification

Product Overview and Functional Specification Product Overview and Functional Specification Virtual Private Clouds Value Added Reseller (VAR) / Managed Service Provider (MSP) 1 P a g e Cloud Introduction and Glossary of Cloud Terms Cloud computing

More information

Installation Runbook for Avni Software Defined Cloud

Installation Runbook for Avni Software Defined Cloud Installation Runbook for Avni Software Defined Cloud Application Version 2.5 MOS Version 6.1 OpenStack Version Application Type Juno Hybrid Cloud Management System Content Document History 1 Introduction

More information

Overviews of Cloud Computing and SDN activities in WIDE Project

Overviews of Cloud Computing and SDN activities in WIDE Project CJK Workshop 2014 1 Overviews of Cloud Computing and SDN activities in WIDE Project Yuji Sekiya The Univ. of Tokyo / WIDE Project CJK Workshop 2014 2 Research Consortium WIDE Project http://www.wide.ad.jp/

More information

Putchong Uthayopas, Kasetsart University

Putchong Uthayopas, Kasetsart University Putchong Uthayopas, Kasetsart University Introduction Cloud Computing Explained Cloud Application and Services Moving to the Cloud Trends and Technology Legend: Cluster computing, Grid computing, Cloud

More information

How To Understand Cloud Computing

How To Understand Cloud Computing Dr Markus Hagenbuchner markus@uow.edu.au CSCI319 Introduction to Cloud Computing CSCI319 Chapter 1 Page: 1 of 10 Content and Objectives 1. Introduce to cloud computing 2. Develop and understanding to how

More information

Business Intelligence Competency Partners

Business Intelligence Competency Partners Business Intelligence Competency Partners BI 4.1 Installation Best Practices Presenter: Rich Chlebek May 15, 2014 What We ll Cover Webinar Protocol Introductions Architecture Server Clustering High Availability

More information

NCTA Cloud Operations

NCTA Cloud Operations NCTA Cloud Operations 093018 Lesson 1: Cloud Operations Topic A: Overview of Cloud Computing Solutions Identify the core concepts of cloud computing. Operations Terminology Identify the terminology used

More information

Compass Deploying and Monitoring a Software Defined Infrastructure

Compass Deploying and Monitoring a Software Defined Infrastructure Compass Deploying and Monitoring a Software Defined Infrastructure Toward Software Defined Infrastructure Warehouse of bare-metal devices Commoditization and open standard hardware design Significantly

More information

Introducing the New Hitachi Storage Virtualization Operating System and Hitachi Virtual Storage Platform G1000

Introducing the New Hitachi Storage Virtualization Operating System and Hitachi Virtual Storage Platform G1000 Introducing the New Hitachi Storage Virtualization Operating System and Hitachi Virtual Storage Platform G1000 Greg Knieriemen - technology evangelist Bob Madaio - senior director, Product Marketing April

More information

Open Cloud System. (Integration of Eucalyptus, Hadoop and AppScale into deployment of University Private Cloud)

Open Cloud System. (Integration of Eucalyptus, Hadoop and AppScale into deployment of University Private Cloud) Open Cloud System (Integration of Eucalyptus, Hadoop and into deployment of University Private Cloud) Thinn Thu Naing University of Computer Studies, Yangon 25 th October 2011 Open Cloud System University

More information

MacroLan Azure cloud tutorial.

MacroLan Azure cloud tutorial. MacroLan Azure cloud tutorial. Create a Virtual Machine running Windows This tutorial shows you how easy it is to create an Azure virtual machine (VM) running Windows, using as an example a Windows Server

More information

2) Xen Hypervisor 3) UEC

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

More information

STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case)

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

More information

VMUG - vcloud Air Deep Dive. 2014 VMware Inc. All rights reserved.

VMUG - vcloud Air Deep Dive. 2014 VMware Inc. All rights reserved. VMUG - vcloud Air Deep Dive 2014 VMware Inc. All rights reserved. Agenda 1 Overview of vcloud Air 2 Advanced Networking Capabilities 3 Use Cases 4 Overview of Disaster Recovery Service 5 Questions 2 VMware

More information

Deployment Guide. How to prepare your environment for an OnApp Cloud deployment.

Deployment Guide. How to prepare your environment for an OnApp Cloud deployment. Deployment Guide How to prepare your environment for an OnApp Cloud deployment. Document version 1.07 Document release date 28 th November 2011 document revisions 1 Contents 1. Overview... 3 2. Network

More information

How to Guide: StorageCraft Cloud Services VPN

How to Guide: StorageCraft Cloud Services VPN How to Guide: StorageCraft Cloud Services VPN CONTENTS Executive Summary...3 Setting up the VPN...4 Connecting to the VPN from a single computer...5 Providing a LAN site with access to the VPN...6 Conclusion...12

More information

Business Process Desktop: Acronis backup & Recovery 11.5 Deployment Guide

Business Process Desktop: Acronis backup & Recovery 11.5 Deployment Guide WHITE Deployment PAPERGuide Business Process Desktop: Acronis backup & Recovery 11.5 Deployment Guide An Acronis White Paper Copyright Acronis, Inc., 2000 2011 Deployment Guide Table of contents About

More information

Appliance Comparison Chart

Appliance Comparison Chart Appliance Comparison Chart Models Edge 10 270 570 1070 2070 070 Edge X, Edge W, Edge X ADSL, Edge W ADSL 12 16 272 276 572 576 107 1076 207 2076 07 076 Software Edition Embedded NGX R65, R70 R65, R70 R65,

More information

How to Do/Evaluate Cloud Computing Research. Young Choon Lee

How to Do/Evaluate Cloud Computing Research. Young Choon Lee How to Do/Evaluate Cloud Computing Research Young Choon Lee Cloud Computing Cloud computing is a model for enabling ubiquitous, convenient, on-demand network access to a shared pool of configurable computing

More information

Cisco Prime Network Services Controller. Sonali Kalje Sr. Product Manager Cloud and Virtualization, Cisco Systems

Cisco Prime Network Services Controller. Sonali Kalje Sr. Product Manager Cloud and Virtualization, Cisco Systems Cisco Prime Network Services Controller Sonali Kalje Sr. Product Manager Cloud and Virtualization, Cisco Systems Agenda Cloud Networking Challenges Prime Network Services Controller L4-7 Services Solutions

More information

The last 18 months. AutoScale. IaaS. BizTalk Services Hyper-V Disaster Recovery Support. Multi-Factor Auth. Hyper-V Recovery.

The last 18 months. AutoScale. IaaS. BizTalk Services Hyper-V Disaster Recovery Support. Multi-Factor Auth. Hyper-V Recovery. Offline Operations Traffic ManagerLarge Memory SKU SQL, SharePoint, BizTalk Images HDInsight Windows Phone Support Per Minute Billing HTML 5/CORS Android Support Custom Mobile API AutoScale BizTalk Services

More information

Cluster, Grid, Cloud Concepts

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

More information

FOR SERVERS 2.2: FEATURE matrix

FOR SERVERS 2.2: FEATURE matrix RED hat ENTERPRISE VIRTUALIZATION FOR SERVERS 2.2: FEATURE matrix Red hat enterprise virtualization for servers Server virtualization offers tremendous benefits for enterprise IT organizations server consolidation,

More information

SolidFire SF3010 All-SSD storage system with Citrix CloudPlatform 3.0.5 Reference Architecture

SolidFire SF3010 All-SSD storage system with Citrix CloudPlatform 3.0.5 Reference Architecture SolidFire SF3010 All-SSD storage system with Citrix CloudPlatform 3.0.5 Reference Architecture 2 This reference architecture is a guideline for deploying Citrix CloudPlatform, powered by Apache CloudStack,

More information

Network Virtualization Model - Planet Lab

Network Virtualization Model - Planet Lab CoreLab: An Emerging Network Testbed towards Network Virtualization Network Virtualization Research Lab Akihiro NAKAO Associate Professor University of Tokyo NICT PlanetLab The largest and most popular

More information

Esri ArcGIS Server 10 for VMware Infrastructure

Esri ArcGIS Server 10 for VMware Infrastructure Esri ArcGIS Server 10 for VMware Infrastructure October 2011 DEPLOYMENT AND TECHNICAL CONSIDERATIONS GUIDE Table of Contents Introduction... 3 Esri ArcGIS Server 10 Overview.... 3 VMware Infrastructure

More information

Private Distributed Cloud Deployment in a Limited Networking Environment

Private Distributed Cloud Deployment in a Limited Networking Environment Private Distributed Cloud Deployment in a Limited Networking Environment Jeffrey Galloway, Susan Vrbsky, and Karl Smith The University of Alabama jmgalloway@crimson.ua.edu, vrbsky@cs.ua.edu, smith102@crimson.ua.edu

More information

RED HAT OPENSTACK PLATFORM A COST-EFFECTIVE PRIVATE CLOUD FOR YOUR BUSINESS

RED HAT OPENSTACK PLATFORM A COST-EFFECTIVE PRIVATE CLOUD FOR YOUR BUSINESS WHITEPAPER RED HAT OPENSTACK PLATFORM A COST-EFFECTIVE PRIVATE CLOUD FOR YOUR BUSINESS INTRODUCTION The cloud is more than a marketing concept. Cloud computing is an intentional, integrated architecture

More information

vcloud Suite Architecture Overview and Use Cases

vcloud Suite Architecture Overview and Use Cases vcloud Suite Architecture Overview and Use Cases vcloud Suite 5.8 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Sacha Dubois RED HAT TRENDS AND TECHNOLOGY PATH TO AN OPEN HYBRID CLOUD AND DEVELOPER AGILITY. Solution Architect Infrastructure

Sacha Dubois RED HAT TRENDS AND TECHNOLOGY PATH TO AN OPEN HYBRID CLOUD AND DEVELOPER AGILITY. Solution Architect Infrastructure RED HAT TRENDS AND TECHNOLOGY PATH TO AN OPEN HYBRID CLOUD AND DEVELOPER AGILITY Sacha Dubois Solution Architect Infrastructure sadubois@redhat.com 13. März 2015 - Seite 1 / 25 I.T. CHALLENGES 13. März

More information

Overlay networking with OpenStack Neutron in Public Cloud environment. Trex Workshop 2015

Overlay networking with OpenStack Neutron in Public Cloud environment. Trex Workshop 2015 Overlay networking with OpenStack Neutron in Public Cloud environment Trex Workshop 2015 About Presenter Anton Aksola (aakso@twitter,ircnet,github) Network Architect @Nebula Oy, started in 2005 Currently

More information

HOPS: Hadoop Open Platform-as-a-Service

HOPS: Hadoop Open Platform-as-a-Service HOPS: Hadoop Open Platform-as-a-Service Alberto Lorente, Hamid Afzali, Salman Niazi, Mahmoud Ismail, Kamal Hakimazadeh, Hooman Piero, Jim Dowling jdowling@sics.se Scale Research Laboratory What is Hadoop?

More information

Elastic Management of Cluster based Services in the Cloud

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,

More information

GigaSpaces Real-Time Analytics for Big Data

GigaSpaces Real-Time Analytics for Big Data GigaSpaces Real-Time Analytics for Big Data GigaSpaces makes it easy to build and deploy large-scale real-time analytics systems Rapidly increasing use of large-scale and location-aware social media and

More information

Business Con*nuity with Docker

Business Con*nuity with Docker CloudOpen Japan 2015 Business Con*nuity with Docker 2015/06/04 Yoshitaka Kuwata Muroran Ins*tute of Technology Overview of Talk 1. Who is Talking 2. Mo*va*on of Disaster Recovery 3. Exis*ng Solu*ons 4.

More information

HP Matrix Operating Environment Federated CMS Overview

HP Matrix Operating Environment Federated CMS Overview HP Matrix Operating Environment Federated CMS Overview HP Matrix OE infrastructure orchestration 7.0 Technical white paper Table of contents Introduction... 2 Overview... 2 Installation and configuration...

More information

Cloud Computing. Alex Crawford Ben Johnstone

Cloud Computing. Alex Crawford Ben Johnstone Cloud Computing Alex Crawford Ben Johnstone Overview What is cloud computing? Amazon EC2 Performance Conclusions What is the Cloud? A large cluster of machines o Economies of scale [1] Customers use a

More information