SlideShare una empresa de Scribd logo
1 de 83
What’s New              with

             Amazon Web Services




23rd February, 2012
LO N D O N   -   # AW S LO N D O N
Hello.
Thank you
What’s New?
8
/ month
Price drops
Objects in S3
Billions of objects
                                                                         762B
         800.000




         600.000




         400.000




         200.000




                 0
                       Q4 2006   Q4 2007   Q4 2008   Q4 2009   Q4 2010   Q4 2011




                      500k peak transactions per second
New regions
New regions
Per-AZ spot pricing
 S3 object expiration
ElastiCache in us-west-2 and sa-east-1
                                         Elastic Network Interfaces

     Simple Notification Service
                                                EC2 instance status


                         New regions
   Windows free tier
                                          New CloudFront POPs
         VPC everywhere                         New availability zones
2.00pm              Welcome

~ 2.00pm to 2.45pm   Introducing DynamoDB

 2.45pm to 3.30pm    Analytics in the Cloud

 3.30pm to 4.00pm    Coffee break

 4.00pm to 4.45pm    Cloud Economics

 4.45pm to 5.30pm    Integrating Enterprise IT

 5.30pm to 6.30pm    Drinks and networking
2.00pm              Welcome

~ 2.00pm to 2.40pm   Introducing DynamoDB

 2.40pm to 3.10pm    Analytics in the Cloud

 3.10pm to 3.30pm    Amazon Simple Workflow
 3.30pm to 4.00pm    Coffee break

 4.00pm to 4.45pm    Cloud Economics

 4.45pm to 5.30pm    Integrating Enterprise IT

 5.30pm to 6.30pm    Drinks and networking
Storage



Tools &
                      Compute
Support



          Databases
Storage



Tools &
                      Compute
Support



          Databases
Storage
          Databases


Tools &
                      Compute
Support
Databases




Relational                “NoSQL”
databases                databases
Databases




Relational                “NoSQL”
databases                databases
Any database on Amazon EC2
     MySQL, DB2, Oracle, PostgreSQL...
Relational Database Service
   Managed MySQL and Oracle databases
Rapid            High
                provisioning    availability
Scalable                                        Scalable
storage                                         compute

 Relational Database Service
           Managed MySQL and Oracle databases
ElastiCache
In memory, memcached compliant, caching clusters
High performance databases

       Increase throughput


       Increase availability


         Reduce latency
High performance databases
                                      Read replicas
Push-button
  scaling     Increase throughput
                                      ElastiCache
              Increase availability


                Reduce latency
High performance databases

           Increase throughput


Multi-AZ   Increase availability


             Reduce latency
High performance databases

       Increase throughput


       Increase availability


         Reduce latency        ElastiCache
Problem
Performance decreases at scale
Performance

              Predictable, consistent




                                 Scale
Performance

                  Predictable, consistent




              Degraded performance
                   with scale



                                     Scale
Performance

                  Predictable, consistent




              Degraded performance
                   with scale



                                     Scale
= more problems
Data caching
                                       Provisioning!
Data sharding


          = more problems
Cluster management
                               Fault management
Undifferentiated
 heavy lifting
DynamoDB
Fully managed
NoSQL database
     service
Extremely fast
performance
Consistently fast
 performance
Seamless scalability
H   I   G   H   L   I   G   H   T   S
H    I   G   H   L   I   G   H   T   S




Low latency
    Single digit millisecond
H    I   G   H   L   I   G   H   T   S




     Low latency
          Single digit millisecond



< 5 ms reads                       < 10 ms writes
H    I   G   H   L   I   G   H   T   S



                   SSD backed



     Low latency
          Single digit millisecond



< 5 ms reads                       < 10 ms writes
H   I   G   H   L   I   G   H   T   S




  Massive scale
No table size limits. Unlimited storage.
H   I   G   H   L   I   G   H   T   S




Seamless scale
Live repartitioning. Zero admin.
H    I   G   H   L   I   G   H   T   S




Predictable performance
          Provisioned throughput
H   I   G   H   L   I   G   H   T   S




Durable and available
     Consistent, disk-only writes
H   I   G   H   L   I   G   H   T   S




Zero administration
What is provisioned
  throughput?
Reserve required IOPS
  Per table. Set at creation. Scale via API.
“ProvisionedThroughput”:
     { “ReadsPerSecond” : 500 },
     { “WritesPerSecond” : 1000 }
Scale at any time
     No downtime
Pay for throughput
Per 1kb item:




$0.01 per hour for every 10 writes/second

  $0.01 per hour for every 50 strongly
        consistent reads/second
Per 1kb item:




          $0.28 per million writes

$0.056 per million strongly consistent reads
Pay for storage
$1.00 per Gb per month of indexed storage
Data model
“ImageID” = “1”


   “Date” =
  “20100915”


“Title” = “flower”


“Tags” = “flower”,
“jasmine”, “white”
“ImageID” = “1”      “ImageID” =”2”        “ImageID” =”3”


   “Date” =              “Date” =             “Date” =
  “20100915”            “20100916”           “20100917”


“Title” = “flower”    “Title” = “ferrari”   “Title” = “coffee”


“Tags” = “flower”,     “Tags” = “car”,      “Tags” = “drink”,
“jasmine”, “white”       “italian”            “delicious”
Primary key
Composite key
Simple API
              Only 12 operations.
Atomic increment/decrement on number attributes.
Automatic scaling
   Subscribe to SNS topic
$Res = $DDB->describe_table(array('TableName' => 'wsdot_images'));

$Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits;
$Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits;

$Read *= 2;
$Write *= 2;

$PT = array('ReadCapacityUnits' => (string) $Read,
            'WriteCapacityUnits' => (string) $Write);

$Res = $ddb->update_table(array('TableName' => 'wsdot_images',
                                'ProvisionedThroughPut' => $PT));
$Res = $DDB->describe_table(array('TableName' => 'wsdot_images'));

$Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits;
$Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits;

$Read *= 2;
$Write *= 2;

$PT = array('ReadCapacityUnits' => (string) $Read,
            'WriteCapacityUnits' => (string) $Write);

$Res = $ddb->update_table(array('TableName' => 'wsdot_images',
                                'ProvisionedThroughPut' => $PT));
$Res = $DDB->describe_table(array('TableName' => 'wsdot_images'));

$Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits;
$Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits;

$Read *= 2;
$Write *= 2;

$PT = array('ReadCapacityUnits' => (string) $Read,
            'WriteCapacityUnits' => (string) $Write);

$Res = $ddb->update_table(array('TableName' => 'wsdot_images',
                                'ProvisionedThroughPut' => $PT));
$Res = $DDB->describe_table(array('TableName' => 'wsdot_images'));

$Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits;
$Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits;

$Read *= 2;
$Write *= 2;

$PT = array('ReadCapacityUnits' => (string) $Read,
            'WriteCapacityUnits' => (string) $Write);

$Res = $ddb->update_table(array('TableName' => 'wsdot_images',
                                'ProvisionedThroughPut' => $PT));
$Res = $DDB->describe_table(array('TableName' => 'wsdot_images'));

$Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits;
$Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits;

$Read *= 2;
$Write *= 2;

$PT = array('ReadCapacityUnits' => (string) $Read,
            'WriteCapacityUnits' => (string) $Write);

$Res = $ddb->update_table(array('TableName' => 'wsdot_images',
                                'ProvisionedThroughPut' => $PT));
Consistency
       Writes are always consistent.
Reads are consistent or eventually consistent.
Durability
       Writes occur to disk, not memory.
Writes are acknowledged once they have been
      made in two physical data centres.
Availability
         Region specific (not AZ)
Continuously replicated across multiple AZs
Considerations
     Limited index and query model

Throughput is provisioned in 1K operations

         Maximum 64K item size


Backup and restore via Elastic MapReduce
Databases




Relational                “NoSQL”
databases                databases
SimpleDB
Zero maintenance, NoSQL datastore
Flexible queries

  10Gb / 1 billion                              No native
attributes per tabel                          data sharding

                       SimpleDB
              Zero maintenance, NoSQL datastore
Choose the right tool
    for the job
DynamoDB free tier
        5 writes/second
   10 consistent reads/second
        100Mb storage
Q&A
matthew@amazon.com

Más contenido relacionado

La actualidad más candente

Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon RedshiftAmazon Web Services
 
AWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDS
AWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDSAWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDS
AWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDSAmazon Web Services
 
Amazon RDS: Deep Dive - SRV310 - Chicago AWS Summit
Amazon RDS: Deep Dive - SRV310 - Chicago AWS SummitAmazon RDS: Deep Dive - SRV310 - Chicago AWS Summit
Amazon RDS: Deep Dive - SRV310 - Chicago AWS SummitAmazon Web Services
 
Introduction to Amazon Relational Database Service
Introduction to Amazon Relational Database ServiceIntroduction to Amazon Relational Database Service
Introduction to Amazon Relational Database ServiceAmazon 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
 
Aws glue를 통한 손쉬운 데이터 전처리 작업하기
Aws glue를 통한 손쉬운 데이터 전처리 작업하기Aws glue를 통한 손쉬운 데이터 전처리 작업하기
Aws glue를 통한 손쉬운 데이터 전처리 작업하기Amazon Web Services Korea
 
Introduction to Amazon Relational Database Service (Amazon RDS)
Introduction to Amazon Relational Database Service (Amazon RDS)Introduction to Amazon Relational Database Service (Amazon RDS)
Introduction to Amazon Relational Database Service (Amazon RDS)Amazon Web Services
 
Deep Dive on Amazon RDS (Relational Database Service)
Deep Dive on Amazon RDS (Relational Database Service)Deep Dive on Amazon RDS (Relational Database Service)
Deep Dive on Amazon RDS (Relational Database Service)Amazon Web Services
 
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링Amazon Web Services Korea
 
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
 

La actualidad más candente (20)

Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon Redshift
 
Introduction to Amazon Aurora
Introduction to Amazon AuroraIntroduction to Amazon Aurora
Introduction to Amazon Aurora
 
AWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDS
AWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDSAWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDS
AWSome Day 2016 - Module 4: Databases: Amazon DynamoDB and Amazon RDS
 
Amazon RDS: Deep Dive - SRV310 - Chicago AWS Summit
Amazon RDS: Deep Dive - SRV310 - Chicago AWS SummitAmazon RDS: Deep Dive - SRV310 - Chicago AWS Summit
Amazon RDS: Deep Dive - SRV310 - Chicago AWS Summit
 
Amazon S3 Masterclass
Amazon S3 MasterclassAmazon S3 Masterclass
Amazon S3 Masterclass
 
Amazon Aurora: Under the Hood
Amazon Aurora: Under the HoodAmazon Aurora: Under the Hood
Amazon Aurora: Under the Hood
 
Introduction to Amazon Relational Database Service
Introduction to Amazon Relational Database ServiceIntroduction to Amazon Relational Database Service
Introduction to Amazon Relational Database Service
 
Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)Amazon Relational Database Service (Amazon RDS)
Amazon Relational Database Service (Amazon RDS)
 
Deep Dive on Amazon DynamoDB
Deep Dive on Amazon DynamoDBDeep Dive on Amazon DynamoDB
Deep Dive on Amazon DynamoDB
 
Deep Dive on Amazon Aurora
Deep Dive on Amazon AuroraDeep Dive on Amazon Aurora
Deep Dive on Amazon Aurora
 
Deep Dive on Amazon DynamoDB
Deep Dive on Amazon DynamoDBDeep Dive on Amazon DynamoDB
Deep Dive on Amazon DynamoDB
 
Aws glue를 통한 손쉬운 데이터 전처리 작업하기
Aws glue를 통한 손쉬운 데이터 전처리 작업하기Aws glue를 통한 손쉬운 데이터 전처리 작업하기
Aws glue를 통한 손쉬운 데이터 전처리 작업하기
 
Intro to AWS: Database Services
Intro to AWS: Database ServicesIntro to AWS: Database Services
Intro to AWS: Database Services
 
Introduction to Amazon Relational Database Service (Amazon RDS)
Introduction to Amazon Relational Database Service (Amazon RDS)Introduction to Amazon Relational Database Service (Amazon RDS)
Introduction to Amazon Relational Database Service (Amazon RDS)
 
AWS DynamoDB
AWS DynamoDBAWS DynamoDB
AWS DynamoDB
 
Deep Dive on Amazon RDS (Relational Database Service)
Deep Dive on Amazon RDS (Relational Database Service)Deep Dive on Amazon RDS (Relational Database Service)
Deep Dive on Amazon RDS (Relational Database Service)
 
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
 
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
 
BDA311 Introduction to AWS Glue
BDA311 Introduction to AWS GlueBDA311 Introduction to AWS Glue
BDA311 Introduction to AWS Glue
 
Deep Dive on AWS Lambda
Deep Dive on AWS LambdaDeep Dive on AWS Lambda
Deep Dive on AWS Lambda
 

Similar a AWS What's New Report

AWS Cloud School | London - Part 2
AWS Cloud School | London - Part 2AWS Cloud School | London - Part 2
AWS Cloud School | London - Part 2Amazon Web Services
 
Data Driven Innovation with Amazon Web Services
Data Driven Innovation with Amazon Web ServicesData Driven Innovation with Amazon Web Services
Data Driven Innovation with Amazon Web ServicesAmazon Web Services
 
Getting Started with Big Data and HPC in the Cloud - August 2015
Getting Started with Big Data and HPC in the Cloud - August 2015Getting Started with Big Data and HPC in the Cloud - August 2015
Getting Started with Big Data and HPC in the Cloud - August 2015Amazon Web Services
 
Dynamo DB & RDS Deep Dive - AWS India Summit 2012
Dynamo DB & RDS Deep Dive - AWS India Summit 2012Dynamo DB & RDS Deep Dive - AWS India Summit 2012
Dynamo DB & RDS Deep Dive - AWS India Summit 2012Amazon Web Services
 
MySQL Cluster Scaling to a Billion Queries
MySQL Cluster Scaling to a Billion QueriesMySQL Cluster Scaling to a Billion Queries
MySQL Cluster Scaling to a Billion QueriesBernd Ocklin
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon RedshiftAmazon Web Services
 
AWS March 2016 Webinar Series - Managed Database Services on Amazon Web Services
AWS March 2016 Webinar Series - Managed Database Services on Amazon Web ServicesAWS March 2016 Webinar Series - Managed Database Services on Amazon Web Services
AWS March 2016 Webinar Series - Managed Database Services on Amazon Web ServicesAmazon Web Services
 
How & When to Use NoSQL at Websummit Dublin
How & When to Use NoSQL at Websummit DublinHow & When to Use NoSQL at Websummit Dublin
How & When to Use NoSQL at Websummit DublinAmazon Web Services
 
DynamoDB Gluecon 2012
DynamoDB Gluecon 2012DynamoDB Gluecon 2012
DynamoDB Gluecon 2012Appirio
 
Gluecon 2012 - DynamoDB
Gluecon 2012 - DynamoDBGluecon 2012 - DynamoDB
Gluecon 2012 - DynamoDBJeff Douglas
 
2017 AWS DB Day | AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?
2017 AWS DB Day |  AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?2017 AWS DB Day |  AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?
2017 AWS DB Day | AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?Amazon Web Services Korea
 
(DAT202) Managed Database Options on AWS
(DAT202) Managed Database Options on AWS(DAT202) Managed Database Options on AWS
(DAT202) Managed Database Options on AWSAmazon Web Services
 
Complex Analytics with NoSQL Data Store in Real Time
Complex Analytics with NoSQL Data Store in Real TimeComplex Analytics with NoSQL Data Store in Real Time
Complex Analytics with NoSQL Data Store in Real TimeNati Shalom
 
Leveraging Amazon Redshift for Your Data Warehouse
Leveraging Amazon Redshift for Your Data WarehouseLeveraging Amazon Redshift for Your Data Warehouse
Leveraging Amazon Redshift for Your Data WarehouseAmazon Web Services
 
Minnebar 2013 - Scaling with Cassandra
Minnebar 2013 - Scaling with CassandraMinnebar 2013 - Scaling with Cassandra
Minnebar 2013 - Scaling with CassandraJeff Bollinger
 
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...Amazon Web Services LATAM
 

Similar a AWS What's New Report (20)

AWS Cloud School | London - Part 2
AWS Cloud School | London - Part 2AWS Cloud School | London - Part 2
AWS Cloud School | London - Part 2
 
Data Driven Innovation with Amazon Web Services
Data Driven Innovation with Amazon Web ServicesData Driven Innovation with Amazon Web Services
Data Driven Innovation with Amazon Web Services
 
How and when to use NoSQL
How and when to use NoSQLHow and when to use NoSQL
How and when to use NoSQL
 
Getting Started with Big Data and HPC in the Cloud - August 2015
Getting Started with Big Data and HPC in the Cloud - August 2015Getting Started with Big Data and HPC in the Cloud - August 2015
Getting Started with Big Data and HPC in the Cloud - August 2015
 
Dynamo DB & RDS Deep Dive - AWS India Summit 2012
Dynamo DB & RDS Deep Dive - AWS India Summit 2012Dynamo DB & RDS Deep Dive - AWS India Summit 2012
Dynamo DB & RDS Deep Dive - AWS India Summit 2012
 
MySQL Cluster Scaling to a Billion Queries
MySQL Cluster Scaling to a Billion QueriesMySQL Cluster Scaling to a Billion Queries
MySQL Cluster Scaling to a Billion Queries
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon Redshift
 
AWS March 2016 Webinar Series - Managed Database Services on Amazon Web Services
AWS March 2016 Webinar Series - Managed Database Services on Amazon Web ServicesAWS March 2016 Webinar Series - Managed Database Services on Amazon Web Services
AWS March 2016 Webinar Series - Managed Database Services on Amazon Web Services
 
How & When to Use NoSQL at Websummit Dublin
How & When to Use NoSQL at Websummit DublinHow & When to Use NoSQL at Websummit Dublin
How & When to Use NoSQL at Websummit Dublin
 
DynamoDB Gluecon 2012
DynamoDB Gluecon 2012DynamoDB Gluecon 2012
DynamoDB Gluecon 2012
 
Gluecon 2012 - DynamoDB
Gluecon 2012 - DynamoDBGluecon 2012 - DynamoDB
Gluecon 2012 - DynamoDB
 
2017 AWS DB Day | AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?
2017 AWS DB Day |  AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?2017 AWS DB Day |  AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?
2017 AWS DB Day | AWS 데이터베이스 개요 - 나의 업무에 적합한 데이터베이스는?
 
(DAT202) Managed Database Options on AWS
(DAT202) Managed Database Options on AWS(DAT202) Managed Database Options on AWS
(DAT202) Managed Database Options on AWS
 
Deep Dive on Amazon Aurora
Deep Dive on Amazon AuroraDeep Dive on Amazon Aurora
Deep Dive on Amazon Aurora
 
Complex Analytics with NoSQL Data Store in Real Time
Complex Analytics with NoSQL Data Store in Real TimeComplex Analytics with NoSQL Data Store in Real Time
Complex Analytics with NoSQL Data Store in Real Time
 
Leveraging Amazon Redshift for Your Data Warehouse
Leveraging Amazon Redshift for Your Data WarehouseLeveraging Amazon Redshift for Your Data Warehouse
Leveraging Amazon Redshift for Your Data Warehouse
 
Minnebar 2013 - Scaling with Cassandra
Minnebar 2013 - Scaling with CassandraMinnebar 2013 - Scaling with Cassandra
Minnebar 2013 - Scaling with Cassandra
 
Amazed by aws 1st session
Amazed by aws 1st sessionAmazed by aws 1st session
Amazed by aws 1st session
 
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
AWS Cloud Experience CA: Bases de Datos en AWS: distintas necesidades, distin...
 
Running Databases on AWS
Running Databases on AWSRunning Databases on AWS
Running Databases on AWS
 

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
 

Último

Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 

Último (20)

Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 

AWS What's New Report

  • 1. What’s New with Amazon Web Services 23rd February, 2012 LO N D O N - # AW S LO N D O N
  • 7. Objects in S3 Billions of objects 762B 800.000 600.000 400.000 200.000 0 Q4 2006 Q4 2007 Q4 2008 Q4 2009 Q4 2010 Q4 2011 500k peak transactions per second
  • 9.
  • 11. Per-AZ spot pricing S3 object expiration ElastiCache in us-west-2 and sa-east-1 Elastic Network Interfaces Simple Notification Service EC2 instance status New regions Windows free tier New CloudFront POPs VPC everywhere New availability zones
  • 12. 2.00pm Welcome ~ 2.00pm to 2.45pm Introducing DynamoDB 2.45pm to 3.30pm Analytics in the Cloud 3.30pm to 4.00pm Coffee break 4.00pm to 4.45pm Cloud Economics 4.45pm to 5.30pm Integrating Enterprise IT 5.30pm to 6.30pm Drinks and networking
  • 13. 2.00pm Welcome ~ 2.00pm to 2.40pm Introducing DynamoDB 2.40pm to 3.10pm Analytics in the Cloud 3.10pm to 3.30pm Amazon Simple Workflow 3.30pm to 4.00pm Coffee break 4.00pm to 4.45pm Cloud Economics 4.45pm to 5.30pm Integrating Enterprise IT 5.30pm to 6.30pm Drinks and networking
  • 14.
  • 15. Storage Tools & Compute Support Databases
  • 16. Storage Tools & Compute Support Databases
  • 17. Storage Databases Tools & Compute Support
  • 18. Databases Relational “NoSQL” databases databases
  • 19. Databases Relational “NoSQL” databases databases
  • 20. Any database on Amazon EC2 MySQL, DB2, Oracle, PostgreSQL...
  • 21. Relational Database Service Managed MySQL and Oracle databases
  • 22. Rapid High provisioning availability Scalable Scalable storage compute Relational Database Service Managed MySQL and Oracle databases
  • 23. ElastiCache In memory, memcached compliant, caching clusters
  • 24. High performance databases Increase throughput Increase availability Reduce latency
  • 25. High performance databases Read replicas Push-button scaling Increase throughput ElastiCache Increase availability Reduce latency
  • 26. High performance databases Increase throughput Multi-AZ Increase availability Reduce latency
  • 27. High performance databases Increase throughput Increase availability Reduce latency ElastiCache
  • 29. Performance Predictable, consistent Scale
  • 30. Performance Predictable, consistent Degraded performance with scale Scale
  • 31. Performance Predictable, consistent Degraded performance with scale Scale
  • 33. Data caching Provisioning! Data sharding = more problems Cluster management Fault management
  • 40. H I G H L I G H T S
  • 41. H I G H L I G H T S Low latency Single digit millisecond
  • 42. H I G H L I G H T S Low latency Single digit millisecond < 5 ms reads < 10 ms writes
  • 43. H I G H L I G H T S SSD backed Low latency Single digit millisecond < 5 ms reads < 10 ms writes
  • 44.
  • 45. H I G H L I G H T S Massive scale No table size limits. Unlimited storage.
  • 46. H I G H L I G H T S Seamless scale Live repartitioning. Zero admin.
  • 47. H I G H L I G H T S Predictable performance Provisioned throughput
  • 48. H I G H L I G H T S Durable and available Consistent, disk-only writes
  • 49. H I G H L I G H T S Zero administration
  • 50. What is provisioned throughput?
  • 51. Reserve required IOPS Per table. Set at creation. Scale via API.
  • 52. “ProvisionedThroughput”: { “ReadsPerSecond” : 500 }, { “WritesPerSecond” : 1000 }
  • 53. Scale at any time No downtime
  • 55. Per 1kb item: $0.01 per hour for every 10 writes/second $0.01 per hour for every 50 strongly consistent reads/second
  • 56. Per 1kb item: $0.28 per million writes $0.056 per million strongly consistent reads
  • 57. Pay for storage $1.00 per Gb per month of indexed storage
  • 59.
  • 60. “ImageID” = “1” “Date” = “20100915” “Title” = “flower” “Tags” = “flower”, “jasmine”, “white”
  • 61. “ImageID” = “1” “ImageID” =”2” “ImageID” =”3” “Date” = “Date” = “Date” = “20100915” “20100916” “20100917” “Title” = “flower” “Title” = “ferrari” “Title” = “coffee” “Tags” = “flower”, “Tags” = “car”, “Tags” = “drink”, “jasmine”, “white” “italian” “delicious”
  • 64.
  • 65.
  • 66.
  • 67. Simple API Only 12 operations. Atomic increment/decrement on number attributes.
  • 68. Automatic scaling Subscribe to SNS topic
  • 69. $Res = $DDB->describe_table(array('TableName' => 'wsdot_images')); $Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits; $Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits; $Read *= 2; $Write *= 2; $PT = array('ReadCapacityUnits' => (string) $Read, 'WriteCapacityUnits' => (string) $Write); $Res = $ddb->update_table(array('TableName' => 'wsdot_images', 'ProvisionedThroughPut' => $PT));
  • 70. $Res = $DDB->describe_table(array('TableName' => 'wsdot_images')); $Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits; $Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits; $Read *= 2; $Write *= 2; $PT = array('ReadCapacityUnits' => (string) $Read, 'WriteCapacityUnits' => (string) $Write); $Res = $ddb->update_table(array('TableName' => 'wsdot_images', 'ProvisionedThroughPut' => $PT));
  • 71. $Res = $DDB->describe_table(array('TableName' => 'wsdot_images')); $Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits; $Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits; $Read *= 2; $Write *= 2; $PT = array('ReadCapacityUnits' => (string) $Read, 'WriteCapacityUnits' => (string) $Write); $Res = $ddb->update_table(array('TableName' => 'wsdot_images', 'ProvisionedThroughPut' => $PT));
  • 72. $Res = $DDB->describe_table(array('TableName' => 'wsdot_images')); $Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits; $Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits; $Read *= 2; $Write *= 2; $PT = array('ReadCapacityUnits' => (string) $Read, 'WriteCapacityUnits' => (string) $Write); $Res = $ddb->update_table(array('TableName' => 'wsdot_images', 'ProvisionedThroughPut' => $PT));
  • 73. $Res = $DDB->describe_table(array('TableName' => 'wsdot_images')); $Read = (int) $Res->body->Table->ProvisionedThroughput->ReadCapacityUnits; $Write = (int) $Res->body->Table->ProvisionedThroughput->WriteCapacityUnits; $Read *= 2; $Write *= 2; $PT = array('ReadCapacityUnits' => (string) $Read, 'WriteCapacityUnits' => (string) $Write); $Res = $ddb->update_table(array('TableName' => 'wsdot_images', 'ProvisionedThroughPut' => $PT));
  • 74. Consistency Writes are always consistent. Reads are consistent or eventually consistent.
  • 75. Durability Writes occur to disk, not memory. Writes are acknowledged once they have been made in two physical data centres.
  • 76. Availability Region specific (not AZ) Continuously replicated across multiple AZs
  • 77. Considerations Limited index and query model Throughput is provisioned in 1K operations Maximum 64K item size Backup and restore via Elastic MapReduce
  • 78. Databases Relational “NoSQL” databases databases
  • 80. Flexible queries 10Gb / 1 billion No native attributes per tabel data sharding SimpleDB Zero maintenance, NoSQL datastore
  • 81. Choose the right tool for the job
  • 82. DynamoDB free tier 5 writes/second 10 consistent reads/second 100Mb storage