SlideShare uma empresa Scribd logo
1 de 39
Storage Options in the AWS Cloud
     Joe Baron, Solutions Architect
What is Amazon Web Services?

Amazon Web Services is a cloud computing platform that provides
flexible, scalable, and cost-effective IT infrastructure for businesses of all
sizes around the world…




…built on the same reliable, secure technology
platform used to power Amazon.com’s global
web properties for over a decade.
Storage in the Amazon Cloud

                              Tools to access
                              services


                              Cross Service
                              features




                              Platform building
                              blocks




                              Infrastructure
                              building blocks
Amazon EC2 Regions and Availability Zones
   US East (Northern Virginia)                  EU (Dublin)


    Availability        Availability
     Zone A              Zone B
                                       Availability     Availability
                                        Zone A           Zone B
    Availability        Availability
     Zone C              Zone D




Amazon EC2 Regions:
  US East (Northern Virginia)
  US West (Northern California)
  EU (Dublin)
  Asia Pacific (Singapore)
  Asia Pacific (Tokyo)
Traditional Storage
Traditional Storage Options
  Memory – caches, RAM disks
  Message Queues – FIFOs, MOM
  SAN – network-attached block devices: LUNs
  DAS – local block devices (disks)
  NAS – network attached file systems, filers
  Databases – structured storage (on SAN, DAS or NAS)
  Off-line – backup, archival, DR
Differ in
  Performance
  Durability
  Cost
Often used to form a Storage Hierarchy
AWS Cloud Storage Options
Multiple Storage Options
   EC2 Elastic Block Storage (EBS)
   EC2 Local Instance Store (Ephemeral disk)
   Simple Storage Service (S3)
   Simple Queue Service (SQS)
   SimpleDB
   Relational Database Service (RDS)
   EC2 Database AMIs
Differ in
   Performance
   Durability
   Cost
Plus cloud attributes
   Elasticity
   Availability
   Scalability
Also often used together as a Storage Hierarchy
AWS Cloud Storage Options
Examine each
  Description
  Ideal use cases
  Characteristics (durability, scalability, etc.)
  Anti-Patterns
Amazon Elastic Block (EBS) Storage
 Block-level persistent storage for EC2 instances
   Each EBS volume is like a hard drive on a physical
   server
 Off-instance, network-attached storage
   Data lifetime independent of EC2 instance lifetime
   Can attach multiple EBS volumes to an EC2 instance
   Can only attach any single EBS volume to one EC2
   instance at a time
 Cost: $.10 per GB-month (provisioned)
 Ideal use case -- primary storage for:
   File systems
   Databases
   Raw block devices
Amazon EBS Characteristics
Durable off-instance storage
  Mirrored (replicated) within a single Availability Zone
  EBS Snapshots provide enhanced durability, other
  benefits
  .1% - .5% annual failure rate (using snapshots)
Optimized for random I/O, expect:
  About 100 IOPS for 8K random reads
  Up to 80 MB/sec sequential access
  Some level of variability – network-attached, shared
  resource
Can be striped using RAID 0 or LVM
  Aggregate IOPS
  Generally cannot aggregate throughput
Amazon EBS Snapshots
Snapshots provide point-in-time incremental backups
for EBS volumes
  Saves only the data changed since the last snapshot
  Any single snapshot represents a complete backup
Snapshots enhance durability of EBS
  EBS volumes “live” (are mirrored) in a single Availability
  Zone (AZ)
  Snapshots “live” in S3, are replicated across multiple AZs
  Durability of EBS volume is proportional to amount
  changed data – Snapshot frequently!
Snapshots allow:
  Cloning an EBS volume in different AZ
  Sharing an EBS volume with another AWS account
  Resizing EBS volumes
Amazon EBS Anti-Patterns
Temporary storage
  Consider EC2 Instance Storage
Very high-durability storage
  Consider Amazon S3
     S3 design point eleven 9’s annual
     EBS design point 99.5 to 99.9% annual durability
Storing static web content
  Consider Amazon S3
Storing structured data or Key-Value pairs
  Consider Amazon SimpleDB or
  Amazon RDS
Amazon Local Instance Storage
Block-level temporary storage for EC2 instances
  Also called “Ephemeral” storage or “Local drives”
“In the box” storage
  No network variability
  No persistence -- All data disappears   on instance termination!

Cost: No additional charge
Ideal use cases:
  Scratch disks
  Temporary files, Buffers, Caches
  Easily replicated data – web server’s DocumentRoot or
  equivalent
Instance Storage Characteristics
Number and size of instance store devices varies
by EC2 instance type:
  Larger instances have larger / more volumes
     c1.xlarge has four 450GB drives
     Micro instances have none
  Local storage may be available but not exposed
     See next slide

Not optimized for random I/O
  EBS generally better for random I/O
  Instance stores generally better for sequential I/O
Can be striped using RAID 0
  Aggregate IOPS
  Aggregate throughput (bandwidth)
Short Detour: S3 vs EBS AMIs
Two types of EC2 AMIs and Instances:
  Instance store (“S3-backed”)
    Original EC2, boot from ephemeral storage
    Can Start and Terminate only
    All data is ephemeral (unless separate EBS volume attached)
  EBS root (“boot from EBS”)
    Newer, boot from EBS volume
    Can Start, Stop, Create Image, and Terminate
    Ephemeral storage still available, but not exposed by default
        Use instance Block Device Mapping (command line and API only)

Additional EBS volumes can be attached to
either type
Amazon Instance Store Anti-Patterns
 Persistent storage
   Consider EBS
 Database storage
   Generally need persistence beyond lifecycle of
   single EC2 instance
   Consider EBS
 Shared storage
   Local instance stores cannot be moved / shared
   Consider EBS
 Snapshots
   Need point-in-time backups, shareability
   Consider EBS
Amazon Simple Storage Service (S3)
 Scalable and durable data storage in the cloud
   Read / write / delete objects (files) from 1 Byte up to
   5TBs
   Concurrent reads / writes to single S3 bucket or object
 Store nearly any kind of data
 Pay-as-you-go tiered pricing:
   $0.14/GB (first TB) to $0.055/GB (over 5PB)
   Plus data transfer and requests
 Ideal use cases
   Static web content – often used with CloudFront CDN
   Source and working storage for large-scale computation
   or analytics
   Backup, archival, and DR storage
Amazon S3 Characteristics
Two layer hierarchy: Buckets and Objects
Every object has a unique URL
Simple Get, Put, Delete API using HTTP
Supports
  ACLs & Access policies
  Versioning and Reduced Redundancy Storage
Extreme durability
  Automatic replication to multiple devices and facilities in the
  selected Region
  Design point is eleven 9’s durability and four 9’s availability
Scale
  Unlimited number of objects per bucket
  Web-scale concurrent read / writes
Amazon S3 Anti-Patterns
File systems
  S3 is an object store, not a POSIX file system
     Can emulate a folder/file hierarchy
  For a true filesystem, use EBS
Structured data with query
  S3 does not support query
     Must know the bucket name and the key
  Use in conjunction with SimpleDB or database
Rapidly-changing, fine-grained changes
  S3 generally reads / writes whole files
     “Web-like” rather than “disk-like” latencies
  Use EBS for fine-grained changes, lower latencies
Amazon CloudFront
Easy-to-use Content Delivery Network (CDN)
Same pay-as-you-go pricing as all of AWS
  No up-front contracts
  No long-term commitments
  Self-service sign-up
Often uses Amazon S3 as the origin store
  Also can use non-S3 origins, such as web server on EC2
Worldwide network of edge locations
  Seattle, Palo Alto, Los Angeles, St. Louis, Dallas,
  Ashburn, Newark, New York, Miami
  Amsterdam, Dublin, Frankfurt, London
  Hong Kong, Tokyo, Singapore
Amazon Simple Queue Service (SQS)
 Reliable, highly-scalable hosted message
 queuing service
 SQS is storage? I thought this was an
 asynchronous communication protocol…
   SQS provides temporary storage (and delivery) of short
   messages
   Avoids use of other storage, such as temp files
 Cost: First 100K requests free, $.01 per 10K
 Ideal use case:
   “Software glue” to enable loose coupling
   Store and move data between servers or application
   components
   Often used with data stored in S3
Amazon SQS
Loose coupling, Producer-Consumer model
Scale up / down Producers and Consumers as
needed
Amazon SQS Characteristics
SQS provides Durable but Temporary storage
  Messages must be text-only
  Messages stay in queue for up to 14 days
Highly Reliable
  Messages are stored redundantly on multiple servers
  and data centers in a Region
Highly Scalable
  Unlimited number of clients reading / writing an
  Unlimited number of messages
Not designed to maximize single-thread
performance
  5 - 50 messages per second per thread
  Higher performance with multiple messages per call
Amazon SQS Anti-Patterns
Binary data or
Large data (>64KB)
  Store the data in S3 or RDS
  Store a pointer to the data in SQS
Long-term storage – over 14 days
  Consider S3 or other storage
Amazon SimpleDB
New approach to store, manage, and query
structured data
“NoSQL” offering:
  Flexible spreadsheet-like database
  Domains, Items, Attributes, and Values
Supports SQL-like queries using SELECT
Eliminates the overhead of managing a relational
database
Cost: First 1GB-Month and ~2M queries free
Ideal use cases:
  Structured, fine-grained data needing query
  Data needing flexible schema
  Metadata storage -- often used in conjunction with S3
Amazon SimpleDB
  Core database functionality for data storage and
  querying
  No schema, no data modeling, no DBA

item              description        color             material
123               Sweater            Blue, Red
789               Shoes              Black             Leather
Store:
PUT (item, 123), (description, Sweater), (color, Blue), (color, Red)

Query:
Domain = MyStore
[‘description’ = ‘Sweater’]
Amazon SimpleDB Characteristics
Text-based data, 10GB per domain
  Can “shard” larger data over multiple domains
Highly durable
  Data automatically replicated in multiple geographic
  locations in a Region
Fast
  Near-LAN latencies for queries from EC2
Flexible and low-touch
  “Schema-less” design, add attributes as needed
  Items are indexed automatically
Supports both:
  Eventually-consistent reads (for speed)
  Consistent reads (for transactional updates)
Amazon SimpleDB Anti-Patterns
If your application:
  Is tied to a traditional relational database
  Needs Joins and Complex transactions
  Needs BLObs (Binary Large Objects) support
  Needs Numeric data
  Needs very large data (>>10GB)
Then consider Amazon RDS or a traditional
relational database
Amazon Relational Database Service
              (RDS)
 Fully-functional relational database provided as a
 managed, cloud-based service.
 Automates:
   Patching
   Backups
   Failover (Multi-AZ deployment)
   Read Replicas
 Cost: $.11 to $2.60 per hour (standard deployment),
 plus storage and data transfer costs
 Ideal use cases:
   Any application that needs a full native capabilities of
   traditional relational database
   With minimal administrative overhead
Amazon RDS Characteristics
Fully-managed, tuned MySQL* database
  Compatible with all normal tools, drivers, & applications
     mysqldump, mysqlimport, etc.
  (* Oracle 11g coming to RDS in second quarter)
Simple to deploy
  Make a few clicks or API calls, get a connection string
Scalable
  Scale vertically (increase / decrease compute, increase
  storage 5GB to 1TB)
  Scale horizontally (add read replicas)
Reliable
  Automated backups of DB and logs, restore to any point in
  time
  Multi-AZ deployments
     Synchronous replication and automated failover
  User-initiated DB Snapshots
Amazon RDS Anti-Patterns
Simple index-and-query focused data
  If you don’t need joins and complex transactions,
  consider using SimpleDB
Heavy use of BLObs, or very large BLObs
  Consider storing the BLObs in S3, with pointers and
  metadata in RDS
Scaling beyond RDS vertical / horizontal scaling
limits
  Consider using S3 and SimpleDB together
Your application requires a specific RDBMS not
supported by RDS, or
You need complete administrative control
  Consider using EC2 Relational Database AMIs
Amazon Relational Database AMIs

EC2 instances and EBS storage provide a
platform to run many relational databases
Ready-to-use AMIs for
  Oracle, SQLServer, DB2, Informix, PostgreSQL, Sybase,
  Vertica, etc.
Costs and license terms vary by vendor
Ideal use cases:
  Need the full native capabilities of one particular
  relational database
  With full administrative control
Amazon Relational Database AMIs

Performance characteristics depend on
  Database software
  Number / size of EBS storage volumes
  Configuration of DB
  …
Benchmark your application
Relational Database AMIs – Anti-Patterns

 Index-and-query focused data
   Consider SimpleDB
 Have BLObs
   Consider moving BLObs to S3
 Need more Automation, Scaling etc.
   Consider RDS, SimpleDB
Choosing an AWS Database Solution
                 Amazon EC2 Relational          Amazon Relational               Amazon SimpleDB
                 Database AMIs                  Database Service
Features         Choose your own database       Native access to a relational   Schema-less data store
                 server (IBM DB2, Microsoft     database engine, with key
                 SQL Server, MySQL,             features of a relational
                 Oracle, and more)              database, such as joins or
                                                complex transactions
Administration   Exert complete                 Gain a managed experience       Zero administrative
                 administrative control over    and offload common              overhead (automatic
                 your database                  administrative tasks, such      handling of geo-redundant
                                                as provisioning, backup         replication, index creation,
                                                                                database tuning)
Flexibility      Easy migration path            Easy migration path             Easy to use web service
                 (existing code, tools,         (existing code, tools,          APIs
                 applications are compatible)   applications are compatible)
Scalability      Employ many of the             Quickly scale up resources      Automatic and elastic
                 scalability features of        with only an API call           scaling of resources to meet
                 Amazon EC2                                                     request load
Backup           Store snapshots to Amazon      Use automatic backup            High availability (multiple
                 S3                             service at an interval you      copies of data for reliability
                                                specify                         and failover)
Questions?
Next Steps:

 Amazon Web Services White Papers:
 http://aws.amazon.com/whitepapers/

 AWS Security: http://aws.amazon.com/security

 AWS Economics:
   http://aws.amazon.com/economics/
   http://calculator.s3.amazonaws.com/calc5.html

 AWS Summit 2011: http://aws.amazon.com/about-aws/aws-
 summit-2011

 Contact me:
   joebaron@amazon.com
Thank You!
AWS Import/Export
Get your data into AWS faster - load it onto a
portable storage device and ship it to an Amazon
data center

Faster than Internet transfer and more cost
effective than upgrading your connectivity

Use cases: data migration, offsite backup, direct
data interchange, disaster recovery

Mais conteúdo relacionado

Mais procurados

Introduction to AWS Storage Services
Introduction to AWS Storage ServicesIntroduction to AWS Storage Services
Introduction to AWS Storage ServicesAmazon Web Services
 
AWS S3 Tutorial For Beginners | Edureka
AWS S3 Tutorial For Beginners | EdurekaAWS S3 Tutorial For Beginners | Edureka
AWS S3 Tutorial For Beginners | EdurekaEdureka!
 
AWS Monitoring & Logging
AWS Monitoring & LoggingAWS Monitoring & Logging
AWS Monitoring & LoggingJason Poley
 
Overview of AWS by Andy Jassy - SVP, AWS
Overview of AWS by Andy Jassy - SVP, AWSOverview of AWS by Andy Jassy - SVP, AWS
Overview of AWS by Andy Jassy - SVP, AWSAmazon Web Services
 
AWS 101: Introduction to AWS
AWS 101: Introduction to AWSAWS 101: Introduction to AWS
AWS 101: Introduction to AWSIan Massingham
 
Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017
Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017
Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017Amazon Web Services
 
Amazon S3 & Amazon Glacier - Object Storage Overview
Amazon S3 & Amazon Glacier - Object Storage OverviewAmazon S3 & Amazon Glacier - Object Storage Overview
Amazon S3 & Amazon Glacier - Object Storage OverviewAmazon Web Services
 
Intro to AWS: EC2 & Compute Services
Intro to AWS: EC2 & Compute ServicesIntro to AWS: EC2 & Compute Services
Intro to AWS: EC2 & Compute ServicesAmazon Web Services
 
Elastic Load Balancing Deep Dive - AWS Online Tech Talk
Elastic  Load Balancing Deep Dive - AWS Online Tech TalkElastic  Load Balancing Deep Dive - AWS Online Tech Talk
Elastic Load Balancing Deep Dive - AWS Online Tech TalkAmazon Web Services
 
Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)Amazon Web Services
 

Mais procurados (20)

AWS RDS
AWS RDSAWS RDS
AWS RDS
 
AWS IAM Introduction
AWS IAM IntroductionAWS IAM Introduction
AWS IAM Introduction
 
AWS Security Best Practices
AWS Security Best PracticesAWS Security Best Practices
AWS Security Best Practices
 
Introduction to AWS Storage Services
Introduction to AWS Storage ServicesIntroduction to AWS Storage Services
Introduction to AWS Storage Services
 
AWS Lambda Features and Uses
AWS Lambda Features and UsesAWS Lambda Features and Uses
AWS Lambda Features and Uses
 
AWS S3 Tutorial For Beginners | Edureka
AWS S3 Tutorial For Beginners | EdurekaAWS S3 Tutorial For Beginners | Edureka
AWS S3 Tutorial For Beginners | Edureka
 
AWS Architecting In The Cloud
AWS Architecting In The CloudAWS Architecting In The Cloud
AWS Architecting In The Cloud
 
AWS Monitoring & Logging
AWS Monitoring & LoggingAWS Monitoring & Logging
AWS Monitoring & Logging
 
Overview of AWS by Andy Jassy - SVP, AWS
Overview of AWS by Andy Jassy - SVP, AWSOverview of AWS by Andy Jassy - SVP, AWS
Overview of AWS by Andy Jassy - SVP, AWS
 
AWS 101: Introduction to AWS
AWS 101: Introduction to AWSAWS 101: Introduction to AWS
AWS 101: Introduction to AWS
 
What is AWS?
What is AWS?What is AWS?
What is AWS?
 
Cost Optimisation on AWS
Cost Optimisation on AWSCost Optimisation on AWS
Cost Optimisation on AWS
 
Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017
Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017
Amazon Elastic Compute Cloud (EC2) - Module 2 Part 1 - AWSome Day 2017
 
Amazon S3 & Amazon Glacier - Object Storage Overview
Amazon S3 & Amazon Glacier - Object Storage OverviewAmazon S3 & Amazon Glacier - Object Storage Overview
Amazon S3 & Amazon Glacier - Object Storage Overview
 
Intro to AWS: EC2 & Compute Services
Intro to AWS: EC2 & Compute ServicesIntro to AWS: EC2 & Compute Services
Intro to AWS: EC2 & Compute Services
 
Elastic Load Balancing Deep Dive - AWS Online Tech Talk
Elastic  Load Balancing Deep Dive - AWS Online Tech TalkElastic  Load Balancing Deep Dive - AWS Online Tech Talk
Elastic Load Balancing Deep Dive - AWS Online Tech Talk
 
Deep Dive on Amazon S3
Deep Dive on Amazon S3Deep Dive on Amazon S3
Deep Dive on Amazon S3
 
Intro to AWS Lambda
Intro to AWS Lambda Intro to AWS Lambda
Intro to AWS Lambda
 
Amazon S3 Masterclass
Amazon S3 MasterclassAmazon S3 Masterclass
Amazon S3 Masterclass
 
Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)
 

Semelhante a AWS Storage Options

Cloud storage with AWS
Cloud storage with AWSCloud storage with AWS
Cloud storage with AWSAhmad karawash
 
Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017
Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017
Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017Amazon Web Services
 
An intro to Amazon Web Services (AWS)
An intro to Amazon Web Services (AWS)An intro to Amazon Web Services (AWS)
An intro to Amazon Web Services (AWS)Andreas Chatzakis
 
Scaling up to your first 10 million users - Pop-up Loft Tel Aviv
Scaling up to your first 10 million users - Pop-up Loft Tel AvivScaling up to your first 10 million users - Pop-up Loft Tel Aviv
Scaling up to your first 10 million users - Pop-up Loft Tel AvivAmazon Web Services
 
Getting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMRGetting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMRArun Sirimalla
 
So There’s This Amazon Thing
So There’s This Amazon ThingSo There’s This Amazon Thing
So There’s This Amazon ThingJared Faris
 
Deep Dive on Elastic File System - February 2017 AWS Online Tech Talks
Deep Dive on Elastic File System - February 2017 AWS Online Tech TalksDeep Dive on Elastic File System - February 2017 AWS Online Tech Talks
Deep Dive on Elastic File System - February 2017 AWS Online Tech TalksAmazon Web Services
 
Best Practices running SQL Server on AWS
Best Practices running SQL Server on AWSBest Practices running SQL Server on AWS
Best Practices running SQL Server on AWSAmazon Web Services
 
Deep Dive on Amazon Elastic File System - June 2017 AWS Online Tech Talks
Deep Dive on Amazon Elastic File System - June 2017 AWS Online Tech TalksDeep Dive on Amazon Elastic File System - June 2017 AWS Online Tech Talks
Deep Dive on Amazon Elastic File System - June 2017 AWS Online Tech TalksAmazon Web Services
 
Running Relational Databases on AWS
Running Relational Databases on AWS  Running Relational Databases on AWS
Running Relational Databases on AWS Amazon Web Services
 
AWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptxAWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptxDipaliKulshrestha2
 
AWS Webcast - Explore the AWS Cloud for Government
AWS Webcast - Explore the AWS Cloud for GovernmentAWS Webcast - Explore the AWS Cloud for Government
AWS Webcast - Explore the AWS Cloud for GovernmentAmazon Web Services
 
Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)Amazon Web Services
 

Semelhante a AWS Storage Options (20)

Cloud storage with AWS
Cloud storage with AWSCloud storage with AWS
Cloud storage with AWS
 
Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017
Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017
Getting Started with Storage Services on AWS - AWS Summit Tel Aviv 2017
 
AMAZON CLOUD Course Content
AMAZON CLOUD Course ContentAMAZON CLOUD Course Content
AMAZON CLOUD Course Content
 
An intro to Amazon Web Services (AWS)
An intro to Amazon Web Services (AWS)An intro to Amazon Web Services (AWS)
An intro to Amazon Web Services (AWS)
 
Scaling up to your first 10 million users - Pop-up Loft Tel Aviv
Scaling up to your first 10 million users - Pop-up Loft Tel AvivScaling up to your first 10 million users - Pop-up Loft Tel Aviv
Scaling up to your first 10 million users - Pop-up Loft Tel Aviv
 
Getting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMRGetting Started with EC2, S3 and EMR
Getting Started with EC2, S3 and EMR
 
Amazon EC2: What is this and what can I do with it?
Amazon EC2: What is this and what can I do with it?Amazon EC2: What is this and what can I do with it?
Amazon EC2: What is this and what can I do with it?
 
So There’s This Amazon Thing
So There’s This Amazon ThingSo There’s This Amazon Thing
So There’s This Amazon Thing
 
Deep Dive on Elastic File System - February 2017 AWS Online Tech Talks
Deep Dive on Elastic File System - February 2017 AWS Online Tech TalksDeep Dive on Elastic File System - February 2017 AWS Online Tech Talks
Deep Dive on Elastic File System - February 2017 AWS Online Tech Talks
 
Best Practices running SQL Server on AWS
Best Practices running SQL Server on AWSBest Practices running SQL Server on AWS
Best Practices running SQL Server on AWS
 
Deep Dive on Amazon Elastic File System - June 2017 AWS Online Tech Talks
Deep Dive on Amazon Elastic File System - June 2017 AWS Online Tech TalksDeep Dive on Amazon Elastic File System - June 2017 AWS Online Tech Talks
Deep Dive on Amazon Elastic File System - June 2017 AWS Online Tech Talks
 
Running Relational Databases on AWS
Running Relational Databases on AWS  Running Relational Databases on AWS
Running Relational Databases on AWS
 
AWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptxAWS Accelerated Program - Session 2 - Storage Services.pptx
AWS Accelerated Program - Session 2 - Storage Services.pptx
 
AWS Webcast - Explore the AWS Cloud for Government
AWS Webcast - Explore the AWS Cloud for GovernmentAWS Webcast - Explore the AWS Cloud for Government
AWS Webcast - Explore the AWS Cloud for Government
 
Aws101
Aws101Aws101
Aws101
 
Aws
AwsAws
Aws
 
Introduction to Amazon Aurora
Introduction to Amazon AuroraIntroduction to Amazon Aurora
Introduction to Amazon Aurora
 
Cloud storage
Cloud storageCloud storage
Cloud storage
 
Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)Deep Dive on Amazon Elastic File System (Amazon EFS)
Deep Dive on Amazon Elastic File System (Amazon EFS)
 
Aws storage options
Aws storage optionsAws storage options
Aws storage options
 

Mais 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
 

Mais 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
 

Último

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 

Último (20)

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 

AWS Storage Options

  • 1. Storage Options in the AWS Cloud Joe Baron, Solutions Architect
  • 2. What is Amazon Web Services? Amazon Web Services is a cloud computing platform that provides flexible, scalable, and cost-effective IT infrastructure for businesses of all sizes around the world… …built on the same reliable, secure technology platform used to power Amazon.com’s global web properties for over a decade.
  • 3. Storage in the Amazon Cloud Tools to access services Cross Service features Platform building blocks Infrastructure building blocks
  • 4. Amazon EC2 Regions and Availability Zones US East (Northern Virginia) EU (Dublin) Availability Availability Zone A Zone B Availability Availability Zone A Zone B Availability Availability Zone C Zone D Amazon EC2 Regions: US East (Northern Virginia) US West (Northern California) EU (Dublin) Asia Pacific (Singapore) Asia Pacific (Tokyo)
  • 5. Traditional Storage Traditional Storage Options Memory – caches, RAM disks Message Queues – FIFOs, MOM SAN – network-attached block devices: LUNs DAS – local block devices (disks) NAS – network attached file systems, filers Databases – structured storage (on SAN, DAS or NAS) Off-line – backup, archival, DR Differ in Performance Durability Cost Often used to form a Storage Hierarchy
  • 6. AWS Cloud Storage Options Multiple Storage Options EC2 Elastic Block Storage (EBS) EC2 Local Instance Store (Ephemeral disk) Simple Storage Service (S3) Simple Queue Service (SQS) SimpleDB Relational Database Service (RDS) EC2 Database AMIs Differ in Performance Durability Cost Plus cloud attributes Elasticity Availability Scalability Also often used together as a Storage Hierarchy
  • 7. AWS Cloud Storage Options Examine each Description Ideal use cases Characteristics (durability, scalability, etc.) Anti-Patterns
  • 8. Amazon Elastic Block (EBS) Storage Block-level persistent storage for EC2 instances Each EBS volume is like a hard drive on a physical server Off-instance, network-attached storage Data lifetime independent of EC2 instance lifetime Can attach multiple EBS volumes to an EC2 instance Can only attach any single EBS volume to one EC2 instance at a time Cost: $.10 per GB-month (provisioned) Ideal use case -- primary storage for: File systems Databases Raw block devices
  • 9. Amazon EBS Characteristics Durable off-instance storage Mirrored (replicated) within a single Availability Zone EBS Snapshots provide enhanced durability, other benefits .1% - .5% annual failure rate (using snapshots) Optimized for random I/O, expect: About 100 IOPS for 8K random reads Up to 80 MB/sec sequential access Some level of variability – network-attached, shared resource Can be striped using RAID 0 or LVM Aggregate IOPS Generally cannot aggregate throughput
  • 10. Amazon EBS Snapshots Snapshots provide point-in-time incremental backups for EBS volumes Saves only the data changed since the last snapshot Any single snapshot represents a complete backup Snapshots enhance durability of EBS EBS volumes “live” (are mirrored) in a single Availability Zone (AZ) Snapshots “live” in S3, are replicated across multiple AZs Durability of EBS volume is proportional to amount changed data – Snapshot frequently! Snapshots allow: Cloning an EBS volume in different AZ Sharing an EBS volume with another AWS account Resizing EBS volumes
  • 11. Amazon EBS Anti-Patterns Temporary storage Consider EC2 Instance Storage Very high-durability storage Consider Amazon S3 S3 design point eleven 9’s annual EBS design point 99.5 to 99.9% annual durability Storing static web content Consider Amazon S3 Storing structured data or Key-Value pairs Consider Amazon SimpleDB or Amazon RDS
  • 12. Amazon Local Instance Storage Block-level temporary storage for EC2 instances Also called “Ephemeral” storage or “Local drives” “In the box” storage No network variability No persistence -- All data disappears on instance termination! Cost: No additional charge Ideal use cases: Scratch disks Temporary files, Buffers, Caches Easily replicated data – web server’s DocumentRoot or equivalent
  • 13. Instance Storage Characteristics Number and size of instance store devices varies by EC2 instance type: Larger instances have larger / more volumes c1.xlarge has four 450GB drives Micro instances have none Local storage may be available but not exposed See next slide Not optimized for random I/O EBS generally better for random I/O Instance stores generally better for sequential I/O Can be striped using RAID 0 Aggregate IOPS Aggregate throughput (bandwidth)
  • 14. Short Detour: S3 vs EBS AMIs Two types of EC2 AMIs and Instances: Instance store (“S3-backed”) Original EC2, boot from ephemeral storage Can Start and Terminate only All data is ephemeral (unless separate EBS volume attached) EBS root (“boot from EBS”) Newer, boot from EBS volume Can Start, Stop, Create Image, and Terminate Ephemeral storage still available, but not exposed by default Use instance Block Device Mapping (command line and API only) Additional EBS volumes can be attached to either type
  • 15. Amazon Instance Store Anti-Patterns Persistent storage Consider EBS Database storage Generally need persistence beyond lifecycle of single EC2 instance Consider EBS Shared storage Local instance stores cannot be moved / shared Consider EBS Snapshots Need point-in-time backups, shareability Consider EBS
  • 16. Amazon Simple Storage Service (S3) Scalable and durable data storage in the cloud Read / write / delete objects (files) from 1 Byte up to 5TBs Concurrent reads / writes to single S3 bucket or object Store nearly any kind of data Pay-as-you-go tiered pricing: $0.14/GB (first TB) to $0.055/GB (over 5PB) Plus data transfer and requests Ideal use cases Static web content – often used with CloudFront CDN Source and working storage for large-scale computation or analytics Backup, archival, and DR storage
  • 17. Amazon S3 Characteristics Two layer hierarchy: Buckets and Objects Every object has a unique URL Simple Get, Put, Delete API using HTTP Supports ACLs & Access policies Versioning and Reduced Redundancy Storage Extreme durability Automatic replication to multiple devices and facilities in the selected Region Design point is eleven 9’s durability and four 9’s availability Scale Unlimited number of objects per bucket Web-scale concurrent read / writes
  • 18. Amazon S3 Anti-Patterns File systems S3 is an object store, not a POSIX file system Can emulate a folder/file hierarchy For a true filesystem, use EBS Structured data with query S3 does not support query Must know the bucket name and the key Use in conjunction with SimpleDB or database Rapidly-changing, fine-grained changes S3 generally reads / writes whole files “Web-like” rather than “disk-like” latencies Use EBS for fine-grained changes, lower latencies
  • 19. Amazon CloudFront Easy-to-use Content Delivery Network (CDN) Same pay-as-you-go pricing as all of AWS No up-front contracts No long-term commitments Self-service sign-up Often uses Amazon S3 as the origin store Also can use non-S3 origins, such as web server on EC2 Worldwide network of edge locations Seattle, Palo Alto, Los Angeles, St. Louis, Dallas, Ashburn, Newark, New York, Miami Amsterdam, Dublin, Frankfurt, London Hong Kong, Tokyo, Singapore
  • 20. Amazon Simple Queue Service (SQS) Reliable, highly-scalable hosted message queuing service SQS is storage? I thought this was an asynchronous communication protocol… SQS provides temporary storage (and delivery) of short messages Avoids use of other storage, such as temp files Cost: First 100K requests free, $.01 per 10K Ideal use case: “Software glue” to enable loose coupling Store and move data between servers or application components Often used with data stored in S3
  • 21. Amazon SQS Loose coupling, Producer-Consumer model Scale up / down Producers and Consumers as needed
  • 22. Amazon SQS Characteristics SQS provides Durable but Temporary storage Messages must be text-only Messages stay in queue for up to 14 days Highly Reliable Messages are stored redundantly on multiple servers and data centers in a Region Highly Scalable Unlimited number of clients reading / writing an Unlimited number of messages Not designed to maximize single-thread performance 5 - 50 messages per second per thread Higher performance with multiple messages per call
  • 23. Amazon SQS Anti-Patterns Binary data or Large data (>64KB) Store the data in S3 or RDS Store a pointer to the data in SQS Long-term storage – over 14 days Consider S3 or other storage
  • 24. Amazon SimpleDB New approach to store, manage, and query structured data “NoSQL” offering: Flexible spreadsheet-like database Domains, Items, Attributes, and Values Supports SQL-like queries using SELECT Eliminates the overhead of managing a relational database Cost: First 1GB-Month and ~2M queries free Ideal use cases: Structured, fine-grained data needing query Data needing flexible schema Metadata storage -- often used in conjunction with S3
  • 25. Amazon SimpleDB Core database functionality for data storage and querying No schema, no data modeling, no DBA item description color material 123 Sweater Blue, Red 789 Shoes Black Leather Store: PUT (item, 123), (description, Sweater), (color, Blue), (color, Red) Query: Domain = MyStore [‘description’ = ‘Sweater’]
  • 26. Amazon SimpleDB Characteristics Text-based data, 10GB per domain Can “shard” larger data over multiple domains Highly durable Data automatically replicated in multiple geographic locations in a Region Fast Near-LAN latencies for queries from EC2 Flexible and low-touch “Schema-less” design, add attributes as needed Items are indexed automatically Supports both: Eventually-consistent reads (for speed) Consistent reads (for transactional updates)
  • 27. Amazon SimpleDB Anti-Patterns If your application: Is tied to a traditional relational database Needs Joins and Complex transactions Needs BLObs (Binary Large Objects) support Needs Numeric data Needs very large data (>>10GB) Then consider Amazon RDS or a traditional relational database
  • 28. Amazon Relational Database Service (RDS) Fully-functional relational database provided as a managed, cloud-based service. Automates: Patching Backups Failover (Multi-AZ deployment) Read Replicas Cost: $.11 to $2.60 per hour (standard deployment), plus storage and data transfer costs Ideal use cases: Any application that needs a full native capabilities of traditional relational database With minimal administrative overhead
  • 29. Amazon RDS Characteristics Fully-managed, tuned MySQL* database Compatible with all normal tools, drivers, & applications mysqldump, mysqlimport, etc. (* Oracle 11g coming to RDS in second quarter) Simple to deploy Make a few clicks or API calls, get a connection string Scalable Scale vertically (increase / decrease compute, increase storage 5GB to 1TB) Scale horizontally (add read replicas) Reliable Automated backups of DB and logs, restore to any point in time Multi-AZ deployments Synchronous replication and automated failover User-initiated DB Snapshots
  • 30. Amazon RDS Anti-Patterns Simple index-and-query focused data If you don’t need joins and complex transactions, consider using SimpleDB Heavy use of BLObs, or very large BLObs Consider storing the BLObs in S3, with pointers and metadata in RDS Scaling beyond RDS vertical / horizontal scaling limits Consider using S3 and SimpleDB together Your application requires a specific RDBMS not supported by RDS, or You need complete administrative control Consider using EC2 Relational Database AMIs
  • 31. Amazon Relational Database AMIs EC2 instances and EBS storage provide a platform to run many relational databases Ready-to-use AMIs for Oracle, SQLServer, DB2, Informix, PostgreSQL, Sybase, Vertica, etc. Costs and license terms vary by vendor Ideal use cases: Need the full native capabilities of one particular relational database With full administrative control
  • 32. Amazon Relational Database AMIs Performance characteristics depend on Database software Number / size of EBS storage volumes Configuration of DB … Benchmark your application
  • 33. Relational Database AMIs – Anti-Patterns Index-and-query focused data Consider SimpleDB Have BLObs Consider moving BLObs to S3 Need more Automation, Scaling etc. Consider RDS, SimpleDB
  • 34. Choosing an AWS Database Solution Amazon EC2 Relational Amazon Relational Amazon SimpleDB Database AMIs Database Service Features Choose your own database Native access to a relational Schema-less data store server (IBM DB2, Microsoft database engine, with key SQL Server, MySQL, features of a relational Oracle, and more) database, such as joins or complex transactions Administration Exert complete Gain a managed experience Zero administrative administrative control over and offload common overhead (automatic your database administrative tasks, such handling of geo-redundant as provisioning, backup replication, index creation, database tuning) Flexibility Easy migration path Easy migration path Easy to use web service (existing code, tools, (existing code, tools, APIs applications are compatible) applications are compatible) Scalability Employ many of the Quickly scale up resources Automatic and elastic scalability features of with only an API call scaling of resources to meet Amazon EC2 request load Backup Store snapshots to Amazon Use automatic backup High availability (multiple S3 service at an interval you copies of data for reliability specify and failover)
  • 36. Next Steps: Amazon Web Services White Papers: http://aws.amazon.com/whitepapers/ AWS Security: http://aws.amazon.com/security AWS Economics:  http://aws.amazon.com/economics/  http://calculator.s3.amazonaws.com/calc5.html AWS Summit 2011: http://aws.amazon.com/about-aws/aws- summit-2011 Contact me:  joebaron@amazon.com
  • 38.
  • 39. AWS Import/Export Get your data into AWS faster - load it onto a portable storage device and ship it to an Amazon data center Faster than Internet transfer and more cost effective than upgrading your connectivity Use cases: data migration, offsite backup, direct data interchange, disaster recovery