Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

106
Masterclass Amazon EC2 Ian Massingham Technology Evangelist AWS LIVE @IanMmmm

Transcript of Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Page 1: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

MasterclassAmazonEC2Ian Massingham Technology Evangelist AWS

LIVE

@IanMmmm

Page 2: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Masterclass

Intended to educate you on how to get the best from AWS services

Show you how things work and how to get things done

A technical deep dive that goes beyond the basics123

Page 3: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Amazon EC2

Provides resizable compute capacity in the Cloud Designed to make web-scale cloud computing easier

A true virtual computing environment Launch instances with a variety of operating systems

Run as many or few systems as you desire

Page 4: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Amazon EC2

Elastic Web-Scale

Flexible

Inexpensive Secure

Reliable

Completely Controlled

Easy to Start

Page 5: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Amazon EC2

Page 6: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv
Page 7: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv
Page 8: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Recent Amazon EC2/Compute Services Features

Page 9: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Agenda

Amazon EC2 Concepts & FundamentalsStorage & Networking

Monitoring, Metrics & Logs Security & Access Control

Deployment Cost Optimisation

Page 10: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

AMAZON EC2 CONCEPTS

Page 11: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

The geographical region where Amazon EC2 will launch the instances that you create Choose a region to optimise latency, minimise costs, or address regulatory requirements

11 regions around the world

REGIONS

Page 12: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

AVAILABLILITY ZONES

Distinct locations that are engineered to be insulated from failures in other Availability Zones

Provide inexpensive, low latency network connectivity to other Availability Zones in the same Region

Regions contain between 2 & 5 EC2 availability zones

Page 13: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Amazon EC2 provides a wide selection of instance types optimized to fit different use cases

Instance types comprise varying combinations of CPU, memory, storage, and networking capacity

INSTANCESc4.2xlarge r3.4xlarge

Page 14: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Purchasing options for cost optimization

AMAZON EC2 FUNDAMENTALS

Available in different locations

Extensive list of supported operating systems & software

Choice of instance families with differing

resource ratios

Integrated with other AWS Services

Import and export virtual machines

Page 15: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Available in Different Locations

docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html

Page 16: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/ec2/faqs/

Extensive list of supported operating systems & software

RedHat Linux, Windows Server, SuSE Linux, Ubuntu, Fedora, Debian, Cent OS, Gentoo Linux, Oracle Linux, and FreeBSD

Page 17: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/marketplace

Extensive list of supported operating systems & software

Page 18: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Integrated with other AWS Services

▶︎ Amazon Elastic Block Store ▶︎ Amazon CloudWatch ▶︎ Amazon Virtual Private Cloud ▶︎ AWS Identify and Access Management

Page 19: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/ec2/purchasing-options/

Purchasing options for cost optimisationOn-Demand Instances

Pay for compute capacity by the hour with no long-term commitments or upfront payments

Reserved Instances Provide you with a significant discount (up to 75%) compared to On-Demand Instance pricing

Spot Instances Purchase compute capacity with no upfront commitment and at hourly rates usually lower than the On-Demand rate

Page 20: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/ec2/vm-import/

Import and export virtual machines

Page 21: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/ec2/instance-types/

Choice of instance families with differing

resource ratios

Page 22: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

i2.xlarge (Storage-Optimized)

FamilyGeneration

Type

Page 23: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

T2 Instances : Low Cost EC2 Instances with Burstable Performance

docs.aws.amazon.com/AWSEC2/latest/UserGuide/t2-instances.html

Page 24: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

C4 Instances : Highest Compute Performance on Amazon EC2

docs.aws.amazon.com/AWSEC2/latest/UserGuide/c4-instances.html

Page 25: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Launch your instanceStart an EC2 instance

using console, CLI tools or an AWS SDK

Page 26: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Launch your instance

Configure your instanceConfigure your instance

using an AMI or automation tools

Page 27: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

$curlhttp://169.254.169.254/latest/meta-data/ami-idami-launch-indexami-manifest-pathblock-device-mapping/hostnameinstance-actioninstance-idinstance-typekernel-idlocal-hostnamelocal-ipv4macnetwork/placement/public-hostnamepublic-ipv4public-keys/reservation-idsecurity-groupsservices/

$curlhttp://169.254.169.254/latest/user-data

EC2 Instance Metadata

docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html

Page 28: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Linux #!/bin/bashyumupdate-y

Windows <script>…</script>

or

<powershell>…</powershell>

EC2 User dataAWS provided AMIs include services that access

and execute the contents of the User data attribute in EC2 Instance Metadata at instance

creation time

This can be used for automated instance bootstrapping at instance creation time

Page 29: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Launch your instance

Configure your instance

Connect to your instance (optional)Connect to your

instance using standard protocols (ssh/RDP)

Page 30: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Launch your instance

Configure your instance

Connect to your instance (optional)

Terminate your instance Terminate your instance to minimise costs

Page 31: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

DEMO: GETTING STARTED WITH EC2

Page 32: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

AWS CLI

awsec2run-instances\--image-idami-a10897d6\--instance-typet2.micro\--count1\--security-group-idssg-0ba94d6e\--key-nameMyKeyPair

Amazon Machine Image ID

docs.aws.amazon.com/cli/latest/reference/ec2/index.html

Page 33: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

AWS CLI

awsec2run-instances\--image-idami-a10897d6\--instance-typet2.micro\--count1\--security-group-idssg-0ba94d6e\--key-nameMyKeyPair

EC2 instance type to run

Page 34: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

AWS CLI

awsec2run-instances\--image-idami-a10897d6\--instance-typet2.micro\--count1\--security-group-idssg-0ba94d6e\--key-nameMyKeyPair

Number of instances to run

Page 35: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

AWS CLI

awsec2run-instances\--image-idami-a10897d6\--instance-typet2.micro\--count1\--security-group-idssg-0ba94d6e\--key-nameMyKeyPair

Security group to apply to instance(s)

Page 36: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

AWS CLI

awsec2run-instances\--image-idami-a10897d6\--instance-typet2.micro\--count1\--security-group-idssg-0ba94d6e\--key-nameMyKeyPair

Key pair to secure access to instance(s)

Page 37: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

AWS CLI

Page 38: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

Detailed help on a specific command

In this case:

awsec2run-instances

AWS CLI

Page 39: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control via AWS CLI

Detailed help on a specific command

In this case:

awsec2run-instances

AWS CLI

docs.aws.amazon.com/cli/latest/reference/ec2/index.html

Page 40: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

>>>importboto3>>>ec2=boto3.resource('ec2')>>>ec2.create_instances(ImageId='ami-a10897d6',MinCount=1,MaxCount=1,InstanceType='t2.micro',KeyName='ManagementKeyPair',SecurityGroupIds=['sg-0ba94d6e'])

[ec2.Instance(id='i-a459450e')]>>>ec2.instances.filter(InstanceIds=[‘i-a459450e’]).terminate()[{u'TerminatingInstances':[{u'InstanceId':'i-a459450e',u'CurrentState':{u'Code':32,u'Name':'shutting-down'},u'PreviousState':{u'Code':0,u'Name':'pending'}}],'ResponseMetadata':{'HTTPStatusCode':200,'RequestId':'f3956d8f-ce21-47f2-88fc-ac53cde3137f'}}]>>>

Python Boto3Launching and Terminating Instances

github.com/boto/boto3

Page 41: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

STORAGE

Page 42: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Data Storage Options

Page 43: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Instance Store Physically attached

to the host computer

Type and amount differsby instance type

Data dependent upon

instance lifecycle

Amazon EBS Persistent block level

storage volumes

Magnetic General Purpose (SSD) Provisioned IOPS (SSD)

Data independent of instance lifecycle

Page 44: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Instance Store Physically attached

to the host computer

Type and amount differsby instance type

Data dependent upon

instance lifecycle

Instance store data persists if: • The OS in the instance is rebooted • The instance is restarted

Instance store data is lost when: • An underlying instance drive fails • An EBS-backed instance is stopped • The instance is terminated

Page 45: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

EBS Volumes

EBS volumes automatically replicated within the Availability Zone (AZ) in which are created

Use EBS-optimized instances to deliver dedicated throughput

between Amazon EC2 and Amazon EBS, with options between 500 and

4,000 Mbps, depending on the instance type

Amazon EBS Persistent block level

storage volumes

Magnetic General Purpose (SSD) Provisioned IOPS (SSD)

Data independent of instance lifecycle

Page 46: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

EBS Volumes

EBS volumes attached to a running instance automatically detach from the instance with their data intact when that instance is terminated.

EBS volumes created and attached to an instance at launch are deleted

when that instance is terminated. You can modify this behavior by changing

the value of the flag DeleteOnTermination.

Amazon EBS Persistent block level

storage volumes

Magnetic General Purpose (SSD) Provisioned IOPS (SSD)

Data independent of instance lifecycle

Page 47: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

EBS Snapshots

An EBS snapshot is a point-in-time backup copy of an EBS volume that

is stored in Amazon S3

Snapshots are incremental, only the blocks that have changed after your

most recent snapshot are saved

Amazon EBS Persistent block level

storage volumes

Magnetic General Purpose (SSD) Provisioned IOPS (SSD)

Data independent of instance lifecycle

Page 48: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

EBS Snapshots

When you delete a snapshot, only the data exclusive to that snapshot is

removed

Can be shared across AWS accounts or copied across AWS regions

Amazon EBS Persistent block level

storage volumes

Magnetic General Purpose (SSD) Provisioned IOPS (SSD)

Data independent of instance lifecycle

Page 49: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

EBS Encryption

Data stored at rest on the volume, disk I/O, and snapshots created from

the volume are all encrypted

The encryption occurs on the servers that host Amazon EC2 instances, providing encryption of data-in-

transit from EC2 instances to EBS storage

Amazon EBS Persistent block level

storage volumes

Magnetic General Purpose (SSD) Provisioned IOPS (SSD)

Data independent of instance lifecycle

Page 50: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

EBS Encryption

Uses AWS Key Management Service (AWS KMS) master keys

unless you select a Customer Master Key (CMK).

Creating your own CMK gives you the ability to create, rotate, disable,

define access controls, and audit the encryption keys.

Amazon EBS Persistent block level

storage volumes

Magnetic General Purpose (SSD) Provisioned IOPS (SSD)

Data independent of instance lifecycle

Page 51: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

General Purpose (SSD)

Up to 16TB 10,000 IOPS (burst)

Up to 160 MBps

Provisioned IOPS (SSD)

Up to 16TB 20,000 IOPS

Up to 320 MBps

New EBS Volumes: Larger & Faster

Page 52: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

DEMO: EC2 STORAGE

Page 53: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

NETWORKING

Page 54: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Virtual Private Cloud

aws.amazon.com/vpc/

Page 55: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

A virtual network in your own logically isolated area within the AWS cloud populated by

infrastructure, platform, and application services that share common security and interconnection

Amazon VPC

aws.amazon.com/vpc/

Page 56: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

▶︎ Elastic Network Interface (ENI) ▶︎ Subnet ▶︎ Network Access Control List (NACL) ▶︎ Route Table ▶︎ Internet Gateway ▶︎ Virtual Private Gateway ▶︎ Route 53 Private Hosted Zone

VPC Networking

Page 57: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

VPC Network Topology

A VPC can span multiple AZs, but each subnet must reside entirely within one AZ

Use at least 2 subnets in different AZs for each layer of your network

Page 58: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Control of subnets and routing tables

Page 59: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

VPC Creation with the VPC Wizard

Page 60: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

VPC Creation with AWS CloudFormation

Page 61: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

VPC PeeringA networking connection between two VPCs

docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-peering.html

Page 62: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

ClassicLinkPrivate Communication Between Classic EC2 Instances & VPC Resources

aws.amazon.com/blogs/aws/classiclink-private-communication-between-classic-ec2-instances-vpc-resources/

Page 63: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Elastic Load-Balancing

aws.amazon.com/elasticloadbalancing/

Page 64: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

▶︎ Timeout Configuration ▶︎ Connection Draining ▶︎ Cross-zone Load Balancing

aws.amazon.com/elasticloadbalancing/

Page 65: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

DEMO: CREATING AN ELB

Page 66: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

MONITORING, METRICS & LOGS

Page 67: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

A monitoring service for AWS cloud resources and the applications you run on AWS.

Use Amazon CloudWatch to collect and track metrics, collect and monitor log files, and set alarms.

Amazon CloudWatch

aws.amazon.com/cloudwatch/

Page 68: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Amazon CloudWatch

Page 69: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

CloudWatch Metrics in the EC2 Console

Page 70: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Monitoring Scripts for EC2 Instances

docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/mon-scripts.html

Page 71: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Monitor applications and systems using log data Store in a highly durable storage and set retention

Access your log files via Web, CLI or SDK

Amazon EC2 (Linux & Windows) AWS Lambda

Amazon CloudWatch Logs

docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatchLogs.html

Page 72: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

CloudWatch Metrics & Alarms

AWS Resource

Your Custom

Data

Metric Alarm Action

CloudWatch

Page 73: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

CloudWatch Logs + Filter

AWS Resource

Your Custom

Data

Metric Alarm Action

CloudWatch

FilterLogs

Page 74: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Alarm Actions

Action

Notification (SNS)

Auto Scaling Action

EC2 Action

Recover

Stop

Terminate

Amazon EC2 Auto Recovery

Use this action together with

Status Checks to automate

instance recovery

Page 75: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

SECURITY & ACCESS CONTROL

Page 76: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Access Credentials

Access key and secret key used to authenticate when accessing AWS APIs

Key Pairs

Public key and private key used to authenticate when accessing

an Amazon EC2 instance

Page 77: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

USE IAM ROLES TO PASS ACCESS CREDENTIALS TO AN INSTANCE

Page 78: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

DEMO: USING IAM ROLES

Page 79: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

DEPLOYMENT

Page 80: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

“IF YOU NEED TO SSH INTO YOUR INSTANCE, YOUR DEPLOYMENT

PROCESS IS BROKEN.”

Page 81: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

AMAZON MACHINE IMAGES

Page 82: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Amazon maintained

Set of Linux and Windows images

Kept up to date by Amazon in each

region

Community maintained

Images published by other AWS users

Managed and maintained by

Marketplace partners

Your machine images

AMIs you have created from EC2

instances Can be kept private or shared with other

accounts

Page 83: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Bake anAMI

Start an instance Configure the instance

Create an AMI from your instance Start new ones from the AMI

Page 84: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Bake anAMI

Start an instance Configure the instance

Create an AMI from your instance Start new ones from the AMI

Configure dynamically

Launch an instance Use metadata service and

cloud-init to perform actions on instance when it launches

Page 85: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Bake anAMI

Build your base images and setup custom initialisation

scripts Maintain your ‘golden’ base

Configure dynamically

Use bootstrapping to pass custom information in and

perform post launch tasks like pulling code from SVN

+

Page 86: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Time consuming configuration startup time

Static configurationsless change management

Bake anAMI

Configure dynamically

Page 87: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Continuous deploymentlatest code

Environment specificdev-test-prod

Bake anAMI

Configure dynamically

Page 88: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

AUTO SCALING

Page 89: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Maintain EC2 instance availability

Detects impaired EC2 instances Replaces the instances automatically

Automatically Scale Your Amazon EC2 Fleet

Follow the demand curve for your applications

Reduce the need to manually provision Amazon EC2 capacity

Run at optimal utilisation

Page 90: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Reusable Instance Templates Provision instances based on a reusable template you define, called a launch configuration.

Automated Provisioning Keep your Auto Scaling group healthy and balanced, whether you need one instance or 1,000.

Adjustable Capacity Maintain a fixed group size or adjust dynamically based on Amazon CloudWatch metrics.

Page 91: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Launch Configuration

Describes what Auto Scaling will create when adding Instances

Only one active launch configuration at a time

awsautoscalingcreate-launch-configuration--launch-configuration-namelaunch-config--image-idami-54cf5c3d--instance-typem3.medium--key-namemykey--security-groupswebservers

Auto Scaling Group

Auto Scaling managed grouping of EC2 instances

Automatically scale the number of instances by policy

awsautoscalingcreate-auto-scaling-group--auto-scaling-group-nameautoscaling-group--availability-zoneseu-west-1aeu-west-1b--launch-configurationlaunch-config--load-balancer-namesmyELB--min-size1--max-size5

Auto Scaling Policy

Parameters for performing an Auto Scaling action

Scale Up/Down and by how much

awsautoscalingput-scaling-policy--auto-scaling-group-nameautoscaling-group--policy-nameautoscaling-policy--min-adjustment-magnitude=2--adjustment-typeChangeInCapacity--cooldown300

Page 92: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

00:00 01:00 02:00 03:00 04:00 05:00 06:00 07:00 08:00 09:00 10:00 11:00 12:00 13:00 14:00 15:00 16:00 17:00 18:00 19:00 20:00 21:00 22:00 23:00

Utilisation & Auto Scaling Granularity

Page 93: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

00:00 01:00 02:00 03:00 04:00 05:00 06:00 07:00 08:00 09:00 10:00 11:00 12:00 13:00 14:00 15:00 16:00 17:00 18:00 19:00 20:00 21:00 22:00 23:00

Utilisation & Auto Scaling Granularity

41 Instance Hoursm3.large @ $0.154/hr

= $6.314/day

Page 94: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

00:00 01:00 02:00 03:00 04:00 05:00 06:00 07:00 08:00 09:00 10:00 11:00 12:00 13:00 14:00 15:00 16:00 17:00 18:00 19:00 20:00 21:00 22:00 23:00

Utilisation & Auto Scaling Granularity

70 Instance Hourst2.small @ $0.028/hr

= $1.96/day

69% SAVING

Page 95: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

NewNew Scaling Policies for More Responsive Scaling

aws.amazon.com/blogs/aws/auto-scaling-update-new-scaling-policies-for-more-responsive-scaling

Page 96: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

OTHER DEPLOYMENT OPTIONS

Page 97: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

AWS CodeDeploy

• Scale from 1 instance to thousands • Deploy without downtime • Centralize deployment control and monitoring • On-Premises support

StagingCodeDeployv1, v2, v3

Production

Dev

Coordinate automated deployments, just like Amazon

Application Revisions

Deployment Groups

aws.amazon.com/codedeploy/

Page 98: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Amazon EC2 Container ServiceA highly scalable, high performance container management service

aws.amazon.com/ecs/

Launch and terminate Docker containers

Across a cluster of EC2 instances

Mount persistent volumes at launch

Private Docker repositories

Page 99: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/blogs/aws/ec2-container-service-latest-features-customer-successes-and-more

Amazon EC2 Container Service: New Features

Support coming soon for: Docker Compose Docker Swarm

Page 100: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

COST OPTIMIZATION

Page 101: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

On-Demand Instances Pay for compute capacity by the hour with no long-term commitments or upfront payments

Reserved Instances Provide you with a significant discount (up to 75%) compared to On-Demand Instance pricing

Spot Instances Purchase compute capacity with no upfront commitment and at hourly rates usually lower than the On-Demand rate

aws.amazon.com/ec2/purchasing-options/

Page 102: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/ec2/purchasing-options/reserved-instances/getting-started/

Getting Started with Reserved Instances

Page 103: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Spot Instances

Spot Instances are spare Amazon EC2 instances that you can bid on.

The Spot price fluctuates in real-time based on supply and demand.

When your bid exceeds the Spot Price and spot capacity is available, your Spot instance is launched and will run until the Spot market price exceeds your bid (a Spot interruption).

aws.amazon.com/ec2/purchasing-options/spot-instances/

Page 104: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

RESOURCES YOU CAN USETO LEARN MORE

Page 105: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

aws.amazon.com/ec2

Page 106: Amazon EC2 - Masterclass - Pop-up Loft Tel Aviv

Ian MassinghamTechnology Evangelist, [email protected]