SlideShare una empresa de Scribd logo
1 de 94
Each day …
  AWS adds the equivalent server
  capacity to power Amazon.com
  when it was $2.76 B enterprise.
                    Werner Vogels, CTO
Each day …
  one third of web surfers visit
        a site powered by
     Amazon Web Services.
                         The Inquirer
Each day …
one percent of Internet traffic in
  North America flows through
      Amazon Web Services.
                    DeepField Networks
David Brown
                           Sr. Manager, Software Development
                                      Amazon EC2




Nov 28, 2012 –   By David Brown -   Presented at AWS re:Invent –   Optimized for 16x9   –   © Amazon Web Services
[ Cape Town, South Africa ]
[ Seattle, Washington ]
1) Launching your first instance
2) Storage options
3) Networking fundamentals
4) Monitoring and availability
5) Documentation and support



                        [ The Plan ]
[ Your first instance ]
1) What is an instance?
2) Regions and Availability Zones
3) Amazon Machine Images (AMIs)
4) Security (key pairs and security groups)
5) Instance types (t1.micro, m1.small, …)
6) Launching the instance

               [ Your first instance ]
_ Virtual server running within an Amazon EC2 data center
_ Accessible remotely (Secure Shell, Remote Desktop Protocol, …)
_ Complete control (root or administrator access)
_ Runs until stopped or terminated
_ Incurs hourly cost while running



           [ 1. What is an instance? ]
_ Multiple separate regions located around the globe
_ Each region is completely isolated from all other regions
_ Instances are able to communicate between regions
_ Select a region that meets your needs (latency, legal, community …)




    [ 2. Regions and Availability Zones ]
_ Each region contains multiple Availability Zones
_ Each zone is insulated from failures in other zones
_ Using multiple zones protects against a failure in a single location
_ If you do not specify a zone, Amazon EC2 will choose one for you




    [ 2. Regions and Availability Zones ]
_ Provides a template for the instance being launched
_ Contains the root file system and data needed to boot the instance
_ Currently 15,000 images available worldwide
_ Support for multiple operating systems
_ Images can be private, shared between accounts, or public



    [ 3. Amazon Machine Images (AMI) ]
[ 3. Amazon Machine Images (AMIs) ]
_ Public images have no password for login
_ Key pairs provide a secure login using public/private keys
_ Also used for encryption of the Windows administrator password
_ Create or import a named key pair
_ Public key used within instance for authentication
_ Private key always remains a secret

               [ 4. Security: Key Pairs ]
_ A firewall that controls traffic into a group of instances
_ Default security group available in each region
_ Add rules to allow inbound traffic (port range, source cidr)
_ All other traffic is discarded




         [ 4. Security: Security Groups ]
_ Determine the underlying hardware of the instance
_ Each type offers different compute and memory capabilities
_ Choose the type that best meets the needs of your application
_ Instances can be changed to support vertical scaling




                  [ 5. Instance Types ]
_ Region has been selected: US West (Oregon)
_ Selected an image: Amazon Linux AMI x86_64 EBS
_ Key pair has been created: web-server
_ Configured the security group: tcp 22, tcp 80 and icmp
_ Ready to launch …



        [ 6. Launching the instance ]
1) What is an instance?
2) Regions and Availability Zones
3) Amazon Machine Images (AMIs)
4) Security (key pairs and security groups)
5) Instance types (t1.micro, m1.small, …)
6) Launching the instance

        [ Your first instance re:cap ]
[ Storage ]
1) Local instance storage
2) Amazon Elastic Block Store (EBS)




                        [ Storage ]
_ Temporary block-level storage
_ Physically attached to the host machine
_ Data is NOT persisted when the instance is terminated
_ Cost NOT included in instance hour charge
_ Use for mutating data that needs long-term persistence



              [ 1. Instance Store ]
_ Persistent block-level storage
_ Attached to the instance via the network
_ Data IS persisted when the instance is terminated
_ Supports up to 1 TiB storage per volume
_ Cost NOT included in the instance hourly charge
_ Use for mutating data that needs long-term persistence

          [ 2. Elastic Block Store ]
[ec2-user@ip-10-244-6-217 ~]$ sudo mkfs -t ext3 /dev/sdf
mke2fs 1.42 (29-Nov-2011)
…
Superblock backups stored on blocks:
       32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
       4096000, 7962624, 11239424, 20480000, 23887872

Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

[ec2-user@ip-10-244-6-217 ~]$ sudo mkdir /mnt/data-store

[ec2-user@ip-10-244-6-217 ~]$ sudo mount /dev/sdf /mnt/data-store

[ec2-user@ip-10-244-6-217 ~]$ df -h
Filesystem            Size Used Avail Use% Mounted on
/dev/xvda1            7.9G 923M 6.9G 12% /
tmpfs                 298M     0 298M   0% /dev/shm
/dev/xvdf              99G 188M    94G  1% /mnt/data-store
I n st a n c e A



 I n st a n c e B




I n st a n c e St o r e     Vo l u m es    Sn a psho t s

 Ho st Ma c hi n e        Am a z o n EBS   Am a z o n S3


[ Storage re:cap ]
[ Networking ]
1) Basic networking
2) Elastic IPs
3) Advanced networking with Amazon Virtual Private Cloud (VPC)




                      [ Networking ]
_ Each region provides a flat network topology
_ Instances can communicate within and between Availability Zones
_ Traffic between regions is transferred over the Internet
_ Traffic is charged per GB (free, regional, and Internet)




           [ 1. Networking basics ]
_ Each instance is assigned both a private and public IP address
_ Public IP addresses are reachable over the Internet
_ Private IP addresses are reachable ONLY with the EC2 network
_ Private and Public IP address are lost when the instance is terminated
_ DNS names are provided for both private and public IP addresses



           [ 1. Networking basics ]
_ Static IP addresses designed for dynamic cloud computing
_ Associated with your account, not a specific instance
_ Can be mapped to instances as needed
_ Removes the need for dynamic DNS
_ Incur an hourly cost when not mapped to an instance



        [ 2. Elastic IP addresses ]
54.245.244.224




[ 2. Elastic IP addresses ]
_ Amazon VPC allows you to define your own network with EC2
_ IP addresses are assigned from a specified CIDR range
_ Closely resembles a traditional network (subnets, routers, …)
_ Combined multiple VPCs to form a larger virtual network
_ VPCs can be connected back to you own data center via VPN



       [ 3. Advanced networking ]
Virtual Networking in the Cloud
    Thursday, 16:05 – Venetian B

            Eric Schultz
1) Basic networking
2) Elastic IPs
3) Advanced networking with Amazon VPC




                 [ Networking re:cap ]
[ Monitoring ]
1) Instance status metrics
2) Instance performance metrics
3) Instance alarms




                      [ Monitoring ]
_ EC2 performs automated health checks on all running instances
_ Check for both system and instance impairments
_ System impairments need to be resolved by Amazon EC2
_ Instance impairments indicate a problem within the instance
_ Use instance status to monitor the health of your EC2 fleet



             [ 3. Instance Status ]
_ Powered by Amazon CloudWatch
_ Collects raw instance data to expose performance metrics
_ CPU utilization, disk reads, disk writes, network bytes, …
_ Free at 5 minute granularity; 1 minute available at additional cost
_ Accessible via the AWS Management Console



            [ 3. Instance Metrics ]
_ Monitors a metric and triggers when alarm threshold is breached
_ Sends a Simple Notification Service (SNS) message (email, sms, …)
_ Alarms can be configured on any of the EC2 instance metrics




            [ 3. Instance Alarms ]
[ 3. Instance Alarms ]
Architecting for High Availability on AWS
         Thursday, 11:35 – Venetian A

                 Attila Narin
1) Instance status metrics
2) Instance performance metrics
3) Instance alarms




               [ Monitoring re:cap ]
[ Documentation and Support ]
1) Client interfaces
2) Documentation resources
3) Developer Support




         [ Documentation and Support ]
_ EC2 API Tools provide support for command-line scripting
_ AWS SDKs provide library support for several languages
_ EC2 APIs provide raw access to EC2 resources
_ Use one of more of the above to build your application




           [ 1. Client Interfaces ]
_ http://aws.amazon.com/ec2
_ EC2 Getting Started Guide provides a good walk through
_ EC2 User Guide provides detailed information on all concepts




              [ 2. Documentation ]
_ Provide support to customers using Amazon EC2
_ Staffed by a global team of support professionals
_ Provide free support for instances with a system impairment
_ Paid support options include assistance with best practices




           [ 3. Developer Support ]
Work hard. Have fun. Make history.
We’re eager to hear your feedback on
                         this presentation and on re:Invent!

                          Please fill out an evaluation form
                               when you have a chance




Nov 28, 2012 –   By David Brown -   Presented at AWS re:Invent –   Optimized for 16x9   –   © Amazon Web Services
CPN102 Your First Week with Amazon Elastic Compute Cloud - AWS re: Invent …

Más contenido relacionado

La actualidad más candente

Public Cloud Platforms for .NET Developers
Public Cloud Platforms for .NET DevelopersPublic Cloud Platforms for .NET Developers
Public Cloud Platforms for .NET DevelopersSvetlin Nakov
 
Securing your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security featuresSecuring your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security featuresThe Linux Foundation
 
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...Amazon Web Services
 
Debian Cloud - building the Debian AMIs
Debian Cloud - building the Debian AMIsDebian Cloud - building the Debian AMIs
Debian Cloud - building the Debian AMIsJames Bromberger
 
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...Amazon Web Services
 
Amazon Web Services EC2 Basics
Amazon Web Services EC2 BasicsAmazon Web Services EC2 Basics
Amazon Web Services EC2 BasicsOnur ŞALK
 
PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...Codemotion
 
Xen Cloud Platform Installation Guide
Xen Cloud Platform Installation GuideXen Cloud Platform Installation Guide
Xen Cloud Platform Installation GuideSusheel Thakur
 
Microservices in Unikernels
Microservices in UnikernelsMicroservices in Unikernels
Microservices in UnikernelsMadhuri Yechuri
 
Cloud Computing Hypervisors and Comparison Xen KVM
Cloud Computing Hypervisors and Comparison Xen KVM Cloud Computing Hypervisors and Comparison Xen KVM
Cloud Computing Hypervisors and Comparison Xen KVM cloudresearcher
 
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell PavlicekSecuring Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicekbuildacloud
 
Libcloud and j clouds
Libcloud and j cloudsLibcloud and j clouds
Libcloud and j cloudsDaeMyung Kang
 
Unikernels
UnikernelsUnikernels
Unikernelssally.de
 
Tailoring NAS Proxies for Virtual Machines
Tailoring NAS Proxies for Virtual MachinesTailoring NAS Proxies for Virtual Machines
Tailoring NAS Proxies for Virtual MachinesThe Linux Foundation
 
Virtualization in cloud
Virtualization in cloudVirtualization in cloud
Virtualization in cloudAshok Kumar
 

La actualidad más candente (17)

Public Cloud Platforms for .NET Developers
Public Cloud Platforms for .NET DevelopersPublic Cloud Platforms for .NET Developers
Public Cloud Platforms for .NET Developers
 
Securing your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security featuresSecuring your cloud with Xen's advanced security features
Securing your cloud with Xen's advanced security features
 
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
SRV402 Deep Dive on Amazon EC2 Instances, Featuring Performance Optimization ...
 
Debian Cloud - building the Debian AMIs
Debian Cloud - building the Debian AMIsDebian Cloud - building the Debian AMIs
Debian Cloud - building the Debian AMIs
 
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
AWS re:Invent 2016: Deep Dive on Amazon EC2 Instances, Featuring Performance ...
 
Amazon Web Services EC2 Basics
Amazon Web Services EC2 BasicsAmazon Web Services EC2 Basics
Amazon Web Services EC2 Basics
 
PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...PC = Personal Cloud (or how to use your development machine with Vagrant and ...
PC = Personal Cloud (or how to use your development machine with Vagrant and ...
 
Xen and Apache cloudstack
Xen and Apache cloudstack  Xen and Apache cloudstack
Xen and Apache cloudstack
 
Xen Cloud Platform Installation Guide
Xen Cloud Platform Installation GuideXen Cloud Platform Installation Guide
Xen Cloud Platform Installation Guide
 
Microservices in Unikernels
Microservices in UnikernelsMicroservices in Unikernels
Microservices in Unikernels
 
Cloud Computing Hypervisors and Comparison Xen KVM
Cloud Computing Hypervisors and Comparison Xen KVM Cloud Computing Hypervisors and Comparison Xen KVM
Cloud Computing Hypervisors and Comparison Xen KVM
 
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell PavlicekSecuring Your Cloud With the Xen Hypervisor by Russell Pavlicek
Securing Your Cloud With the Xen Hypervisor by Russell Pavlicek
 
Docker Overview
Docker OverviewDocker Overview
Docker Overview
 
Libcloud and j clouds
Libcloud and j cloudsLibcloud and j clouds
Libcloud and j clouds
 
Unikernels
UnikernelsUnikernels
Unikernels
 
Tailoring NAS Proxies for Virtual Machines
Tailoring NAS Proxies for Virtual MachinesTailoring NAS Proxies for Virtual Machines
Tailoring NAS Proxies for Virtual Machines
 
Virtualization in cloud
Virtualization in cloudVirtualization in cloud
Virtualization in cloud
 

Destacado

ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012
ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012
ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012Amazon Web Services
 
AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012
AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012
AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012Amazon Web Services
 
CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012
CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012
CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012Amazon Web Services
 
CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012
CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012
CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012Amazon Web Services
 
AWS Summit Auckland 2014 | Desktops in the Cloud
 AWS Summit Auckland 2014 | Desktops in the Cloud  AWS Summit Auckland 2014 | Desktops in the Cloud
AWS Summit Auckland 2014 | Desktops in the Cloud Amazon Web Services
 
AWS 101 Lunch and Learn Jan 2013
AWS 101 Lunch and Learn Jan 2013AWS 101 Lunch and Learn Jan 2013
AWS 101 Lunch and Learn Jan 2013Amazon Web Services
 
AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...
AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...
AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...Amazon Web Services
 
Benchmarking and Performance on AWS - AWS India Summit 2012
Benchmarking and Performance on AWS - AWS India Summit 2012Benchmarking and Performance on AWS - AWS India Summit 2012
Benchmarking and Performance on AWS - AWS India Summit 2012Amazon Web Services
 
Kentik Network@Scale (Dan Ellis)
Kentik Network@Scale (Dan Ellis)Kentik Network@Scale (Dan Ellis)
Kentik Network@Scale (Dan Ellis)gvillain
 
Extending your Storage Infrastructure into the AWS Cloud
Extending your Storage Infrastructure into the AWS CloudExtending your Storage Infrastructure into the AWS Cloud
Extending your Storage Infrastructure into the AWS CloudAmazon Web Services
 
BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012
BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012
BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012Amazon Web Services
 
Nokia Big Data and Analytics
Nokia Big Data and AnalyticsNokia Big Data and Analytics
Nokia Big Data and Analyticsjthaskell
 
Big Data Expo 2015 - Schiphol Big Data @ Schiphol
Big Data Expo 2015 - Schiphol Big Data @ SchipholBig Data Expo 2015 - Schiphol Big Data @ Schiphol
Big Data Expo 2015 - Schiphol Big Data @ SchipholBigDataExpo
 
AWS Enabling the Startup Ecosystem - AWS India Summit 2012
AWS Enabling the Startup Ecosystem - AWS India Summit 2012AWS Enabling the Startup Ecosystem - AWS India Summit 2012
AWS Enabling the Startup Ecosystem - AWS India Summit 2012Amazon Web Services
 
In Depth: AWS Shared Security Model
In Depth: AWS Shared Security ModelIn Depth: AWS Shared Security Model
In Depth: AWS Shared Security ModelAmazon Web Services
 
Running Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - WebinarRunning Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - WebinarAmazon Web Services
 

Destacado (18)

ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012
ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012
ARC201 AWS Database Tier Architecture Best Practices - AWS re: Invent 2012
 
AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012
AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012
AWS Partner Presentation-Sonian-AWS Cloud Storage for the Enterprise 2012
 
CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012
CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012
CPN301 The Best Amazon EC2 Features You Never Knew About - AWS re: Invent 2012
 
CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012
CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012
CPN211 My Datacenter Has Walls That Move - AWS re: Invent 2012
 
AWS Summit Auckland 2014 | Desktops in the Cloud
 AWS Summit Auckland 2014 | Desktops in the Cloud  AWS Summit Auckland 2014 | Desktops in the Cloud
AWS Summit Auckland 2014 | Desktops in the Cloud
 
AWS 101 Lunch and Learn Jan 2013
AWS 101 Lunch and Learn Jan 2013AWS 101 Lunch and Learn Jan 2013
AWS 101 Lunch and Learn Jan 2013
 
Jz 101 t
Jz 101 tJz 101 t
Jz 101 t
 
AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...
AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...
AWS Customer Presentation – What's Up Interactive – AWS Cloud Storage for the...
 
Benchmarking and Performance on AWS - AWS India Summit 2012
Benchmarking and Performance on AWS - AWS India Summit 2012Benchmarking and Performance on AWS - AWS India Summit 2012
Benchmarking and Performance on AWS - AWS India Summit 2012
 
Kentik Network@Scale (Dan Ellis)
Kentik Network@Scale (Dan Ellis)Kentik Network@Scale (Dan Ellis)
Kentik Network@Scale (Dan Ellis)
 
Extending your Storage Infrastructure into the AWS Cloud
Extending your Storage Infrastructure into the AWS CloudExtending your Storage Infrastructure into the AWS Cloud
Extending your Storage Infrastructure into the AWS Cloud
 
BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012
BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012
BDT303 Data Science with Elastic MapReduce - AWS re: Invent 2012
 
Nokia Big Data and Analytics
Nokia Big Data and AnalyticsNokia Big Data and Analytics
Nokia Big Data and Analytics
 
Big Data Expo 2015 - Schiphol Big Data @ Schiphol
Big Data Expo 2015 - Schiphol Big Data @ SchipholBig Data Expo 2015 - Schiphol Big Data @ Schiphol
Big Data Expo 2015 - Schiphol Big Data @ Schiphol
 
AWS Enabling the Startup Ecosystem - AWS India Summit 2012
AWS Enabling the Startup Ecosystem - AWS India Summit 2012AWS Enabling the Startup Ecosystem - AWS India Summit 2012
AWS Enabling the Startup Ecosystem - AWS India Summit 2012
 
In Depth: AWS Shared Security Model
In Depth: AWS Shared Security ModelIn Depth: AWS Shared Security Model
In Depth: AWS Shared Security Model
 
deepfield_networks
deepfield_networksdeepfield_networks
deepfield_networks
 
Running Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - WebinarRunning Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
 

Similar a CPN102 Your First Week with Amazon Elastic Compute Cloud - AWS re: Invent …

Introduction to Azure Cloud Storage
Introduction to Azure Cloud StorageIntroduction to Azure Cloud Storage
Introduction to Azure Cloud StorageGanga R Jaiswal
 
Cloud computing security and privacy
Cloud computing security and privacyCloud computing security and privacy
Cloud computing security and privacyAdeel Javaid
 
Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...
Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...
Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...Amazon Web Services
 
Technical Essentials Training: AWS Innovate Ottawa
Technical Essentials Training: AWS Innovate OttawaTechnical Essentials Training: AWS Innovate Ottawa
Technical Essentials Training: AWS Innovate OttawaAmazon Web Services
 
Developing And Running A Website On Amazon S E
Developing And Running A Website On Amazon S EDeveloping And Running A Website On Amazon S E
Developing And Running A Website On Amazon S Ejaymuntz
 
How to run your Hadoop Cluster in 10 minutes
How to run your Hadoop Cluster in 10 minutesHow to run your Hadoop Cluster in 10 minutes
How to run your Hadoop Cluster in 10 minutesVladimir Simek
 
Case study of amazon EC2 by Akash Badone
Case study of amazon EC2 by Akash BadoneCase study of amazon EC2 by Akash Badone
Case study of amazon EC2 by Akash BadoneAkash Badone
 
AWS 101, London - September 2014
AWS 101, London - September 2014AWS 101, London - September 2014
AWS 101, London - September 2014Ian Massingham
 
Module 2: AWS Foundational Services - AWSome Day Online Conference
Module 2: AWS Foundational Services - AWSome Day Online ConferenceModule 2: AWS Foundational Services - AWSome Day Online Conference
Module 2: AWS Foundational Services - AWSome Day Online ConferenceAmazon Web Services
 
Module 2 AWS Foundational Services - AWSome Day Online Conference
Module 2 AWS Foundational Services - AWSome Day Online Conference Module 2 AWS Foundational Services - AWSome Day Online Conference
Module 2 AWS Foundational Services - AWSome Day Online Conference Amazon Web Services
 
Elastic Compute Cloud (EC2) on AWS Presentation
Elastic Compute Cloud (EC2) on AWS PresentationElastic Compute Cloud (EC2) on AWS Presentation
Elastic Compute Cloud (EC2) on AWS PresentationKnoldus Inc.
 
The IoT Academy_awstraining_part2_aws_ec2_iaas
The IoT Academy_awstraining_part2_aws_ec2_iaasThe IoT Academy_awstraining_part2_aws_ec2_iaas
The IoT Academy_awstraining_part2_aws_ec2_iaasThe IOT Academy
 
AWSome Day Iceland - Technical Track
AWSome Day Iceland - Technical TrackAWSome Day Iceland - Technical Track
AWSome Day Iceland - Technical TrackAmazon Web Services
 

Similar a CPN102 Your First Week with Amazon Elastic Compute Cloud - AWS re: Invent … (20)

IP Expo - What is AWS?
IP Expo - What is AWS?IP Expo - What is AWS?
IP Expo - What is AWS?
 
Aws interview questions
Aws interview questionsAws interview questions
Aws interview questions
 
Introduction to Azure Cloud Storage
Introduction to Azure Cloud StorageIntroduction to Azure Cloud Storage
Introduction to Azure Cloud Storage
 
Cloud computing security and privacy
Cloud computing security and privacyCloud computing security and privacy
Cloud computing security and privacy
 
AWS 101 December 2014
AWS 101 December 2014AWS 101 December 2014
AWS 101 December 2014
 
Cloud ppt
Cloud pptCloud ppt
Cloud ppt
 
Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...
Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...
Module 2: AWS Infrastructure – Compute, Storage and Networking - AWSome Day O...
 
Technical Essentials Training: AWS Innovate Ottawa
Technical Essentials Training: AWS Innovate OttawaTechnical Essentials Training: AWS Innovate Ottawa
Technical Essentials Training: AWS Innovate Ottawa
 
Developing And Running A Website On Amazon S E
Developing And Running A Website On Amazon S EDeveloping And Running A Website On Amazon S E
Developing And Running A Website On Amazon S E
 
How to run your Hadoop Cluster in 10 minutes
How to run your Hadoop Cluster in 10 minutesHow to run your Hadoop Cluster in 10 minutes
How to run your Hadoop Cluster in 10 minutes
 
Case study of amazon EC2 by Akash Badone
Case study of amazon EC2 by Akash BadoneCase study of amazon EC2 by Akash Badone
Case study of amazon EC2 by Akash Badone
 
AWS 101, London - September 2014
AWS 101, London - September 2014AWS 101, London - September 2014
AWS 101, London - September 2014
 
Module 2: AWS Foundational Services - AWSome Day Online Conference
Module 2: AWS Foundational Services - AWSome Day Online ConferenceModule 2: AWS Foundational Services - AWSome Day Online Conference
Module 2: AWS Foundational Services - AWSome Day Online Conference
 
Module 2 AWS Foundational Services - AWSome Day Online Conference
Module 2 AWS Foundational Services - AWSome Day Online Conference Module 2 AWS Foundational Services - AWSome Day Online Conference
Module 2 AWS Foundational Services - AWSome Day Online Conference
 
Elastic Compute Cloud (EC2) on AWS Presentation
Elastic Compute Cloud (EC2) on AWS PresentationElastic Compute Cloud (EC2) on AWS Presentation
Elastic Compute Cloud (EC2) on AWS Presentation
 
AWSomeDays 2018 TechTrack
AWSomeDays 2018 TechTrackAWSomeDays 2018 TechTrack
AWSomeDays 2018 TechTrack
 
Your First Week with Amazon EC2
Your First Week with Amazon EC2Your First Week with Amazon EC2
Your First Week with Amazon EC2
 
The IoT Academy_awstraining_part2_aws_ec2_iaas
The IoT Academy_awstraining_part2_aws_ec2_iaasThe IoT Academy_awstraining_part2_aws_ec2_iaas
The IoT Academy_awstraining_part2_aws_ec2_iaas
 
AWS 101 Event - 16 July 2013
AWS 101 Event - 16 July 2013AWS 101 Event - 16 July 2013
AWS 101 Event - 16 July 2013
 
AWSome Day Iceland - Technical Track
AWSome Day Iceland - Technical TrackAWSome Day Iceland - Technical Track
AWSome Day Iceland - Technical Track
 

Más de Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 

Más de Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

CPN102 Your First Week with Amazon Elastic Compute Cloud - AWS re: Invent …

  • 1.
  • 2. Each day … AWS adds the equivalent server capacity to power Amazon.com when it was $2.76 B enterprise. Werner Vogels, CTO
  • 3. Each day … one third of web surfers visit a site powered by Amazon Web Services. The Inquirer
  • 4. Each day … one percent of Internet traffic in North America flows through Amazon Web Services. DeepField Networks
  • 5. David Brown Sr. Manager, Software Development Amazon EC2 Nov 28, 2012 – By David Brown - Presented at AWS re:Invent – Optimized for 16x9 – © Amazon Web Services
  • 6. [ Cape Town, South Africa ]
  • 8. 1) Launching your first instance 2) Storage options 3) Networking fundamentals 4) Monitoring and availability 5) Documentation and support [ The Plan ]
  • 9.
  • 10. [ Your first instance ]
  • 11. 1) What is an instance? 2) Regions and Availability Zones 3) Amazon Machine Images (AMIs) 4) Security (key pairs and security groups) 5) Instance types (t1.micro, m1.small, …) 6) Launching the instance [ Your first instance ]
  • 12. _ Virtual server running within an Amazon EC2 data center _ Accessible remotely (Secure Shell, Remote Desktop Protocol, …) _ Complete control (root or administrator access) _ Runs until stopped or terminated _ Incurs hourly cost while running [ 1. What is an instance? ]
  • 13. _ Multiple separate regions located around the globe _ Each region is completely isolated from all other regions _ Instances are able to communicate between regions _ Select a region that meets your needs (latency, legal, community …) [ 2. Regions and Availability Zones ]
  • 14.
  • 15.
  • 16. _ Each region contains multiple Availability Zones _ Each zone is insulated from failures in other zones _ Using multiple zones protects against a failure in a single location _ If you do not specify a zone, Amazon EC2 will choose one for you [ 2. Regions and Availability Zones ]
  • 17.
  • 18. _ Provides a template for the instance being launched _ Contains the root file system and data needed to boot the instance _ Currently 15,000 images available worldwide _ Support for multiple operating systems _ Images can be private, shared between accounts, or public [ 3. Amazon Machine Images (AMI) ]
  • 19. [ 3. Amazon Machine Images (AMIs) ]
  • 20.
  • 21. _ Public images have no password for login _ Key pairs provide a secure login using public/private keys _ Also used for encryption of the Windows administrator password _ Create or import a named key pair _ Public key used within instance for authentication _ Private key always remains a secret [ 4. Security: Key Pairs ]
  • 22.
  • 23.
  • 24.
  • 25.
  • 26. _ A firewall that controls traffic into a group of instances _ Default security group available in each region _ Add rules to allow inbound traffic (port range, source cidr) _ All other traffic is discarded [ 4. Security: Security Groups ]
  • 27.
  • 28.
  • 29. _ Determine the underlying hardware of the instance _ Each type offers different compute and memory capabilities _ Choose the type that best meets the needs of your application _ Instances can be changed to support vertical scaling [ 5. Instance Types ]
  • 30. _ Region has been selected: US West (Oregon) _ Selected an image: Amazon Linux AMI x86_64 EBS _ Key pair has been created: web-server _ Configured the security group: tcp 22, tcp 80 and icmp _ Ready to launch … [ 6. Launching the instance ]
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47. 1) What is an instance? 2) Regions and Availability Zones 3) Amazon Machine Images (AMIs) 4) Security (key pairs and security groups) 5) Instance types (t1.micro, m1.small, …) 6) Launching the instance [ Your first instance re:cap ]
  • 49. 1) Local instance storage 2) Amazon Elastic Block Store (EBS) [ Storage ]
  • 50. _ Temporary block-level storage _ Physically attached to the host machine _ Data is NOT persisted when the instance is terminated _ Cost NOT included in instance hour charge _ Use for mutating data that needs long-term persistence [ 1. Instance Store ]
  • 51.
  • 52. _ Persistent block-level storage _ Attached to the instance via the network _ Data IS persisted when the instance is terminated _ Supports up to 1 TiB storage per volume _ Cost NOT included in the instance hourly charge _ Use for mutating data that needs long-term persistence [ 2. Elastic Block Store ]
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59. [ec2-user@ip-10-244-6-217 ~]$ sudo mkfs -t ext3 /dev/sdf mke2fs 1.42 (29-Nov-2011) … Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872 Allocating group tables: done Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and filesystem accounting information: done [ec2-user@ip-10-244-6-217 ~]$ sudo mkdir /mnt/data-store [ec2-user@ip-10-244-6-217 ~]$ sudo mount /dev/sdf /mnt/data-store [ec2-user@ip-10-244-6-217 ~]$ df -h Filesystem Size Used Avail Use% Mounted on /dev/xvda1 7.9G 923M 6.9G 12% / tmpfs 298M 0 298M 0% /dev/shm /dev/xvdf 99G 188M 94G 1% /mnt/data-store
  • 60. I n st a n c e A I n st a n c e B I n st a n c e St o r e Vo l u m es Sn a psho t s Ho st Ma c hi n e Am a z o n EBS Am a z o n S3 [ Storage re:cap ]
  • 62. 1) Basic networking 2) Elastic IPs 3) Advanced networking with Amazon Virtual Private Cloud (VPC) [ Networking ]
  • 63. _ Each region provides a flat network topology _ Instances can communicate within and between Availability Zones _ Traffic between regions is transferred over the Internet _ Traffic is charged per GB (free, regional, and Internet) [ 1. Networking basics ]
  • 64. _ Each instance is assigned both a private and public IP address _ Public IP addresses are reachable over the Internet _ Private IP addresses are reachable ONLY with the EC2 network _ Private and Public IP address are lost when the instance is terminated _ DNS names are provided for both private and public IP addresses [ 1. Networking basics ]
  • 65. _ Static IP addresses designed for dynamic cloud computing _ Associated with your account, not a specific instance _ Can be mapped to instances as needed _ Removes the need for dynamic DNS _ Incur an hourly cost when not mapped to an instance [ 2. Elastic IP addresses ]
  • 66. 54.245.244.224 [ 2. Elastic IP addresses ]
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73. _ Amazon VPC allows you to define your own network with EC2 _ IP addresses are assigned from a specified CIDR range _ Closely resembles a traditional network (subnets, routers, …) _ Combined multiple VPCs to form a larger virtual network _ VPCs can be connected back to you own data center via VPN [ 3. Advanced networking ]
  • 74. Virtual Networking in the Cloud Thursday, 16:05 – Venetian B Eric Schultz
  • 75. 1) Basic networking 2) Elastic IPs 3) Advanced networking with Amazon VPC [ Networking re:cap ]
  • 77. 1) Instance status metrics 2) Instance performance metrics 3) Instance alarms [ Monitoring ]
  • 78. _ EC2 performs automated health checks on all running instances _ Check for both system and instance impairments _ System impairments need to be resolved by Amazon EC2 _ Instance impairments indicate a problem within the instance _ Use instance status to monitor the health of your EC2 fleet [ 3. Instance Status ]
  • 79.
  • 80.
  • 81. _ Powered by Amazon CloudWatch _ Collects raw instance data to expose performance metrics _ CPU utilization, disk reads, disk writes, network bytes, … _ Free at 5 minute granularity; 1 minute available at additional cost _ Accessible via the AWS Management Console [ 3. Instance Metrics ]
  • 82.
  • 83. _ Monitors a metric and triggers when alarm threshold is breached _ Sends a Simple Notification Service (SNS) message (email, sms, …) _ Alarms can be configured on any of the EC2 instance metrics [ 3. Instance Alarms ]
  • 84. [ 3. Instance Alarms ]
  • 85. Architecting for High Availability on AWS Thursday, 11:35 – Venetian A Attila Narin
  • 86. 1) Instance status metrics 2) Instance performance metrics 3) Instance alarms [ Monitoring re:cap ]
  • 87. [ Documentation and Support ]
  • 88. 1) Client interfaces 2) Documentation resources 3) Developer Support [ Documentation and Support ]
  • 89. _ EC2 API Tools provide support for command-line scripting _ AWS SDKs provide library support for several languages _ EC2 APIs provide raw access to EC2 resources _ Use one of more of the above to build your application [ 1. Client Interfaces ]
  • 90. _ http://aws.amazon.com/ec2 _ EC2 Getting Started Guide provides a good walk through _ EC2 User Guide provides detailed information on all concepts [ 2. Documentation ]
  • 91. _ Provide support to customers using Amazon EC2 _ Staffed by a global team of support professionals _ Provide free support for instances with a system impairment _ Paid support options include assistance with best practices [ 3. Developer Support ]
  • 92. Work hard. Have fun. Make history.
  • 93. We’re eager to hear your feedback on this presentation and on re:Invent! Please fill out an evaluation form when you have a chance Nov 28, 2012 – By David Brown - Presented at AWS re:Invent – Optimized for 16x9 – © Amazon Web Services