Cloud Computing on Amazon's EC2
|
|
|
- Rhoda Briggs
- 10 years ago
- Views:
Transcription
1 Technical Report Number CSSE Introduction to Amazon s EC2 Brandon K Maharrey [email protected] COMP 6330 Parallel and Distributed Computing Spring 2009 Final Project Technical Report Cloud Computing on Amazon's EC2 As computer components have become cheaper and more widely available, there is an increasing trend for corporations and scientific research / academic institutions to off-load their data-processing to a high performance computing (HPC) center. These centers, specifically Amazon's EC2, offer a truly virtual computing environment for use of processing power at a premium. Instead of these corporations and institutions purchasing equipment for peak traffic volume or a short-lived scientific experiment, they can instead purchase as much processing power on EC2 as they need and only pay for what they use. This virtual environment is created by the user in the form of an Amazon Machine Image (AMI). An AMI contains the application(s) the user wishes to run along with any libraries, data and/or configuration settings. It is essentially an all-inclusive operating system. This AMI is bundled up and the user uploads or otherwise transfers the AMI to another of Amazon's products, Amazon Simple Storage Solution (S3). This is the location from which Amazon loads the user's AMI to run on a processor or series of processors, depending on the type and quality of service the user requires. After an instance is instantiated using a command-line tool or web interface provided by Amazon, this instance has its own machine name, ip address, firewall properties, ethernet interfaces, etc., just like it is its own standalone machine. The instance can then be accessed remotely just as any other machine can be accessed, through the use of ssh and scp protocols. A user can choose among several different instance types to fit her specific needs. Following is a snippet from Amazon's website: Standard Instances o Instances of this family are well-suited for most applications o Small Instance (Default) 1.7GB of memory, 1 EC2 Compute Unit (1 virtual core with 1 EC2 Compute Unit), 160GB of instance storage, 32-bit platform o Large Instance 7.5 GB of memory, 4 EC2 Compute Units (2 virtual cores with 2 EC2 Compute Units each), 850 GB of instance storage, 64-bit platform o Extra Large Instance 15 GB of memory, 8 EC2 Compute Units (4 virtual cores with 2 EC2 Compute Units each), 1690 GB of instance storage, 64-bit platform High-CPU Instances o Instances of this family have proportionally more CPU resources than memory (RAM) and are well-suited for compute-intensive applications o High-CPU Medium Instance 1.7 GB of memory, 5 EC2 Compute Units (2 virtual cores with 2.5 EC2 Compute Units each), 350 GB of instance storage, 32-bit platform
2 Maharrey 2 o High-CPU Extra Large Instance 7 GB of memory, 20 EC2 Compute Units (8 virtual cores with 2.5 EC2 Compute Units each), 1690 GB of instance storage, 64-bit platform Note: EC2 Compute Unit (ECU) One ECU provides the equivalent CPU capacity of a GHz 2007 Opteron or 2007 Xeon processor. EC2 together with S3 provide a high-capacity computing resource worthy of use by virtual parallel computing clusters. Here, it is important to note that when an instance is destroyed, any data generated by that instance is lost. This is where S3 comes into play. It is used as a persistent storage device for instances. S3 holds users files in what Amazon calls buckets. Amazon provides an API to access user files in buckets and the necessary security requirements of these buckets (i.e. bucket permissions, access, etc.) so that another user cannot purposefully or unwittingly destroy, overwrite, etc. files in another user s bucket. Since my experiments on Amazon s EC2 do not use this persistent storage provided by Amazon except to store the AMIs I created for experimentation purposes, I will skip further content for brevity and urge the curious reader to pursue this further on Amazon s website. 2. Experiment 1 The first experiment I chose to help evaluate the performance of Amazon s EC2 computing environment is a distributed prime search. The intensive processing nature of finding all prime numbers in a certain range is well-suited for parallel processing. First, I started with 1 instance (compute node) and increased this number, one-by-one, to 15, recording the length of time it took each instance to finish its calculations. I repeated the same experiment three times for each number of instances. I then repeated the same experiment with two different instance types (m1.small and c1.medium) and the Linux cluster in Shop 304. (see the accompanying Microsoft Excel document) One important factor is how the range is divided and given to each instance. On each instance, I ran a java program as follows: java prime <id> <number of instances> <beginning number> <ending number>. One way to partition the range is as follows (<number of instances> = 2, <beginning number> = 3, <ending number> = 10): Number to Test Assigned to Instance <id> 0 1 However, partitioning the range in this way ensures that instances with lower <id> always finish before instances with higher <id> (i.e. it takes longer to determine if a number is prime if it is large). Instead, the way I chose to partition the range of numbers is as follows (<number of instances> = 2, <beginning number> = 3, <ending number> = 10): Number to Test Assigned to Instance <id> First, notice that even numbers are not checked at all. This speeds up the processing a little, so the program can focus on real primes. This spreads out the larger possible primes over the instances, giving each instance a more roughly similar number of possible primes to test. 3. Experiment 2
3 milliseconds milliseconds Maharrey 3 In my second experiment, I wanted to find some way to test networking between these instances. In this experiment, I decided to use my implementation of a distributed version of Conway s Game of Life implemented in libsynk. I tested the performance of an m1.small instance and c1.medium instance against the Shop 304 Linux machines. The data I gathered show the performance of the m1.small instance is eclipsed by both the c1.medium instance and the Linux cluster in Shop 304. The c1.medium instance performed best. 4. Conclusions As the reader can see from the accompanying Microsoft Excel document and Figure 1 below, the truly parallel Linux cluster at first out-performs Amazon s c1.medium instance, but soon they level off to provide about the same performance. No significant gain is achieved by adding more instances Time per Prime m1.small c1.medium Shop 304 Figure 1 Number of Compute Nodes Figure 2 shows the relative performance of the Game of Life experiment using libsynk. Average Time to Completion m1.small c1.medium Shop 304 Linux Cluster Figure 2 Figure 1 shows that having your own cluster is quite comparable to the c1.medium Amazon image. At 20 an hour, that s not a bad deal, especially if the computing you re trying to perform will complete in the short term. The m1.small instance, while not entirely a bad deal at 10 an hour, it doesn t match in performance to the c1.medium instance nor the shop 304 Linux cluster. Figure 2 surprised me a little. I would have expected the Linux cluster to out-perform even the c1.medium instance. My reasoning was thus: Since Amazon charges for bandwidth usage as well, surely
4 Maharrey 4 my 100Mbps Linux lab Ethernet connection will be faster than Amazon s due to the fact that Amazon has some sort of in-house overhead in keeping up with my bandwidth usage. My reasoning is thus corrected. Amazon apparently has little to no overhead in keeping up with my bandwidth usage from instance-toinstance, or they have a much faster connection than 100Mbps. All-in-all, the c1.medium instance outperformed both the m1.small and shop 304 Linux cluster. Computing surely has come a long way, and Amazon s EC2 is doing a lot to help improve on the cloud-computing front (no pun intended). With the most powerful instance Amazon has to offer only costing 80 per hour, cloud computing will one day no longer be a vision for the future, but a realization that all business owners and researchers alike can use to help them with their short-term computing needs. Eventually, this technology will come around and perhaps Amazon will one day, like Microsoft, Cisco, A+, etc. [insert techical certification programs here] provide certification programs for computer professionals to help qualify them for jobs, etc. A business looking for an outside hire could advertise they are looking for computer scientists with Amazon EC2 certifications to work for them. This would ease the burden on companies having to train their employees in Amazon s cloud computing environment. Instead, the employee would already have the certification and be ready to go to work. Dr Gu, you already have the source code for the distributed Game of Life simulation from homework 2. All I did to modify it to run on the instances was to take out all the code concerning the viewer and recompile it. Following is my source code for the prime search program:
5 Maharrey 5 /* * Brandon Maharrey * COMP 6330 * Spring 2009 * Final Project * Filename: prime.java */ import java.math.biginteger; import java.lang.integer; class prime { public static void main(string[] args) { int id = 0, numinstances = 0; BigInteger begnum, endnum, numtocheck; if (args.length == 4) { try { id = Integer.parseInt(args[0]); catch (NumberFormatException e) { System.err.println("argument 1 must be an integer\nusage: java prime <id> <number of instances> <beginning number> <ending number>\n"); System.exit(1); else { try { numinstances = Integer.parseInt(args[1]); catch (NumberFormatException e) { System.err.println("argument 2 must be an integer\nusage: java prime <id> <number of instances> <beginning number> <ending number>\n"); System.exit(1); System.out.println("\nusage: java prime <id> <number of instances> <beginning number> <ending number>\n"); begnum = new BigInteger(args[2]); endnum = new BigInteger(args[3]); if (begnum.compareto(new BigInteger("3")) < 0) { System.out.println("\nerror: <beginning number> must be greater than or equal to 3\n"); if (begnum.compareto(endnum) >= 0) { System.out.println("\nerror: <beginning number> must be strictly less than <ending number>\n"); if (id >= numinstances id < 0) { System.out.println("\nerror: <id> must be on [0, <number of instances> - 1]\n"); BigInteger two = new BigInteger("2"); BigInteger zero = new BigInteger("0"); BigInteger one = new BigInteger("1"); BigInteger remainder = begnum.mod(two); int num; if (remainder.compareto(zero) == 0) { num = (2 * id) + 1; numtocheck = begnum.add(new BigInteger(new Integer(num).toString())); else { num = 2 * id; numtocheck = begnum.add(new BigInteger(new Integer(num).toString())); int numprimes = 0; num = numinstances * 2; BigInteger interval = new BigInteger(new Integer(num).toString()); long begtime = System.currentTimeMillis(); while (numtocheck.compareto(endnum) <= 0) { if (numtocheck.isprobableprime(10)) { // we're 99.9% sure numtocheck is a prime number numprimes++; numtocheck = numtocheck.add(interval); long endtime = System.currentTimeMillis(); long timetocompute = (endtime - begtime); System.out.println("\nnode id = " + id + "\nprogram executed for " + timetocompute + " milliseconds\nfound " + numprimes + " primes");
Amazon Elastic Compute Cloud Getting Started Guide. My experience
Amazon Elastic Compute Cloud Getting Started Guide My experience Prepare Cell Phone Credit Card Register & Activate Pricing(Singapore) Region Amazon EC2 running Linux(SUSE Linux Windows Windows with SQL
Amazon EC2 XenApp Scalability Analysis
WHITE PAPER Citrix XenApp Amazon EC2 XenApp Scalability Analysis www.citrix.com Table of Contents Introduction...3 Results Summary...3 Detailed Results...4 Methods of Determining Results...4 Amazon EC2
Technology and Cost Considerations for Cloud Deployment: Amazon Elastic Compute Cloud (EC2) Case Study
Creating Value Delivering Solutions Technology and Cost Considerations for Cloud Deployment: Amazon Elastic Compute Cloud (EC2) Case Study Chris Zajac, NJDOT Bud Luo, Ph.D., Michael Baker Jr., Inc. Overview
Building a Private Cloud Cloud Infrastructure Using Opensource
Cloud Infrastructure Using Opensource with Ubuntu Server 10.04 Enterprise Cloud (Eucalyptus) OSCON (Note: Special thanks to Jim Beasley, my lead Cloud Ninja, for putting this document together!) Introduction
Cloud Computing and Amazon Web Services
Cloud Computing and Amazon Web Services Gary A. McGilvary edinburgh data.intensive research 1 OUTLINE 1. An Overview of Cloud Computing 2. Amazon Web Services 3. Amazon EC2 Tutorial 4. Conclusions 2 CLOUD
Running R from Amazon's Elastic Compute Cloud
Running R on the Running R from Amazon's Elastic Compute Cloud Department of Statistics University of NebraskaLincoln April 30, 2014 Running R on the 1 Introduction 2 3 Running R on the Pre-made AMI Building
Hey, You, Get Off of My Cloud! Exploring Information Leakage in Third-Party Clouds. Thomas Ristenpart, Eran Tromer, Hovav Shacham, Stefan Savage
Hey, You, Get Off of My Cloud! Exploring Information Leakage in Third-Party Clouds Thomas Ristenpart, Eran Tromer, Hovav Shacham, Stefan Savage UCSD MIT UCSD UCSD Today s talk in one slide Third-party
Cloud Computing For Bioinformatics
Cloud Computing For Bioinformatics Cloud Computing: what is it? Cloud Computing is a distributed infrastructure where resources, software, and data are provided in an on-demand fashion. Cloud Computing
Cloud computing is a marketing term that means different things to different people. In this presentation, we look at the pros and cons of using
Cloud computing is a marketing term that means different things to different people. In this presentation, we look at the pros and cons of using Amazon Web Services rather than setting up a physical server
benchmarking Amazon EC2 for high-performance scientific computing
Edward Walker benchmarking Amazon EC2 for high-performance scientific computing Edward Walker is a Research Scientist with the Texas Advanced Computing Center at the University of Texas at Austin. He received
Cloud Computing. Adam Barker
Cloud Computing Adam Barker 1 Overview Introduction to Cloud computing Enabling technologies Different types of cloud: IaaS, PaaS and SaaS Cloud terminology Interacting with a cloud: management consoles
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
Cloud security CS642: Computer Security Professor Ristenpart h9p://www.cs.wisc.edu/~rist/ rist at cs dot wisc dot edu University of Wisconsin CS 642
Cloud security CS642: Computer Security Professor Ristenpart h9p://www.cs.wisc.edu/~rist/ rist at cs dot wisc dot edu University of Wisconsin CS 642 Announcements Take- home final versus in- class Homework
MySQL and Virtualization Guide
MySQL and Virtualization Guide Abstract This is the MySQL and Virtualization extract from the MySQL Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit
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
High Performance Computing in CST STUDIO SUITE
High Performance Computing in CST STUDIO SUITE Felix Wolfheimer GPU Computing Performance Speedup 18 16 14 12 10 8 6 4 2 0 Promo offer for EUC participants: 25% discount for K40 cards Speedup of Solver
A Scalable Network Monitoring and Bandwidth Throttling System for Cloud Computing
A Scalable Network Monitoring and Bandwidth Throttling System for Cloud Computing N.F. Huysamen and A.E. Krzesinski Department of Mathematical Sciences University of Stellenbosch 7600 Stellenbosch, South
What is Cloud Computing? Why call it Cloud Computing?
What is Cloud Computing? Why call it Cloud Computing? 1 Cloud Computing Key Properties Advantages Shift from CAPEX to OPEX Lowers barrier for starting a new business/project Can be cheaper even in the
StACC: St Andrews Cloud Computing Co laboratory. A Performance Comparison of Clouds. Amazon EC2 and Ubuntu Enterprise Cloud
StACC: St Andrews Cloud Computing Co laboratory A Performance Comparison of Clouds Amazon EC2 and Ubuntu Enterprise Cloud Jonathan S Ward StACC (pronounced like 'stack') is a research collaboration launched
THE EUCALYPTUS OPEN-SOURCE PRIVATE CLOUD
THE EUCALYPTUS OPEN-SOURCE PRIVATE CLOUD By Yohan Wadia ucalyptus is a Linux-based opensource software architecture that implements efficiencyenhancing private and hybrid clouds within an enterprise s
Cloud Performance Benchmark Series
Cloud Performance Benchmark Series Amazon Elastic Load Balancing (ELB) Md. Borhan Uddin Bo He Radu Sion ver. 0.5b 1. Overview Experiments were performed to benchmark the Amazon Elastic Load Balancing (ELB)
Introduction to Cloud Computing
Introduction to Cloud Computing Adam Skogman, Jayway Photo by Mark Bonassera Start-up? Overwhelmed? Successful? Waiting for IT? Ease Didn t We Solve This? Flexibility Ease Didn t We Solve This? Web Hotel
Muse Server Sizing. 18 June 2012. Document Version 0.0.1.9 Muse 2.7.0.0
Muse Server Sizing 18 June 2012 Document Version 0.0.1.9 Muse 2.7.0.0 Notice No part of this publication may be reproduced stored in a retrieval system, or transmitted, in any form or by any means, without
Performance Analysis of IPv4 v/s IPv6 in Virtual Environment Using UBUNTU
Performance Analysis of IPv4 v/s IPv6 in Virtual Environment Using UBUNTU Savita Shiwani Computer Science,Gyan Vihar University, Rajasthan, India G.N. Purohit AIM & ACT, Banasthali University, Banasthali,
Cloud n Service Presentation. NTT Communications Corporation Cloud Services
Cloud n Service Presentation NTT Communications Corporation Cloud Services 1 Overview of Global Public Cloud Services Cloud n offeres datacenters in U.S. and Japan Global standard service architecture
LabStats 5 System Requirements
LabStats Tel: 877-299-6241 255 B St, Suite 201 Fax: 208-473-2989 Idaho Falls, ID 83402 LabStats 5 System Requirements Server Component Virtual Servers: There is a limit to the resources available to virtual
How To Choose Between A Relational Database Service From Aws.Com
The following text is partly taken from the Oracle book Middleware and Cloud Computing It is available from Amazon: http://www.amazon.com/dp/0980798000 Cloud Databases and Oracle When designing your cloud
Cloud Performance Benchmark Series
Cloud Performance Benchmark Series Amazon EC2 CPU Speed Benchmarks Kalpit Sarda Sumit Sanghrajka Radu Sion ver..7 C l o u d B e n c h m a r k s : C o m p u t i n g o n A m a z o n E C 2 2 1. Overview We
Kashif Iqbal - PhD [email protected]
HPC/HTC vs. Cloud Benchmarking An empirical evalua.on of the performance and cost implica.ons Kashif Iqbal - PhD [email protected] ICHEC, NUI Galway, Ireland With acknowledgment to Michele MicheloDo
This computer will be on independent from the computer you access it from (and also cost money as long as it s on )
Even though you need a computer to access your instance, you are running on a machine with different capabilities, great or small This computer will be on independent from the computer you access it from
Shadi Khalifa Database Systems Laboratory (DSL) [email protected]
Shadi Khalifa Database Systems Laboratory (DSL) [email protected] What is Amazon!! American international multibillion dollar electronic commerce company with headquarters in Seattle, Washington, USA.
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services
Moving Drupal to the Cloud: A step-by-step guide and reference document for hosting a Drupal web site on Amazon Web Services MCN 2009: Cloud Computing Primer Workshop Charles Moad
Performance test report
Disclaimer This report was proceeded by Netventic Technologies staff with intention to provide customers with information on what performance they can expect from Netventic Learnis LMS. We put maximum
When Does Colocation Become Competitive With The Public Cloud? WHITE PAPER SEPTEMBER 2014
When Does Colocation Become Competitive With The Public Cloud? WHITE PAPER SEPTEMBER 2014 Table of Contents Executive Summary... 2 Case Study: Amazon Ec2 Vs In-House Private Cloud... 3 Aim... 3 Participants...
THE DEFINITIVE GUIDE FOR AWS CLOUD EC2 FAMILIES
THE DEFINITIVE GUIDE FOR AWS CLOUD EC2 FAMILIES Introduction Amazon Web Services (AWS), which was officially launched in 2006, offers you varying cloud services that are not only cost effective, but also
Scaling in the Cloud with AWS. By: Eli White (CTO & Co-Founder @ mojolive) eliw.com - @eliw - mojolive.com
Scaling in the Cloud with AWS By: Eli White (CTO & Co-Founder @ mojolive) eliw.com - @eliw - mojolive.com Welcome! Why is this guy talking to us? Please ask questions! 2 What is Scaling anyway? Enabling
PARALLELS CLOUD SERVER
PARALLELS CLOUD SERVER Performance and Scalability 1 Table of Contents Executive Summary... Error! Bookmark not defined. LAMP Stack Performance Evaluation... Error! Bookmark not defined. Background...
When Does Colocation Become Competitive With The Public Cloud?
When Does Colocation Become Competitive With The Public Cloud? PLEXXI WHITE PAPER Affinity Networking for Data Centers and Clouds Table of Contents EXECUTIVE SUMMARY... 2 CASE STUDY: AMAZON EC2 vs IN-HOUSE
Estimating the Cost of a GIS in the Amazon Cloud. An Esri White Paper August 2012
Estimating the Cost of a GIS in the Amazon Cloud An Esri White Paper August 2012 Copyright 2012 Esri All rights reserved. Printed in the United States of America. The information contained in this document
Cluster Computing at HRI
Cluster Computing at HRI J.S.Bagla Harish-Chandra Research Institute, Chhatnag Road, Jhunsi, Allahabad 211019. E-mail: [email protected] 1 Introduction and some local history High performance computing
Dedicated Hosting. The best of all worlds. Build your server to deliver just what you want. For more information visit: imcloudservices.com.
Dedicated Hosting The best of all worlds. Build your server to deliver just what you want. Only pay for what you use with no long term contracts. High availability, your server is in the cloud. Dedicated
Last time. Today. IaaS Providers. Amazon Web Services, overview
Last time General overview, motivation, expected outcomes, other formalities, etc. Please register for course Online (if possible), or talk to Yvonne@CS Course evaluation forgotten Please assign one volunteer
Hosting Requirements Smarter Balanced Assessment Consortium Contract 11 Test Delivery System. American Institutes for Research
Contract 11 Test Delivery System American Institutes for Research Revision History Revision Description Author/Modifier Date Initial Release David Lopez de Quintana October 14, 2013 Updated to latest Amazon
PARALLELS SERVER BARE METAL 5.0 README
PARALLELS SERVER BARE METAL 5.0 README 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information on the Parallels Server Bare Metal
Sage 200 Online. System Requirements and Prerequisites
Sage 200 Online System Requirements and Prerequisites v2013 Copyright statement Sage (UK) Limited, 2013. All rights reserved. If this documentation includes advice or information relating to any matter
LCMON Network Traffic Analysis
LCMON Network Traffic Analysis Adam Black Centre for Advanced Internet Architectures, Technical Report 79A Swinburne University of Technology Melbourne, Australia [email protected] Abstract The Swinburne
Planning the Installation and Installing SQL Server
Chapter 2 Planning the Installation and Installing SQL Server In This Chapter c SQL Server Editions c Planning Phase c Installing SQL Server 22 Microsoft SQL Server 2012: A Beginner s Guide This chapter
How To Set Up A Firewall Enterprise, Multi Firewall Edition And Virtual Firewall
Quick Start Guide McAfee Firewall Enterprise, Multi-Firewall Edition model S7032 This quick start guide provides high-level instructions for setting up McAfee Firewall Enterprise, Multi-Firewall Edition
Eucalyptus Tutorial HPC and Cloud Computing Workshop http://portal.nersc.gov/project/magellan/euca-tutorial/abc.html
Eucalyptus Tutorial HPC and Cloud Computing Workshop http://portal.nersc.gov/project/magellan/euca-tutorial/abc.html Iwona Sakrejda Lavanya Ramakrishna Shane Canon June24th, UC Berkeley Tutorial Outline
Getting Started with Amazon EC2 Management in Eclipse
Getting Started with Amazon EC2 Management in Eclipse Table of Contents Introduction... 4 Installation... 4 Prerequisites... 4 Installing the AWS Toolkit for Eclipse... 4 Retrieving your AWS Credentials...
Cornell University Center for Advanced Computing
Cornell University Center for Advanced Computing David A. Lifka - [email protected] Director - Cornell University Center for Advanced Computing (CAC) Director Research Computing - Weill Cornell Medical
Performance Evaluation of VMXNET3 Virtual Network Device VMware vsphere 4 build 164009
Performance Study Performance Evaluation of VMXNET3 Virtual Network Device VMware vsphere 4 build 164009 Introduction With more and more mission critical networking intensive workloads being virtualized
wu.cloud: Insights Gained from Operating a Private Cloud System
wu.cloud: Insights Gained from Operating a Private Cloud System Stefan Theußl, Institute for Statistics and Mathematics WU Wirtschaftsuniversität Wien March 23, 2011 1 / 14 Introduction In statistics we
An Introduction to Cloud Computing Concepts
Software Engineering Competence Center TUTORIAL An Introduction to Cloud Computing Concepts Practical Steps for Using Amazon EC2 IaaS Technology Ahmed Mohamed Gamaleldin Senior R&D Engineer-SECC [email protected]
Benchmarking Large Scale Cloud Computing in Asia Pacific
2013 19th IEEE International Conference on Parallel and Distributed Systems ing Large Scale Cloud Computing in Asia Pacific Amalina Mohamad Sabri 1, Suresh Reuben Balakrishnan 1, Sun Veer Moolye 1, Chung
Web Application Deployment in the Cloud Using Amazon Web Services From Infancy to Maturity
P3 InfoTech Solutions Pvt. Ltd http://www.p3infotech.in July 2013 Created by P3 InfoTech Solutions Pvt. Ltd., http://p3infotech.in 1 Web Application Deployment in the Cloud Using Amazon Web Services From
Exploiting Private and Hybrid Clouds for Compute Intensive Web Applications
Exploiting Private and Hybrid Clouds for Compute Intensive Web Applications Aleksandar Draganov August 17, 2011 MSc in High Performance Computing The University of Edinburgh Year of Presentation: 2011
PostgreSQL Performance Characteristics on Joyent and Amazon EC2
OVERVIEW In today's big data world, high performance databases are not only required but are a major part of any critical business function. With the advent of mobile devices, users are consuming data
Performance Analysis: Benchmarking Public Clouds
Performance Analysis: Benchmarking Public Clouds Performance comparison of web server and database VMs on Internap AgileCLOUD and Amazon Web Services By Cloud Spectator March 215 PERFORMANCE REPORT WEB
How To Test For Performance And Scalability On A Server With A Multi-Core Computer (For A Large Server)
Scalability Results Select the right hardware configuration for your organization to optimize performance Table of Contents Introduction... 1 Scalability... 2 Definition... 2 CPU and Memory Usage... 2
System Requirements. SuccessMaker 5
System Requirements SuccessMaker 5 System requirements are subject to change. For the latest information on system requirements, go to support.pearsonschool.com. For more information about Digital Learning
Case Study: Load Testing and Tuning to Improve SharePoint Website Performance
Case Study: Load Testing and Tuning to Improve SharePoint Website Performance Abstract: Initial load tests revealed that the capacity of a customized Microsoft Office SharePoint Server (MOSS) website cluster
Cornell University Center for Advanced Computing
Cornell University Center for Advanced Computing David A. Lifka - [email protected] Director - Cornell University Center for Advanced Computing (CAC) Director Research Computing - Weill Cornell Medical
GeoCloud Project Report GEOSS Clearinghouse
GeoCloud Project Report GEOSS Clearinghouse Qunying Huang, Doug Nebert, Chaowei Yang, Kai Liu 2011.12.06 Description of Application GEOSS clearinghouse is a FGDC, GEO, and NASA project that connects directly
Liferay Portal Performance. Benchmark Study of Liferay Portal Enterprise Edition
Liferay Portal Performance Benchmark Study of Liferay Portal Enterprise Edition Table of Contents Executive Summary... 3 Test Scenarios... 4 Benchmark Configuration and Methodology... 5 Environment Configuration...
Evaluation Report: Supporting Microsoft Exchange on the Lenovo S3200 Hybrid Array
Evaluation Report: Supporting Microsoft Exchange on the Lenovo S3200 Hybrid Array Evaluation report prepared under contract with Lenovo Executive Summary Love it or hate it, businesses rely on email. It
System requirements for A+
System requirements for A+ Anywhere Learning System: System Requirements Customer-hosted Browser Version Web-based ALS (WBA) Delivery Network Requirements In order to configure WBA+ to properly answer
Ignify ecommerce. Item Requirements Notes
wwwignifycom Tel (888) IGNIFY5 sales@ignifycom Fax (408) 516-9006 Ignify ecommerce Server Configuration 1 Hardware Requirement (Minimum configuration) Item Requirements Notes Operating System Processor
Zend Server Amazon AMI Quick Start Guide
Zend Server Amazon AMI Quick Start Guide By Zend Technologies www.zend.com Disclaimer This is the Quick Start Guide for The Zend Server Zend Server Amazon Machine Image The information in this document
An Esri White Paper January 2011 Estimating the Cost of a GIS in the Amazon Cloud
An Esri White Paper January 2011 Estimating the Cost of a GIS in the Amazon Cloud Esri, 380 New York St., Redlands, CA 92373-8100 USA TEL 909-793-2853 FAX 909-793-5953 E-MAIL [email protected] WEB esri.com
ISPS & WEBHOSTS SETUP REQUIREMENTS & SIGNUP FORM LOCAL CLOUD
ISPS & WEBHOSTS SETUP REQUIREMENTS & SIGNUP FORM LOCAL CLOUD LOCAL CLOUD SETUP REQUIREMENTS Hardware Requirements Local Cloud Hardware Different hardware requirements apply depending on the amount of emails
Onboarding VMs to Cisco OpenStack Private Cloud
White Paper Onboarding VMs to Cisco OpenStack Private Cloud This white paper will explain the process for exporting existing virtual machines from either VMware vsphere or AWS EC2 into Cisco OpenStack
HPC performance applications on Virtual Clusters
Panagiotis Kritikakos EPCC, School of Physics & Astronomy, University of Edinburgh, Scotland - UK [email protected] 4 th IC-SCCE, Athens 7 th July 2010 This work investigates the performance of (Java)
Multi-Threading Performance on Commodity Multi-Core Processors
Multi-Threading Performance on Commodity Multi-Core Processors Jie Chen and William Watson III Scientific Computing Group Jefferson Lab 12000 Jefferson Ave. Newport News, VA 23606 Organization Introduction
Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1
Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System
Cloud Computing: Amazon Web Services
Cloud Computing: Amazon Web Services overview & hands-on experience Christoph Langguth, 2009-01-15 What is AWS / Cloud Computing? Cloud Computing: No clear definition, but can be seen as a cloud of resources
Description of Application
Description of Application Operating Organization: Coeur d Alene Tribe, Plummer, Idaho Community of Interest: U.S. Indian tribes and their governments; rural governments OS and software requirements: Microsoft
Cloud computing for fire engineering. Chris Salter Hoare Lea, London, United Kingdom, [email protected]
Cloud computing for fire engineering Chris Salter Hoare Lea, London, United Kingdom, [email protected] Abstract: Fire Dynamics Simulator (FDS) is a computing tool used by various research and industrial
MATLAB Distributed Computing Server Cloud Center User s Guide
MATLAB Distributed Computing Server Cloud Center User s Guide How to Contact MathWorks Latest news: Sales and services: User community: Technical support: www.mathworks.com www.mathworks.com/sales_and_services
A Middleware Strategy to Survive Compute Peak Loads in Cloud
A Middleware Strategy to Survive Compute Peak Loads in Cloud Sasko Ristov Ss. Cyril and Methodius University Faculty of Information Sciences and Computer Engineering Skopje, Macedonia Email: [email protected]
The Performance and Cost Variability of Amazon EC2
The Performance and Cost Variability of Amazon EC2 Gary A. McGilvary edinburgh data.intensive research 1 OUTLINE 1. Introduction 2. Cost Variations 3. Performance Variations Motivation Amazon EC2 and SPRINT
Merge CADstream. For IT Professionals. Merge CADstream,
Merge CADstream For IT Professionals Merge CADstream, the standard in CAD, automates the analysis of MRI studies and improves interpretation, reporting and interventional planning workflow. It s available
Affinity Aware VM Colocation Mechanism for Cloud
Affinity Aware VM Colocation Mechanism for Cloud Nilesh Pachorkar 1* and Rajesh Ingle 2 Received: 24-December-2014; Revised: 12-January-2015; Accepted: 12-January-2015 2014 ACCENTS Abstract The most of
Parallel Computing with MATLAB
Parallel Computing with MATLAB Scott Benway Senior Account Manager Jiro Doke, Ph.D. Senior Application Engineer 2013 The MathWorks, Inc. 1 Acceleration Strategies Applied in MATLAB Approach Options Best
Computing in High- Energy-Physics: How Virtualization meets the Grid
Computing in High- Energy-Physics: How Virtualization meets the Grid Yves Kemp Institut für Experimentelle Kernphysik Universität Karlsruhe Yves Kemp Barcelona, 10/23/2006 Outline: Problems encountered
Performance measurement of a private Cloud in the OpenCirrus Testbed
Performance measurement of a private Cloud in the OpenCirrus Testbed 4th Workshop on Virtualization in High-Performance Cloud Computing (VHPC '09) Euro-Par 2009 Delft August 25th 2009 Christian Baun KIT
Introduction to Cloud computing. Viet Tran
Introduction to Cloud computing Viet Tran Type of Cloud computing Infrastructure as a Service IaaS: offer full virtual machines via hardware virtualization tech. Amazon EC2, AbiCloud, ElasticHosts, Platform
Using the Windows Cluster
Using the Windows Cluster Christian Terboven [email protected] aachen.de Center for Computing and Communication RWTH Aachen University Windows HPC 2008 (II) September 17, RWTH Aachen Agenda o Windows Cluster
