SlideShare a Scribd company logo
1 of 54
Cobus Bernard
Sr Developer Advocate
Amazon Web Services
GettingStarted with Databases onAWS:
Choosing the right DB
@cobusbernard
cobusbernard
cobusbernard
CobusCloud
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Agenda
History of Databases
Why so many?
Relational Data
NoSQL
Q & A
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
1970 1980 1990 2000
Oracle DB2
SQL Server
MySQL
PostgreSQL
DynamoDB
Redis
MongoDB
Elasticsearch
Neptune
CassandraAccess
Aurora
2010
Timestream
QLDB
Amazon
DocumentDB
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Modern apps create new requirements
Users: 1 million+
Data volume: TBโ€“PBโ€“EB
Locality: Global
Performance: Millisecondsโ€“microseconds
Request rate: Millions
Access: Web, mobile, IoT, devices
Scale: Up-down, Out-in
Economics: Pay for what you use
Developer access: No assembly requiredSocial mediaRide hailing Media streaming Dating
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
User search history: Amazon DynamoDB
โ€ข Massive data volume
โ€ข Need quick lookups for personalized search
Session state: Amazon ElastiCache
โ€ข In-memory store for sub-millisecond fetch
Relational data: Amazon RDS
โ€ข Referential integrity
โ€ข Primary transactional database
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
โ€ข DynamoDB: 31B items
tracking language exercises
โ€ข Aurora: Primary transactional
db (user data)
โ€ข ElastiCache: Instant access to
common words and phrases
300M total users
7B exercises per month
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Data categories and common use cases
Relational Key value Document In-memory Graph Search Time series Ledger
Referential
integrity,ACID
transactions,
schema-
on-write
Low-latency,
key lookups
with high
throughput and
fast ingestion
of data
Indexing and
storing
documents
with support
for query on
any attribute
Microseconds
latency, key-
based queries,
and specialized
data structures
Creating and
navigating
data relations
easily and quickly
Lift and shift,
EMR, CRM,
finance
Real-time
bidding,
shopping cart,
social
Content
management,
personalization,
mobile
Leaderboards,
real-time
analytics,
caching
Fraud detection,
social networks,
recommendation
engines
Indexing and
searching
semistructured
logs and data
Product
catalog, help,
and FAQs,
full text
Collect, store,
and process data
sequenced by
time
IoT
applications,
event tracking
Complete,
immutable, and
verifiable history
of all changes to
application data
Systems
of record,
supply chain,
healthcare,
registrations,
financial
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
AWS: Purpose-built databases
Relational Key value Document In-memory Graph Search
Amazon
DynamoDB
Amazon
Neptune
Amazon RDS
Aurora CommercialCommunity
Amazon
ElastiCache
Amazon
Elasticsearch
Service
Amazon
DocumentDB
Time series Ledger
Amazon
Timestream
Amazon
Quantum
Ledger
Database
MemcachedRedis
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Relational data
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Traditional SQL
โ€ข TCP based wire protocol
โ€ข Well Known, lots of uses
โ€ข Common drivers (JDBC)
โ€ข Frequently used with ORMs
โ€ข Scale UP individual instances
โ€ข Scale OUT with read replicas
โ€ข Sharding at application level
โ€ข Lots of flavors but very similar language
INSERT INTO users
(id, first_name, last_name)
VALUES (1, โ€˜Cobusโ€™, โ€˜Bernardโ€™);
SELECT col1, col2, col3
FROM table1
WHERE col4 = 1 AND col5 = 2
GROUP BY col1
HAVING count(*) > 1
ORDER BY col2
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Relational model
Data model
โ€ข Data is stored in rows and tables
โ€ข Data is normalized
โ€ข Strict schema
โ€ข Relationships established via
keys enforced by the system
โ€ข Data accuracy and consistency
โ€ข Complex queries to extract and
reshape data on-demand
Patient
* Patient ID
First Name
Last Name
Gender
DOB
* Doctor ID
Visit
* Visit ID
* Patient ID
* Hospital ID
Date
* Treatment ID
MedicalTreatment
* Treatment ID
Procedure
How Performed
Adverse Outcome
Contraindication
Doctor
* Doctor ID
First Name
Last Name
Medical Specialty
* Hospital Affiliation
Hospital
* Hospital ID
Name
Address
Rating
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Patient
* Patient ID
First Name
Last Name
Gender
DOB
* Doctor ID
Visit
* Visit ID
* Patient ID
* Hospital ID
Date
* Treatment ID
MedicalTreatment
* Treatment ID
Procedure
How Performed
Adverse Outcome
Contraindication
Doctor
* Doctor ID
First Name
Last Name
Medical Specialty
* Hospital Affiliation
Hospital
* Hospital ID
Name
Address
Rating
Query model: SQL
SELECT
d.first_name, d.last_name, count(*)
FROM
visit as v,
hospital as h,
doctor as d
WHERE
v.hospital_id = h.hospital_id
AND h.hospital_id = d.hospital
AND v.t_date > date_trunc('weekโ€™,
CURRENT_TIMESTAMP - interval '1 week')
GROUP BY
d.first_name, d.last_name;
Relational model
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon Relational Database Service (RDS)
Managed relational database service with a choice of six popular database engines
Easy to administer Available and durable Highly scalable Fast and secure
No need for infrastructure
provisioning, installing, and
maintaining DB software
Automatic Multi-AZ data replication;
automated backup, snapshots,
failover
Scale database compute
and storage with a few
clicks with no app
downtime
SSD storage and guaranteed
provisioned I/O; data
encryption at rest and in transit
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon Aurora ascendant: How we designed a cloud-native
relational database
allthingsdistributed.com
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon Aurora
MySQL and PostgreSQL-compatible relational database built for the cloud
Performance and availability of commercial-grade databases at 1/10th the cost
Performance
and scalability
Availability
and durability
Highly secure Fully managed
5x throughput of standard MySQL
and 3x of standard PostgreSQL;
scale-out up to
15 read replicas
Fault-tolerant, self-healing storage;
six copies of data
across three Availability Zones;
continuous backup to Amazon S3
Network isolation,
encryption at rest/transit
Managed by RDS:
No hardware provisioning, software
patching, setup, configuration, or
backups
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
NoSQL vs SQL
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
SQL vs NoSQL
Optimized for storage Optimized for compute
Normalized/relational Denormalized/hierarchical
Ad hoc queries Instantiated views
Scale vertically Scale horizontally
Good for OLAP Built for OLTP at scale
SQL NoSQL
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Key-Value DBs
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Key-value data
โ€ข Simple key-value pairs
โ€ข Partitioned by keys
โ€ข Resilient to failure
โ€ข High throughput, low-
latency reads and writes
โ€ข Consistent performance at
scale
Table 1
โ€ฆ
โ€ฆ
Partitions
โ€ฆ
Highly partitionable data
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Gamers
Primary Key
Attributes
GamerTag Type
Hammer57
Rank
Level Points Tier
87 4050 Elite
Status
Health Progress
90 30
Weapon
Class Damage Range
Taser 87% 50
FluffyDuffy
Rank
Level Points Tier
5 1072 Trainee
Status
Health Progress
37 8
// Status of Hammer57
GET {
TableName:"Gamers",
Key: {
"GamerTag":"Hammer57",
"Type":"Statusโ€ } }
// Return all Hammer57
SCAN {
TableName:โ€œGamersโ€,
KeyConditionExpression:"GamerTag = :a",
ExpressionAttributeValues: {
":aโ€:โ€Hammer57โ€ } }
Key-value data
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon DynamoDB
Fast and flexible key value database service for any scale
Comprehensive
security
Encrypts all data by default
and fully integrates with AWS
Identity and Access
Management for robust
security
Performance at scale
Consistent, single-digit millisecond
response times at any scale; build
applications with virtually unlimited
throughput
Global database for global
users and apps
Build global applications with fast
access to local data by easily
replicating tables across multiple
AWS Regions
Serverless
No server provisioning, software
patching, or upgrades; scales up
or down automatically;
continuously backs up your data
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Document DBs
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Document databases
โ€ข Data is stored in JSON-like
documents
โ€ข Documents map naturally to
how humans model data
โ€ข Flexible schema and indexing
โ€ข Expressive query language built
for documents (ad hoc queries
and aggregations)
JSON documents are
first-class objects
of the database
{
id: 1,
name: "sue",
age: 26,
email: "sue@example.com",
promotions: ["new user", "5%", "dog lover"],
memberDate: 2018-2-22,
shoppingCart: [
{product:"abc", quantity:2, cost:19.99},
{product:"edf", quantity:3, cost: 2.99}
]
}
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
!===
Evolution of document databases
JSON became the
de facto data
interchange format
Friction when
converting JSON
to the relational
model
Object-relational
mappings (ORMs)
were created to help
with this friction
Document
databases solved
the problem
(Client)
(App) (Database)
JSON RelationalJSON
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Use cases for document data
User profiles
{
id: 181276,
username: "beardy1980",
name: {first: "Cobus",
last: "Bernard"}
}
{
id: 181276,
username: "beardy1980",
name: {first: "Cobus",
last: "Bernard"}
}
{
id: 181276,
username: "beardy1980",
name: {first: "Cobus",
last: "Bernard"},
ExploidingSnails: {
hi_score: 3185400,
global_rank: 5139,
bonus_levels: true
},
promotions: ["new user","5%","snail lover"]
}
{
id: 181276,
username: "beardy1980",
name: {first: "Cobus",
last: "Bernard"},
ExploidingSnails: {
hi_score: 3185400,
global_rank: 5139,
bonus_levels: true
}
}
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Use cases for document data
Mobile
Retail and
marketing
User profilesCatalog
Content
management
Personalization
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon DocumentDB
Fast, scalable, highly available, fully managed MongoDB-compatible database service
Fully Managed
Managed by AWS:
No hardware provisioning,
software patching, setup,
configuration, or backups
Fast
Millions of requests per second,
millisecond latency
MongoDB-compatible
Compatible with MongoDB
Community Edition 3.6. Use the
same drivers and tools
Reliable
Six replicas of your data across
three AZs with full backup and
restore
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
In-Memory stores
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
In-memory
โ€ข No persistence, in-memory
โ€ข Microsecond performance
โ€ข Simple commands for
manipulating in memory data
structures
โ€ข Strings, hashes, lists, sets,
and sorted sets
Database
Memory
(buffer pool)
Disk
Query processor Get/PutAPIs
Memory
Milliseconds to microseconds (10x faster)
Storage engine
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
In-memory ops
set a "hello" // Set key "a" with a string value and no expiration OK
get a // Get value for key "a"
"hello"
get b // Get value for key "b" results in miss
(nil)
set b "Good-bye" EX 5 // Set key "b" with a string value and a 5 second expiration
"Good-bye"
get b // Get value for key "b" "Good-bye"
// wait >= 5 seconds
get b (nil) // key has expired, nothing returned
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon ElastiCache
Redis and Memcached compatible, in-memory data store and cache
Secure and reliable
Network isolation, encryption
at rest/transit, HIPAA, PCI,
FedRAMP, multiAZ, and
automatic failover
Redis & Memcached
compatible
Fully compatible with open source
Redis and Memcached
Easily scalable
Scale writes and reads with sharding
and replicas
Extreme performance
In-memory data store and cache
for microsecond response times
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Searching data
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Search: Full text search
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Search
_search?q=house
{
"hits": {
"total": 85,
"max_score": 6.6137657,
"hits": [{
"_index": "movies",
"_type": "movie",
"_id": "tt0077975",
"_score": 6.6137657,
"_source": {
"directors": [ "John Landis" ],
"release_date": "2020-08-11T00:00:00Z",
"rating": 7.5,
"genres": [ "Comedy", "Romance" ],
"image_url": "http://ia.jpg",
"plot": "In a webinar in 2020, the beard gets cut!",
"title": "Animal House",
"rank": 527,
"running_time_secs": 6540,
"actors": [ "John Belushi","Karen Allen","Tom Hulce" ],
"year": 1978, "id": "tt0077975"
}
}]
}
},
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon Elasticsearch Service
Fully managed, reliable, and scalable Elasticsearch service
Easy to use Scalable Highly available Secure
Deploy a production-ready
Elasticsearch
cluster in minutes
Resize your cluster
with a few clicks
or a single API call
Replicate across
AZs, with monitoring and
automated self-healing
Deploy intoVPC
and restrict access
using security groups
and IAM policies
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Graph data
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Graph
Use cases
โ€ข Social Networking
โ€ข Recommendation Engines
โ€ข Fraud Detection
โ€ข Knowledge Graphs
โ€ข Life Sciences
โ€ข Network / IT Operations
PURCHASED PURCHASED
FOLLOWS
PURCHASED
KNOWS
PRODUCT
SPORT
FOLLOWS
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Graph use case
// Product recommendation to a user
gremlin> V().has(โ€˜nameโ€™,โ€™cobusโ€™).as(โ€˜customerโ€™).out(โ€˜followsโ€™).in(โ€˜followsโ€™).out(โ€˜purchasedโ€™)
( (โ€˜customerโ€™)).dedup() (โ€˜nameโ€™) ('name')
PURCHASED PURCHASED
FOLLOWS
PURCHASED
KNOWS
PRODUCT
SPORT
FOLLOWS
FOLLOWS
// Identify a friend in common and make
a recommendation
gremlin> g.V().has('name','mary').as(โ€˜startโ€™).
both('knows').both('knowsโ€™).
where(neq(โ€˜startโ€™)).
dedup().by('name').properties('name')
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon Neptune
Fully managed graph database
Easy
Build powerful queries easily
with Gremlin and SPARQL
Fast
Query billions of relationships with
millisecond latency
Open
SupportsApacheTinkerPop &W3C
RDF graph models
Reliable
Six replicas of your data across
three AZs with full backup and
restore
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Time series
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Time series data
What is time series data?
What is special about a time
series database? A sequence of data points
recorded over a time interval
Time is the
single primary axis
of the data model
t
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Time series use cases
Application events
IoT sensor readings
DevOps data
Humidity
%Water vapor
91.094.086.093.0
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Existing time-series databasesRelational databases
Difficult to
maintain high
availability
Difficult to scale Limited data
lifecycle
management
Inefficient
time-series data
processing
Unnatural for
time-series data
Rigid schema
inflexible for fast
moving time-series
data
Building with time-series data is challenging
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
AmazonTimestream
Fast, scalable, fully managed time-series database
1,000x faster and 1/10th the cost
of relational databases
Collect data at the rate of
millions of inserts per second
(10M/second)
Trillions of
daily events
Adaptive query processing
engine maintains steady,
predictable performance
Time-series analytics
Built-in functions for
interpolation, smoothing, and
approximation
Serverless
Automated setup, configuration,
server provisioning, software
patching
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Ledgers & journals
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Common customer use cases
Ledgers with centralized control
Healthcare
Verify and track hospital
equipment inventory
Manufacturers
Track distribution of a
recalled product
HR & Payroll
Track changes to an
individualโ€™s profile
Government
Track vehicle title
history
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Challenges with building ledgers
Adds unnecessary
complexity
BlockchainRDBMS - audit tables
Difficult to
maintain
Hard to use and
slow
Hard to build
Custom audit functionality using
triggers or stored procedures
Impossible to verify
No way to verify changes made to
data by sys admins
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Ledger database concepts
C | H
J Journal
C | H Current | History
Current | History
Journal
Ledger comprises
J
L
Ledger databaseL
Journal determines Current | History
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Amazon Quantum Ledger Database (QLDB)
Fully managed ledger database
Track and verify history of all changes made to your applicationโ€™s data
Immutable
Maintains a sequenced record of
all changes to your data, which
cannot be deleted or modified;
you have the ability to query and
analyze the full history
Cryptographically
verifiable
Uses cryptography to
generate a secure output
file of your dataโ€™s history
Easy to use
Easy to use, letting you
use familiar database
capabilities like SQL APIs for
querying the data
Highly scalable
Executes 2โ€“3X as many
transactions than ledgers
in common blockchain
frameworks
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
Purpose-built
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
AWS: Purpose-built databases
Relational Key value Document In-memory Graph Search
Amazon
DynamoDB
Amazon
Neptune
Amazon RDS
Aurora CommercialCommunity
Amazon
ElastiCache
Amazon
Elasticsearch
Service
Amazon
DocumentDB
Time series Ledger
Amazon
Timestream
Amazon
Quantum
Ledger
Database
MemcachedRedis
ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
twitch.tv/aws โ€“ Mo/Fr @ 11am SAST Bean Streaming
twitch.tv/aws โ€“ Thu @ 12:00 SAST AWS Africa Office Hours
youtube.com/c/CobusCloud
youtube.com/c/Ruptwelve
bit.ly/notC_notD (Watch the recorded weekly sessions)
Thank you!
ยฉ 2020, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Cobus Bernard
Sr Developer Advocate
Amazon Web Services
@cobusbernard
cobusbernard
cobusbernard
CobusCloud

More Related Content

What's hot

How to Bring Microsoft Apps to AWS - AWS Online Tech Talks
How to Bring Microsoft Apps to AWS - AWS Online Tech TalksHow to Bring Microsoft Apps to AWS - AWS Online Tech Talks
How to Bring Microsoft Apps to AWS - AWS Online Tech TalksAmazon Web Services
ย 
AWS Webinar 24 - Getting Started with AWS - Understanding DR
AWS Webinar 24 - Getting Started with AWS - Understanding DRAWS Webinar 24 - Getting Started with AWS - Understanding DR
AWS Webinar 24 - Getting Started with AWS - Understanding DRCobus Bernard
ย 
ABD201-Big Data Architectural Patterns and Best Practices on AWS
ABD201-Big Data Architectural Patterns and Best Practices on AWSABD201-Big Data Architectural Patterns and Best Practices on AWS
ABD201-Big Data Architectural Patterns and Best Practices on AWSAmazon Web Services
ย 
DAT203_Running MySQL Databases on AWS
DAT203_Running MySQL Databases on AWSDAT203_Running MySQL Databases on AWS
DAT203_Running MySQL Databases on AWSAmazon Web Services
ย 
Introducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech Talks
Introducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech TalksIntroducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech Talks
Introducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech TalksAmazon Web Services
ย 
Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...
Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...
Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...Amazon Web Services
ย 
STG206_Big Data Data Lakes and Data Oceans
STG206_Big Data Data Lakes and Data OceansSTG206_Big Data Data Lakes and Data Oceans
STG206_Big Data Data Lakes and Data OceansAmazon Web Services
ย 
Databases - Choosing the right Database on AWS
Databases - Choosing the right Database on AWSDatabases - Choosing the right Database on AWS
Databases - Choosing the right Database on AWSAmazon Web Services
ย 
Building with AWS Databases: Match Your Workload to the Right Database (DAT30...
Building with AWS Databases: Match Your Workload to the Right Database (DAT30...Building with AWS Databases: Match Your Workload to the Right Database (DAT30...
Building with AWS Databases: Match Your Workload to the Right Database (DAT30...Amazon Web Services
ย 
Migrating to Amazon RDS with Database Migration Service:
Migrating to Amazon RDS with Database Migration Service:Migrating to Amazon RDS with Database Migration Service:
Migrating to Amazon RDS with Database Migration Service:Amazon Web Services
ย 
Best Practices for Migrating Databases to the Cloud - AWS Summit Sydney
Best Practices for Migrating Databases to the Cloud - AWS Summit SydneyBest Practices for Migrating Databases to the Cloud - AWS Summit Sydney
Best Practices for Migrating Databases to the Cloud - AWS Summit SydneyAmazon Web Services
ย 
Armazenamento em Amazon Web Service para Setor Publico
 Armazenamento em Amazon Web Service para Setor Publico  Armazenamento em Amazon Web Service para Setor Publico
Armazenamento em Amazon Web Service para Setor Publico Amazon Web Services LATAM
ย 
Adding Search to Amazon DynamoDB
Adding Search to Amazon DynamoDBAdding Search to Amazon DynamoDB
Adding Search to Amazon DynamoDBAmazon Web Services
ย 
DAT310_Which Database to Use When
DAT310_Which Database to Use WhenDAT310_Which Database to Use When
DAT310_Which Database to Use WhenAmazon Web Services
ย 
DAT317_Migrating Databases and Data Warehouses to the Cloud
DAT317_Migrating Databases and Data Warehouses to the CloudDAT317_Migrating Databases and Data Warehouses to the Cloud
DAT317_Migrating Databases and Data Warehouses to the CloudAmazon Web Services
ย 
DAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise Workloads
DAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise WorkloadsDAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise Workloads
DAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise WorkloadsAmazon Web Services
ย 
AWS Commercial Management and Cost Optimisation - Dec 2017
AWS Commercial Management and Cost Optimisation - Dec 2017AWS Commercial Management and Cost Optimisation - Dec 2017
AWS Commercial Management and Cost Optimisation - Dec 2017Amazon Web Services
ย 
Design, Deploy, and Optimize Microsoft SQL Server on AWS
Design, Deploy, and Optimize Microsoft SQL Server on AWSDesign, Deploy, and Optimize Microsoft SQL Server on AWS
Design, Deploy, and Optimize Microsoft SQL Server on AWSAmazon Web Services
ย 
Builders' Day- Mastering Kubernetes on AWS
Builders' Day- Mastering Kubernetes on AWSBuilders' Day- Mastering Kubernetes on AWS
Builders' Day- Mastering Kubernetes on AWSAmazon Web Services LATAM
ย 
Optimising Cost and Efficiency on AWS
Optimising Cost and Efficiency on AWSOptimising Cost and Efficiency on AWS
Optimising Cost and Efficiency on AWSAmazon Web Services
ย 

What's hot (20)

How to Bring Microsoft Apps to AWS - AWS Online Tech Talks
How to Bring Microsoft Apps to AWS - AWS Online Tech TalksHow to Bring Microsoft Apps to AWS - AWS Online Tech Talks
How to Bring Microsoft Apps to AWS - AWS Online Tech Talks
ย 
AWS Webinar 24 - Getting Started with AWS - Understanding DR
AWS Webinar 24 - Getting Started with AWS - Understanding DRAWS Webinar 24 - Getting Started with AWS - Understanding DR
AWS Webinar 24 - Getting Started with AWS - Understanding DR
ย 
ABD201-Big Data Architectural Patterns and Best Practices on AWS
ABD201-Big Data Architectural Patterns and Best Practices on AWSABD201-Big Data Architectural Patterns and Best Practices on AWS
ABD201-Big Data Architectural Patterns and Best Practices on AWS
ย 
DAT203_Running MySQL Databases on AWS
DAT203_Running MySQL Databases on AWSDAT203_Running MySQL Databases on AWS
DAT203_Running MySQL Databases on AWS
ย 
Introducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech Talks
Introducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech TalksIntroducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech Talks
Introducing Amazon Aurora with PostgreSQL Compatibility - AWS Online Tech Talks
ย 
Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...
Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...
Best Practices for Migrating Oracle Databases to the Cloud - AWS Online Tech ...
ย 
STG206_Big Data Data Lakes and Data Oceans
STG206_Big Data Data Lakes and Data OceansSTG206_Big Data Data Lakes and Data Oceans
STG206_Big Data Data Lakes and Data Oceans
ย 
Databases - Choosing the right Database on AWS
Databases - Choosing the right Database on AWSDatabases - Choosing the right Database on AWS
Databases - Choosing the right Database on AWS
ย 
Building with AWS Databases: Match Your Workload to the Right Database (DAT30...
Building with AWS Databases: Match Your Workload to the Right Database (DAT30...Building with AWS Databases: Match Your Workload to the Right Database (DAT30...
Building with AWS Databases: Match Your Workload to the Right Database (DAT30...
ย 
Migrating to Amazon RDS with Database Migration Service:
Migrating to Amazon RDS with Database Migration Service:Migrating to Amazon RDS with Database Migration Service:
Migrating to Amazon RDS with Database Migration Service:
ย 
Best Practices for Migrating Databases to the Cloud - AWS Summit Sydney
Best Practices for Migrating Databases to the Cloud - AWS Summit SydneyBest Practices for Migrating Databases to the Cloud - AWS Summit Sydney
Best Practices for Migrating Databases to the Cloud - AWS Summit Sydney
ย 
Armazenamento em Amazon Web Service para Setor Publico
 Armazenamento em Amazon Web Service para Setor Publico  Armazenamento em Amazon Web Service para Setor Publico
Armazenamento em Amazon Web Service para Setor Publico
ย 
Adding Search to Amazon DynamoDB
Adding Search to Amazon DynamoDBAdding Search to Amazon DynamoDB
Adding Search to Amazon DynamoDB
ย 
DAT310_Which Database to Use When
DAT310_Which Database to Use WhenDAT310_Which Database to Use When
DAT310_Which Database to Use When
ย 
DAT317_Migrating Databases and Data Warehouses to the Cloud
DAT317_Migrating Databases and Data Warehouses to the CloudDAT317_Migrating Databases and Data Warehouses to the Cloud
DAT317_Migrating Databases and Data Warehouses to the Cloud
ย 
DAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise Workloads
DAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise WorkloadsDAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise Workloads
DAT332_How Verizon is Adopting Amazon Aurora PostgreSQL for Enterprise Workloads
ย 
AWS Commercial Management and Cost Optimisation - Dec 2017
AWS Commercial Management and Cost Optimisation - Dec 2017AWS Commercial Management and Cost Optimisation - Dec 2017
AWS Commercial Management and Cost Optimisation - Dec 2017
ย 
Design, Deploy, and Optimize Microsoft SQL Server on AWS
Design, Deploy, and Optimize Microsoft SQL Server on AWSDesign, Deploy, and Optimize Microsoft SQL Server on AWS
Design, Deploy, and Optimize Microsoft SQL Server on AWS
ย 
Builders' Day- Mastering Kubernetes on AWS
Builders' Day- Mastering Kubernetes on AWSBuilders' Day- Mastering Kubernetes on AWS
Builders' Day- Mastering Kubernetes on AWS
ย 
Optimising Cost and Efficiency on AWS
Optimising Cost and Efficiency on AWSOptimising Cost and Efficiency on AWS
Optimising Cost and Efficiency on AWS
ย 

Similar to AWS SSA Webinar 32 - Getting Started with databases on AWS: Choosing the right DB

How to Choose The Right Database on AWS - Berlin Summit - 2019
How to Choose The Right Database on AWS - Berlin Summit - 2019How to Choose The Right Database on AWS - Berlin Summit - 2019
How to Choose The Right Database on AWS - Berlin Summit - 2019Randall Hunt
ย 
Track 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ข
Track 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ขTrack 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ข
Track 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ขAmazon Web Services
ย 
Building with Purpose-Built Databases: Match Your workload to the Right Database
Building with Purpose-Built Databases: Match Your workload to the Right DatabaseBuilding with Purpose-Built Databases: Match Your workload to the Right Database
Building with Purpose-Built Databases: Match Your workload to the Right DatabaseAWS Summits
ย 
Database su AWS scegliere lo strumento giusto per il giusto obiettivo
Database su AWS scegliere lo strumento giusto per il giusto obiettivoDatabase su AWS scegliere lo strumento giusto per il giusto obiettivo
Database su AWS scegliere lo strumento giusto per il giusto obiettivoAmazon Web Services
ย 
Preparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/MLPreparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/MLAmazon Web Services
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSAmazon Web Services
ย 
Module 3 - QuickSight Overview
Module 3 - QuickSight OverviewModule 3 - QuickSight Overview
Module 3 - QuickSight OverviewLam Le
ย 
Module 1 - CP Datalake on AWS
Module 1 - CP Datalake on AWSModule 1 - CP Datalake on AWS
Module 1 - CP Datalake on AWSLam Le
ย 
AWS Database and Analytics State of the Union
AWS Database and Analytics State of the UnionAWS Database and Analytics State of the Union
AWS Database and Analytics State of the UnionAmazon Web Services
ย 
Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora
Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora
Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora Datavail
ย 
Building with Purpose-Built Databases: Match Your Workload to the Right Database
Building with Purpose-Built Databases: Match Your Workload to the Right DatabaseBuilding with Purpose-Built Databases: Match Your Workload to the Right Database
Building with Purpose-Built Databases: Match Your Workload to the Right DatabaseAmazon Web Services
ย 
Construindo data lakes e analytics com AWS
Construindo data lakes e analytics com AWSConstruindo data lakes e analytics com AWS
Construindo data lakes e analytics com AWSAmazon Web Services LATAM
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSAmazon Web Services
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSAmazon Web Services
ย 
Using AWS Purpose-Built Databases to Modernize your Applications
Using AWS Purpose-Built Databases to Modernize your ApplicationsUsing AWS Purpose-Built Databases to Modernize your Applications
Using AWS Purpose-Built Databases to Modernize your ApplicationsAmazon Web Services
ย 
Database Freedom: come liberarsi dei database proprietari
Database Freedom: come liberarsi dei database proprietariDatabase Freedom: come liberarsi dei database proprietari
Database Freedom: come liberarsi dei database proprietariAmazon Web Services
ย 
AWS Database and Analytics State of the Union
AWS Database and Analytics State of the UnionAWS Database and Analytics State of the Union
AWS Database and Analytics State of the UnionAmazon Web Services
ย 
Building with Purpose - Built Databases: Match Your Workloads to the Right Da...
Building with Purpose - Built Databases: Match Your Workloads to the Right Da...Building with Purpose - Built Databases: Match Your Workloads to the Right Da...
Building with Purpose - Built Databases: Match Your Workloads to the Right Da...Amazon Web Services
ย 
MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...
MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...
MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...Amazon 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
ย 

Similar to AWS SSA Webinar 32 - Getting Started with databases on AWS: Choosing the right DB (20)

How to Choose The Right Database on AWS - Berlin Summit - 2019
How to Choose The Right Database on AWS - Berlin Summit - 2019How to Choose The Right Database on AWS - Berlin Summit - 2019
How to Choose The Right Database on AWS - Berlin Summit - 2019
ย 
Track 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ข
Track 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ขTrack 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ข
Track 3 Session 6_ๆ‰“้€ ๆ‡‰็”จๅฐˆๅฑฌ่ณ‡ๆ–™ๅบซ (Purpose-built) ่ˆ‡ไบ†่งฃ่จ—็ฎกๆœๅ‹™ๅ„ชๅ‹ข
ย 
Building with Purpose-Built Databases: Match Your workload to the Right Database
Building with Purpose-Built Databases: Match Your workload to the Right DatabaseBuilding with Purpose-Built Databases: Match Your workload to the Right Database
Building with Purpose-Built Databases: Match Your workload to the Right Database
ย 
Database su AWS scegliere lo strumento giusto per il giusto obiettivo
Database su AWS scegliere lo strumento giusto per il giusto obiettivoDatabase su AWS scegliere lo strumento giusto per il giusto obiettivo
Database su AWS scegliere lo strumento giusto per il giusto obiettivo
ย 
Preparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/MLPreparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/ML
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWS
ย 
Module 3 - QuickSight Overview
Module 3 - QuickSight OverviewModule 3 - QuickSight Overview
Module 3 - QuickSight Overview
ย 
Module 1 - CP Datalake on AWS
Module 1 - CP Datalake on AWSModule 1 - CP Datalake on AWS
Module 1 - CP Datalake on AWS
ย 
AWS Database and Analytics State of the Union
AWS Database and Analytics State of the UnionAWS Database and Analytics State of the Union
AWS Database and Analytics State of the Union
ย 
Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora
Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora
Lessons from Migrating Oracle Databases to Amazon RDS or Amazon Aurora
ย 
Building with Purpose-Built Databases: Match Your Workload to the Right Database
Building with Purpose-Built Databases: Match Your Workload to the Right DatabaseBuilding with Purpose-Built Databases: Match Your Workload to the Right Database
Building with Purpose-Built Databases: Match Your Workload to the Right Database
ย 
Construindo data lakes e analytics com AWS
Construindo data lakes e analytics com AWSConstruindo data lakes e analytics com AWS
Construindo data lakes e analytics com AWS
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWS
ย 
Building Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWSBuilding Data Lakes and Analytics on AWS
Building Data Lakes and Analytics on AWS
ย 
Using AWS Purpose-Built Databases to Modernize your Applications
Using AWS Purpose-Built Databases to Modernize your ApplicationsUsing AWS Purpose-Built Databases to Modernize your Applications
Using AWS Purpose-Built Databases to Modernize your Applications
ย 
Database Freedom: come liberarsi dei database proprietari
Database Freedom: come liberarsi dei database proprietariDatabase Freedom: come liberarsi dei database proprietari
Database Freedom: come liberarsi dei database proprietari
ย 
AWS Database and Analytics State of the Union
AWS Database and Analytics State of the UnionAWS Database and Analytics State of the Union
AWS Database and Analytics State of the Union
ย 
Building with Purpose - Built Databases: Match Your Workloads to the Right Da...
Building with Purpose - Built Databases: Match Your Workloads to the Right Da...Building with Purpose - Built Databases: Match Your Workloads to the Right Da...
Building with Purpose - Built Databases: Match Your Workloads to the Right Da...
ย 
MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...
MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...
MBL204_Architecting Cost-Effective Mobile Backends for Scale, Security, and P...
ย 
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
ย 

More from Cobus Bernard

London Microservices Meetup: Lessons learnt adopting microservices
London Microservices  Meetup: Lessons learnt adopting microservicesLondon Microservices  Meetup: Lessons learnt adopting microservices
London Microservices Meetup: Lessons learnt adopting microservicesCobus Bernard
ย 
AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...
AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...
AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...Cobus Bernard
ย 
AWS SSA Webinar 21 - Getting Started with Data lakes on AWS
AWS SSA Webinar 21 - Getting Started with Data lakes on AWSAWS SSA Webinar 21 - Getting Started with Data lakes on AWS
AWS SSA Webinar 21 - Getting Started with Data lakes on AWSCobus Bernard
ย 
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWSAWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWSCobus Bernard
ย 
AWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: Services
AWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: ServicesAWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: Services
AWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: ServicesCobus Bernard
ย 
AWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: Data
AWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: DataAWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: Data
AWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: DataCobus Bernard
ย 
AWS EMEA Online Summit - Live coding with containers
AWS EMEA Online Summit - Live coding with containersAWS EMEA Online Summit - Live coding with containers
AWS EMEA Online Summit - Live coding with containersCobus Bernard
ย 
AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...
AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...
AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...Cobus Bernard
ย 
AWS SSA Webinar 17 - Getting Started on AWS with Amazon RDS
AWS SSA Webinar 17 - Getting Started on AWS with Amazon RDSAWS SSA Webinar 17 - Getting Started on AWS with Amazon RDS
AWS SSA Webinar 17 - Getting Started on AWS with Amazon RDSCobus Bernard
ย 
AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2
AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2
AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2Cobus Bernard
ย 
AWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKS
AWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKSAWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKS
AWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKSCobus Bernard
ย 
AWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECS
AWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECSAWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECS
AWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECSCobus Bernard
ย 
AWS SSA Webinar 11 - Getting started on AWS: Security
AWS SSA Webinar 11 - Getting started on AWS: SecurityAWS SSA Webinar 11 - Getting started on AWS: Security
AWS SSA Webinar 11 - Getting started on AWS: SecurityCobus Bernard
ย 
AWS SSA Webinar 12 - Getting started on AWS with Containers
AWS SSA Webinar 12 - Getting started on AWS with ContainersAWS SSA Webinar 12 - Getting started on AWS with Containers
AWS SSA Webinar 12 - Getting started on AWS with ContainersCobus Bernard
ย 
HashiTalks Africa - Going multi-account on AWS with Terraform
HashiTalks Africa - Going multi-account on AWS with TerraformHashiTalks Africa - Going multi-account on AWS with Terraform
HashiTalks Africa - Going multi-account on AWS with TerraformCobus Bernard
ย 
AWS SSA Webinar 10 - Getting Started on AWS: Networking
AWS SSA Webinar 10 - Getting Started on AWS: NetworkingAWS SSA Webinar 10 - Getting Started on AWS: Networking
AWS SSA Webinar 10 - Getting Started on AWS: NetworkingCobus Bernard
ย 
AWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: StorageAWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: StorageCobus Bernard
ย 
AWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: StorageAWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: StorageCobus Bernard
ย 
AWS SSA Webinar 8 - Getting Started on AWS: Compute
AWS SSA Webinar 8 - Getting Started on AWS: ComputeAWS SSA Webinar 8 - Getting Started on AWS: Compute
AWS SSA Webinar 8 - Getting Started on AWS: ComputeCobus Bernard
ย 
AWS SSA Webinar 7 - Getting Started on AWS
AWS SSA Webinar 7 - Getting Started on AWSAWS SSA Webinar 7 - Getting Started on AWS
AWS SSA Webinar 7 - Getting Started on AWSCobus Bernard
ย 

More from Cobus Bernard (20)

London Microservices Meetup: Lessons learnt adopting microservices
London Microservices  Meetup: Lessons learnt adopting microservicesLondon Microservices  Meetup: Lessons learnt adopting microservices
London Microservices Meetup: Lessons learnt adopting microservices
ย 
AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...
AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...
AWS SSA Webinar 34 - Getting started with databases on AWS - Managing DBs wit...
ย 
AWS SSA Webinar 21 - Getting Started with Data lakes on AWS
AWS SSA Webinar 21 - Getting Started with Data lakes on AWSAWS SSA Webinar 21 - Getting Started with Data lakes on AWS
AWS SSA Webinar 21 - Getting Started with Data lakes on AWS
ย 
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWSAWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
ย 
AWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: Services
AWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: ServicesAWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: Services
AWS SSA Webinar 19 - Getting Started with Multi-Region Architecture: Services
ย 
AWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: Data
AWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: DataAWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: Data
AWS SSA Webinar 18 - Getting Started with Multi-Region Architecture: Data
ย 
AWS EMEA Online Summit - Live coding with containers
AWS EMEA Online Summit - Live coding with containersAWS EMEA Online Summit - Live coding with containers
AWS EMEA Online Summit - Live coding with containers
ย 
AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...
AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...
AWS EMEA Online Summit - Blending Spot and On-Demand instances to optimizing ...
ย 
AWS SSA Webinar 17 - Getting Started on AWS with Amazon RDS
AWS SSA Webinar 17 - Getting Started on AWS with Amazon RDSAWS SSA Webinar 17 - Getting Started on AWS with Amazon RDS
AWS SSA Webinar 17 - Getting Started on AWS with Amazon RDS
ย 
AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2
AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2
AWS SSA Webinar 16 - Getting Started on AWS with Amazon EC2
ย 
AWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKS
AWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKSAWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKS
AWS SSA Webinar 15 - Getting started on AWS with Containers: Amazon EKS
ย 
AWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECS
AWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECSAWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECS
AWS SSA Webinar 13 - Getting started on AWS with Containers: Amazon ECS
ย 
AWS SSA Webinar 11 - Getting started on AWS: Security
AWS SSA Webinar 11 - Getting started on AWS: SecurityAWS SSA Webinar 11 - Getting started on AWS: Security
AWS SSA Webinar 11 - Getting started on AWS: Security
ย 
AWS SSA Webinar 12 - Getting started on AWS with Containers
AWS SSA Webinar 12 - Getting started on AWS with ContainersAWS SSA Webinar 12 - Getting started on AWS with Containers
AWS SSA Webinar 12 - Getting started on AWS with Containers
ย 
HashiTalks Africa - Going multi-account on AWS with Terraform
HashiTalks Africa - Going multi-account on AWS with TerraformHashiTalks Africa - Going multi-account on AWS with Terraform
HashiTalks Africa - Going multi-account on AWS with Terraform
ย 
AWS SSA Webinar 10 - Getting Started on AWS: Networking
AWS SSA Webinar 10 - Getting Started on AWS: NetworkingAWS SSA Webinar 10 - Getting Started on AWS: Networking
AWS SSA Webinar 10 - Getting Started on AWS: Networking
ย 
AWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: StorageAWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: Storage
ย 
AWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: StorageAWS SSA Webinar 9 - Getting Started on AWS: Storage
AWS SSA Webinar 9 - Getting Started on AWS: Storage
ย 
AWS SSA Webinar 8 - Getting Started on AWS: Compute
AWS SSA Webinar 8 - Getting Started on AWS: ComputeAWS SSA Webinar 8 - Getting Started on AWS: Compute
AWS SSA Webinar 8 - Getting Started on AWS: Compute
ย 
AWS SSA Webinar 7 - Getting Started on AWS
AWS SSA Webinar 7 - Getting Started on AWSAWS SSA Webinar 7 - Getting Started on AWS
AWS SSA Webinar 7 - Getting Started on AWS
ย 

Recently uploaded

2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
ย 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...tanu pandey
ย 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC
ย 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
ย 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...SUHANI PANDEY
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
ย 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
ย 
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...Delhi Call girls
ย 
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.soniya singh
ย 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...roncy bisnoi
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...SUHANI PANDEY
ย 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...singhpriety023
ย 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdfMatthew Sinclair
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...SUHANI PANDEY
ย 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...SUHANI PANDEY
ย 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls DubaiEscorts Call Girls
ย 

Recently uploaded (20)

2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
ย 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
ย 
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
ย 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
ย 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
ย 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
ย 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
ย 
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
ย 
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
ย 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
ย 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
ย 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
ย 
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐ŸฅตLow Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
ย 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
ย 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
ย 

AWS SSA Webinar 32 - Getting Started with databases on AWS: Choosing the right DB

  • 1. Cobus Bernard Sr Developer Advocate Amazon Web Services GettingStarted with Databases onAWS: Choosing the right DB @cobusbernard cobusbernard cobusbernard CobusCloud
  • 2. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Agenda History of Databases Why so many? Relational Data NoSQL Q & A
  • 3. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. 1970 1980 1990 2000 Oracle DB2 SQL Server MySQL PostgreSQL DynamoDB Redis MongoDB Elasticsearch Neptune CassandraAccess Aurora 2010 Timestream QLDB Amazon DocumentDB
  • 4. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Modern apps create new requirements Users: 1 million+ Data volume: TBโ€“PBโ€“EB Locality: Global Performance: Millisecondsโ€“microseconds Request rate: Millions Access: Web, mobile, IoT, devices Scale: Up-down, Out-in Economics: Pay for what you use Developer access: No assembly requiredSocial mediaRide hailing Media streaming Dating
  • 5. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. User search history: Amazon DynamoDB โ€ข Massive data volume โ€ข Need quick lookups for personalized search Session state: Amazon ElastiCache โ€ข In-memory store for sub-millisecond fetch Relational data: Amazon RDS โ€ข Referential integrity โ€ข Primary transactional database
  • 6. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. โ€ข DynamoDB: 31B items tracking language exercises โ€ข Aurora: Primary transactional db (user data) โ€ข ElastiCache: Instant access to common words and phrases 300M total users 7B exercises per month
  • 7. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Data categories and common use cases Relational Key value Document In-memory Graph Search Time series Ledger Referential integrity,ACID transactions, schema- on-write Low-latency, key lookups with high throughput and fast ingestion of data Indexing and storing documents with support for query on any attribute Microseconds latency, key- based queries, and specialized data structures Creating and navigating data relations easily and quickly Lift and shift, EMR, CRM, finance Real-time bidding, shopping cart, social Content management, personalization, mobile Leaderboards, real-time analytics, caching Fraud detection, social networks, recommendation engines Indexing and searching semistructured logs and data Product catalog, help, and FAQs, full text Collect, store, and process data sequenced by time IoT applications, event tracking Complete, immutable, and verifiable history of all changes to application data Systems of record, supply chain, healthcare, registrations, financial
  • 8. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. AWS: Purpose-built databases Relational Key value Document In-memory Graph Search Amazon DynamoDB Amazon Neptune Amazon RDS Aurora CommercialCommunity Amazon ElastiCache Amazon Elasticsearch Service Amazon DocumentDB Time series Ledger Amazon Timestream Amazon Quantum Ledger Database MemcachedRedis
  • 9. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Relational data
  • 10. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Traditional SQL โ€ข TCP based wire protocol โ€ข Well Known, lots of uses โ€ข Common drivers (JDBC) โ€ข Frequently used with ORMs โ€ข Scale UP individual instances โ€ข Scale OUT with read replicas โ€ข Sharding at application level โ€ข Lots of flavors but very similar language INSERT INTO users (id, first_name, last_name) VALUES (1, โ€˜Cobusโ€™, โ€˜Bernardโ€™); SELECT col1, col2, col3 FROM table1 WHERE col4 = 1 AND col5 = 2 GROUP BY col1 HAVING count(*) > 1 ORDER BY col2
  • 11. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Relational model Data model โ€ข Data is stored in rows and tables โ€ข Data is normalized โ€ข Strict schema โ€ข Relationships established via keys enforced by the system โ€ข Data accuracy and consistency โ€ข Complex queries to extract and reshape data on-demand Patient * Patient ID First Name Last Name Gender DOB * Doctor ID Visit * Visit ID * Patient ID * Hospital ID Date * Treatment ID MedicalTreatment * Treatment ID Procedure How Performed Adverse Outcome Contraindication Doctor * Doctor ID First Name Last Name Medical Specialty * Hospital Affiliation Hospital * Hospital ID Name Address Rating
  • 12. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Patient * Patient ID First Name Last Name Gender DOB * Doctor ID Visit * Visit ID * Patient ID * Hospital ID Date * Treatment ID MedicalTreatment * Treatment ID Procedure How Performed Adverse Outcome Contraindication Doctor * Doctor ID First Name Last Name Medical Specialty * Hospital Affiliation Hospital * Hospital ID Name Address Rating Query model: SQL SELECT d.first_name, d.last_name, count(*) FROM visit as v, hospital as h, doctor as d WHERE v.hospital_id = h.hospital_id AND h.hospital_id = d.hospital AND v.t_date > date_trunc('weekโ€™, CURRENT_TIMESTAMP - interval '1 week') GROUP BY d.first_name, d.last_name; Relational model
  • 13. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon Relational Database Service (RDS) Managed relational database service with a choice of six popular database engines Easy to administer Available and durable Highly scalable Fast and secure No need for infrastructure provisioning, installing, and maintaining DB software Automatic Multi-AZ data replication; automated backup, snapshots, failover Scale database compute and storage with a few clicks with no app downtime SSD storage and guaranteed provisioned I/O; data encryption at rest and in transit
  • 14. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon Aurora ascendant: How we designed a cloud-native relational database allthingsdistributed.com
  • 15. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates.
  • 16. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon Aurora MySQL and PostgreSQL-compatible relational database built for the cloud Performance and availability of commercial-grade databases at 1/10th the cost Performance and scalability Availability and durability Highly secure Fully managed 5x throughput of standard MySQL and 3x of standard PostgreSQL; scale-out up to 15 read replicas Fault-tolerant, self-healing storage; six copies of data across three Availability Zones; continuous backup to Amazon S3 Network isolation, encryption at rest/transit Managed by RDS: No hardware provisioning, software patching, setup, configuration, or backups
  • 17. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. NoSQL vs SQL
  • 18. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. SQL vs NoSQL Optimized for storage Optimized for compute Normalized/relational Denormalized/hierarchical Ad hoc queries Instantiated views Scale vertically Scale horizontally Good for OLAP Built for OLTP at scale SQL NoSQL
  • 19. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Key-Value DBs
  • 20. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Key-value data โ€ข Simple key-value pairs โ€ข Partitioned by keys โ€ข Resilient to failure โ€ข High throughput, low- latency reads and writes โ€ข Consistent performance at scale Table 1 โ€ฆ โ€ฆ Partitions โ€ฆ Highly partitionable data
  • 21. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Gamers Primary Key Attributes GamerTag Type Hammer57 Rank Level Points Tier 87 4050 Elite Status Health Progress 90 30 Weapon Class Damage Range Taser 87% 50 FluffyDuffy Rank Level Points Tier 5 1072 Trainee Status Health Progress 37 8 // Status of Hammer57 GET { TableName:"Gamers", Key: { "GamerTag":"Hammer57", "Type":"Statusโ€ } } // Return all Hammer57 SCAN { TableName:โ€œGamersโ€, KeyConditionExpression:"GamerTag = :a", ExpressionAttributeValues: { ":aโ€:โ€Hammer57โ€ } } Key-value data
  • 22. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon DynamoDB Fast and flexible key value database service for any scale Comprehensive security Encrypts all data by default and fully integrates with AWS Identity and Access Management for robust security Performance at scale Consistent, single-digit millisecond response times at any scale; build applications with virtually unlimited throughput Global database for global users and apps Build global applications with fast access to local data by easily replicating tables across multiple AWS Regions Serverless No server provisioning, software patching, or upgrades; scales up or down automatically; continuously backs up your data
  • 23. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Document DBs
  • 24. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Document databases โ€ข Data is stored in JSON-like documents โ€ข Documents map naturally to how humans model data โ€ข Flexible schema and indexing โ€ข Expressive query language built for documents (ad hoc queries and aggregations) JSON documents are first-class objects of the database { id: 1, name: "sue", age: 26, email: "sue@example.com", promotions: ["new user", "5%", "dog lover"], memberDate: 2018-2-22, shoppingCart: [ {product:"abc", quantity:2, cost:19.99}, {product:"edf", quantity:3, cost: 2.99} ] }
  • 25. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. !=== Evolution of document databases JSON became the de facto data interchange format Friction when converting JSON to the relational model Object-relational mappings (ORMs) were created to help with this friction Document databases solved the problem (Client) (App) (Database) JSON RelationalJSON
  • 26. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Use cases for document data User profiles { id: 181276, username: "beardy1980", name: {first: "Cobus", last: "Bernard"} } { id: 181276, username: "beardy1980", name: {first: "Cobus", last: "Bernard"} } { id: 181276, username: "beardy1980", name: {first: "Cobus", last: "Bernard"}, ExploidingSnails: { hi_score: 3185400, global_rank: 5139, bonus_levels: true }, promotions: ["new user","5%","snail lover"] } { id: 181276, username: "beardy1980", name: {first: "Cobus", last: "Bernard"}, ExploidingSnails: { hi_score: 3185400, global_rank: 5139, bonus_levels: true } }
  • 27. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Use cases for document data Mobile Retail and marketing User profilesCatalog Content management Personalization
  • 28. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon DocumentDB Fast, scalable, highly available, fully managed MongoDB-compatible database service Fully Managed Managed by AWS: No hardware provisioning, software patching, setup, configuration, or backups Fast Millions of requests per second, millisecond latency MongoDB-compatible Compatible with MongoDB Community Edition 3.6. Use the same drivers and tools Reliable Six replicas of your data across three AZs with full backup and restore
  • 29. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. In-Memory stores
  • 30. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. In-memory โ€ข No persistence, in-memory โ€ข Microsecond performance โ€ข Simple commands for manipulating in memory data structures โ€ข Strings, hashes, lists, sets, and sorted sets Database Memory (buffer pool) Disk Query processor Get/PutAPIs Memory Milliseconds to microseconds (10x faster) Storage engine
  • 31. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. In-memory ops set a "hello" // Set key "a" with a string value and no expiration OK get a // Get value for key "a" "hello" get b // Get value for key "b" results in miss (nil) set b "Good-bye" EX 5 // Set key "b" with a string value and a 5 second expiration "Good-bye" get b // Get value for key "b" "Good-bye" // wait >= 5 seconds get b (nil) // key has expired, nothing returned
  • 32. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon ElastiCache Redis and Memcached compatible, in-memory data store and cache Secure and reliable Network isolation, encryption at rest/transit, HIPAA, PCI, FedRAMP, multiAZ, and automatic failover Redis & Memcached compatible Fully compatible with open source Redis and Memcached Easily scalable Scale writes and reads with sharding and replicas Extreme performance In-memory data store and cache for microsecond response times
  • 33. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Searching data
  • 34. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Search: Full text search
  • 35. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Search _search?q=house { "hits": { "total": 85, "max_score": 6.6137657, "hits": [{ "_index": "movies", "_type": "movie", "_id": "tt0077975", "_score": 6.6137657, "_source": { "directors": [ "John Landis" ], "release_date": "2020-08-11T00:00:00Z", "rating": 7.5, "genres": [ "Comedy", "Romance" ], "image_url": "http://ia.jpg", "plot": "In a webinar in 2020, the beard gets cut!", "title": "Animal House", "rank": 527, "running_time_secs": 6540, "actors": [ "John Belushi","Karen Allen","Tom Hulce" ], "year": 1978, "id": "tt0077975" } }] } },
  • 36. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon Elasticsearch Service Fully managed, reliable, and scalable Elasticsearch service Easy to use Scalable Highly available Secure Deploy a production-ready Elasticsearch cluster in minutes Resize your cluster with a few clicks or a single API call Replicate across AZs, with monitoring and automated self-healing Deploy intoVPC and restrict access using security groups and IAM policies
  • 37. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Graph data
  • 38. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Graph Use cases โ€ข Social Networking โ€ข Recommendation Engines โ€ข Fraud Detection โ€ข Knowledge Graphs โ€ข Life Sciences โ€ข Network / IT Operations PURCHASED PURCHASED FOLLOWS PURCHASED KNOWS PRODUCT SPORT FOLLOWS
  • 39. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Graph use case // Product recommendation to a user gremlin> V().has(โ€˜nameโ€™,โ€™cobusโ€™).as(โ€˜customerโ€™).out(โ€˜followsโ€™).in(โ€˜followsโ€™).out(โ€˜purchasedโ€™) ( (โ€˜customerโ€™)).dedup() (โ€˜nameโ€™) ('name') PURCHASED PURCHASED FOLLOWS PURCHASED KNOWS PRODUCT SPORT FOLLOWS FOLLOWS // Identify a friend in common and make a recommendation gremlin> g.V().has('name','mary').as(โ€˜startโ€™). both('knows').both('knowsโ€™). where(neq(โ€˜startโ€™)). dedup().by('name').properties('name')
  • 40. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon Neptune Fully managed graph database Easy Build powerful queries easily with Gremlin and SPARQL Fast Query billions of relationships with millisecond latency Open SupportsApacheTinkerPop &W3C RDF graph models Reliable Six replicas of your data across three AZs with full backup and restore
  • 41. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Time series
  • 42. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Time series data What is time series data? What is special about a time series database? A sequence of data points recorded over a time interval Time is the single primary axis of the data model t
  • 43. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Time series use cases Application events IoT sensor readings DevOps data Humidity %Water vapor 91.094.086.093.0
  • 44. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Existing time-series databasesRelational databases Difficult to maintain high availability Difficult to scale Limited data lifecycle management Inefficient time-series data processing Unnatural for time-series data Rigid schema inflexible for fast moving time-series data Building with time-series data is challenging
  • 45. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. AmazonTimestream Fast, scalable, fully managed time-series database 1,000x faster and 1/10th the cost of relational databases Collect data at the rate of millions of inserts per second (10M/second) Trillions of daily events Adaptive query processing engine maintains steady, predictable performance Time-series analytics Built-in functions for interpolation, smoothing, and approximation Serverless Automated setup, configuration, server provisioning, software patching
  • 46. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Ledgers & journals
  • 47. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Common customer use cases Ledgers with centralized control Healthcare Verify and track hospital equipment inventory Manufacturers Track distribution of a recalled product HR & Payroll Track changes to an individualโ€™s profile Government Track vehicle title history
  • 48. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Challenges with building ledgers Adds unnecessary complexity BlockchainRDBMS - audit tables Difficult to maintain Hard to use and slow Hard to build Custom audit functionality using triggers or stored procedures Impossible to verify No way to verify changes made to data by sys admins
  • 49. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Ledger database concepts C | H J Journal C | H Current | History Current | History Journal Ledger comprises J L Ledger databaseL Journal determines Current | History
  • 50. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Amazon Quantum Ledger Database (QLDB) Fully managed ledger database Track and verify history of all changes made to your applicationโ€™s data Immutable Maintains a sequenced record of all changes to your data, which cannot be deleted or modified; you have the ability to query and analyze the full history Cryptographically verifiable Uses cryptography to generate a secure output file of your dataโ€™s history Easy to use Easy to use, letting you use familiar database capabilities like SQL APIs for querying the data Highly scalable Executes 2โ€“3X as many transactions than ledgers in common blockchain frameworks
  • 51. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. Purpose-built
  • 52. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. AWS: Purpose-built databases Relational Key value Document In-memory Graph Search Amazon DynamoDB Amazon Neptune Amazon RDS Aurora CommercialCommunity Amazon ElastiCache Amazon Elasticsearch Service Amazon DocumentDB Time series Ledger Amazon Timestream Amazon Quantum Ledger Database MemcachedRedis
  • 53. ยฉ 2020, Amazon Web Services, Inc. or its Affiliates. twitch.tv/aws โ€“ Mo/Fr @ 11am SAST Bean Streaming twitch.tv/aws โ€“ Thu @ 12:00 SAST AWS Africa Office Hours youtube.com/c/CobusCloud youtube.com/c/Ruptwelve bit.ly/notC_notD (Watch the recorded weekly sessions)
  • 54. Thank you! ยฉ 2020, Amazon Web Services, Inc. or its affiliates. All rights reserved. Cobus Bernard Sr Developer Advocate Amazon Web Services @cobusbernard cobusbernard cobusbernard CobusCloud

Editor's Notes

  1. Letโ€™s take a look back at how database technology has evolved over the years. In the 1970s and 1980s, we had relational databases and then in the 1990s we added open source options like MySQL and PostgreSQL. Then, around mid 2000s to the current day, we have seen a significant growth of specialized databases that differ from the relational model. I donโ€™t think it is a coincidence that these new database emerged at the same the time cloud was taking off as customers were beginning to build internet-scale apps that demanded functionality, performance, and scale for many different use cases in the same application.
  2. If you look across the data categories there are a number of different ways to model data, each of those models has a distinct purpose, each of those models lends themselves well to a particular to a set of use cases.
  3. If you look at our offerings and how they align to these categories, our database strategy is fairly simple, we want to ensure you as developers have the very best purpose-built databases in each of these categories so that you never have to sacrifice on scale, performance, and functionality. Today weโ€™re going to talk about the Amazon DocumentDB - Fully managedย MongoDBย compatible database service designed from the ground up to be fast, scalable, and highly available
  4. RDS makes it easy to set up, operate, and scale a relational database in the cloud. It provides cost-efficient and resizable capacity Automating time-consuming administration tasks - hardware provisioning, database setup, patching and backups. Freeโ€™s your time to work on apps. Available in several db instance types (optimized for memory, perf or I/O) Familiar engines (Aurora, PostgreSQL, MySQL, MariaDB, Ora DB and SQL Server)
  5. Amazon Aurora is a MySQL and PostgreSQL-compatibleย relational databaseย built for the cloud, Aurora 5x faster than standard MySQL and 3x standard PostgreSQL Provides security, availability, and reliability of commercial databases at 1/10th the cost. automates time-consuming administration tasks like hardware provisioning, database setup, patching, and backups. Amazon Aurora features a distributed, fault-tolerant, self-healing storage system that auto-scales up to 64TB per database instance. It delivers high performance and availability with up to 15 low-latency read replicas, point-in-time recovery, continuous backup to Amazon S3, and replication across three Availability Zones (AZs).
  6. The first consideration that needs to be made when selecting a database is the characteristics of the data you are looking to leverage. If the data has a simple tabular structure, like an accounting spreadsheet, then the relational model could be adequate. Data such as geo-spatial, engineering parts, or molecular modeling, on the other hand, tends to be very complex.
  7. The purpose of DynamoDB is to provide consistent single-digit millisecond latency for any scale of workloads. fast and flexible NoSQL database service for all applications that need consistent, single-digit millisecond latency at any scale. fully managed cloud database and supports both document and key-value store models. flexible data model, reliable performance, and automatic scaling of throughput capacity, makes it a great fit for mobile, web, gaming, ad tech, IoT, and many other applications. Backup Notes 1/Performance at scale - Consistent, single-digit millisecond response times at any scale. Build applications with virtually unlimited throughput and storage, backed by aย service level agreement for reliability. 2/Serverless - No hardware provisioning, software patching, or upgrades. Scales up or down automatically to accommodate your performance needs. Optimize costs by paying for only the resources you use. Protect your data with on-demand and continuous backups with no downtime. 3/Comprehensive Security- Encrypts all data by default and fully integrates with AWS Identity and Access Management for robust security. Get oversight of your tables by using integrated monitoring on audit logs with AWS CloudTrail, and network isolation with Amazon Virtual Private Cloud. 4/Modern applications - A database for serverless applications that includes AWS Lambda integration. Supports ACID transactions for business-critical applications. Build global applications with fast access to local data by easily replicating tables across multiple AWS Regions. ---- https://www.allthingsdistributed.com/2018/06/purpose-built-databases-in-aws.html As I have talked about before, one of theย reasons why we built Amazon DynamoDBย was that Amazon was pushing the limits of what was a leading commercial database at the time and we were unable to sustain the availability, scalability, and performance needs that our growing Amazon.com business demanded. We found that about 70 percent of our operations were key-value lookups, where only a primary key was used and a single row would be returned. With no need for referential integrity and transactions, we realized these access patterns could be better served by a different type of database. This doesn't mean relational databases do not provide utility in present-day development and are not available, scalable, or provide high performance. The opposite is true. In fact, this is been proven by our customers as Amazon Aurora remainsย the fastest growing service in AWS history. What we experienced at Amazon.com was using a database beyond its intended purpose. That learning is at the heart of this blog postโ€”databases are built for a purpose and matching the use case with the database will help you write high-performance, scalable, and more functional applications faster.
  8. Data is stored in JSON-like documents and JSON documents are first-class objects within the database โ€“ documents are not a data type or a value, they are the key design point of the database Document databases have flexible schema and make the representation of hierarchical and semi-structured data easy โ€“ they also enable powerful indexing to make the querying to such documents fast Documents map naturally to object-oriented programming, which makes the flow of data with your app to persistent layer easier Expressive query languages built for documents that enable ad hoc queries and aggregations across documents Together Document databases help developers build applications faster and iterate quickly
  9. If you look at the evolution of document databases, what was the need that document databases filed in this new world? At some point, JSON became the de facto standard for data interchange and data modeling within applications Using JSON in the application and then trying to map JSON to relational introduced friction and complication Object Relational Mappers (ORMs) were created to help with this friction, but there were complications with performance and functionality A crop of document databases popped up to really solve the problem.
  10. Letโ€™s take user profiles for example, letโ€™s say that Susan plays a new game called ExploidingSnails, we can easily add that information to her profile โ€“ notice here that we didnโ€™t have to design a complicated schema or create any new tables, we simply added a new set of fields in our document. Similarly, we can add an array for the promotions that Susan has achieved. The document model really enables developers to evolve their applications quickly over time and build applications faster.
  11. Content management โ€“ if you think about a lot of the content that we read today from news articles, to blogs, to recipes, to patient records, all of that data lends itself really well to a document model Catalogs โ€“ being able to record output of machine learning experiments, inventory descriptions, output of pharmaceutical trials, mapping of content and meta data in S3 โ€“ we see a broad set of customers that use documents for these use cases
  12. MongoDB compatibility fast, scalable, highly available, and fully managed document database Hard to build HA, scalable to multi TB, 100kโ€™s reads + writes / sec - MongoDB clusters hard at scale DocDB designed for perf, scale, and avail Implements Apache 2.0 open source MongoDB 3.6 API - So use existing drivers + tools uses a distributed, fault-tolerant, self-healing storage system that auto-scales up to 64 TB per database cluster. ---- Other notes I might include depending on time when I do a run through. DocumentDB uses a MongoDB compatible APIs, so can be suitable for those customers that don't want to use proprietary AWS APIs of DynamoDB or that already run unmanaged MongoDB and want to easily switch to a managed DB. There are many differences between DynamoDB and DocumentDB. Few main ones which affect which of the DBs will suit a particular use case: - DynamoDB doesn't have any aggregation abilities (sum, average, group by,...), MongoDB (and so DocumentDB) has such support. - DocumentDB doesn't use sharding, so db can only grow up to 64TB and a single table can grow to 32TB. DynamoDB tables can grow to much more than that. Also the absence of sharding in DocumentDB means that the max amount of parallel queries is limited, while with DynamoDB it is only limited by the amount of capacity units you provision to your tables. - MongoDB (and so DocumentDB) is much more flexible regarding the abilities to store and query different types of data, specifically complex nested structures. - Under significant load DynamoDB should be able to provide lower and more consistent response times, which if needed can be decreased even more with DAX - Items in DynamoDB are limited to 400KB, with DocumentDB the limit is 16MB. - DocumentDB doesn't currently provide cross region replication abilities, while DynamoDB provide it with global tables.
  13. What does in memory db give you: Query by key with microsecond latency, performance that canโ€™t be achieved with disk based stores. Improve perf using fast in memory data stores Key value in memory DB (persisted only via snapshot in redis) Redis-compatible in-memory service availability, reliability and performance suitable for the most demanding applications. 15 node cluster available, up to 6.1 TiB of in-memory data. Memcached - a widely adopted memory object caching system. Fully mgd: hardware provisioning, software patching, setup, config, monitoring, failure recovery, and backups (redis) Easily scalable: scale out, in and up to meet demands. Write and memory scaling with sharding. Replicas for read scaling. Use cases: Leaderboards, real-time analytics, caching Financial services, Ecommerce, web, and mobile application have use cases such as leaderboards, session stores, and real-time analytics that require microsecond response times and can have large spikes in traffic coming at any time. We builtย Amazon ElastiCache, offering Memcached and Redis, to serveย low latency, high throughputย workloads, such asย McDonald's, that cannot be served with disk-based data stores.ย  ---- Donโ€™t think I have time to look at the below, but will nail the in memory use case instead. Memcached: You need the simplest model possible. You need to run large nodes with multiple cores or threads. You need the ability to scale out and in, adding and removing nodes as demand on your system increases and decreases. You need to cache objects, such as a database. Redis: You need complex data types, such as strings, hashes, lists, sets, sorted sets, and bitmaps. You need to sort or rank in-memory datasets. You need persistence of your key store. You need to replicate your data from the primary to one or more read replicas for read intensive applications. You need automatic failover if your primary node fails. You need publish and subscribe (pub/sub) capabilitiesโ€”to inform clients about events on the server. You need backup and restore capabilities. You need to support multiple databases.
  14. My favorite scenario here is going to a bank/credit card website to notify them you will be out of the country. Now given all the menu options, its nearly impossible to find it by visual inspection, so I use to search for help field. You can tell when you type โ€œtravel internationalโ€ how well the experience has been architected by the responses that come back.
  15. Working backwards from our customers and these challenges, we built Amazon DocumentDB to be a fast, scalable, fully-managed, and MongoDB-compatible AWS database service.
  16. What does Graph give you: Quickly and easily create and navigate relationships between data A graph database's purpose is to make it easy to build and run applications that work with highly connected datasets. Typical use cases for a graph database include social networking, recommendation engines, fraud detection, and knowledge graphs. Relationships are first-class objects - They have attributes that can be queried Simple diagram we have Verticies, customers, categories (Product and sport) Edges are the connections between these nodes and they can have attributes - This is what you are querying e.g. on next page
  17. Buildโ€™s out 1) Product recommendation - Bill and Kevin follow sport and purchased product 2+3) Sara signs up to app and follows sport 4) goes to shop to make purhcase 5) we make the recommendation 6) this is the gremlin query for that. 7) FRIEND IN COMMON 8) Mary knows Amit 9+10) we suggest she might know Kevin 11) Gremlin for this query. Better than complex SQL which is hard to optimize and tune Point again about how complex this would be in a different service like relational DB, but simple in graph.
  18. Neptune fast, reliable, fully-managed graph database service Purpose-built, high-performance graph database engine optimized for storing billions of relationships and querying the graph with milliseconds latency.ย  Supports graph models Property Graph and W3C's RDF, and their respective query languages Apache TinkerPop Gremlin and SPARQL, Reliable: 99.99% avail โ€“ 6 copies across 3 AZโ€™s Backups in S3 < 30 seconds failover Customers can choose the best model for their application needs. Devs like the Property Graphs because it is somewhat familiar to relational models, TinkerPop Gremlin provides a way to quickly traverse property graphs Devs like RDF as it provides flexibility for modeling complex information and there are a lot of existing public domain data sets available in RDF including Wikidata ---- Other notes not for preso at the moment. ย Amazon Neptuneย is a fully-managed graph database service. Neptune supports both the Property Graph model and the Resource Description Framework (RDF), giving you the choice of two graph APIs: TinkerPop and RDF/SPARQL. Current Neptune users are building knowledge graphs, making in-game offer recommendations, and detecting fraud. For example, Thomson Reuters is helping their customers navigate a complex web of global tax policies and regulations by using Neptune.
  19. Challenges in trying to build these workloads Relational: donโ€™t need rigid schema, might want to change attributes on the fly, want to collect attributes on sensor now, struggle to interpolate missing data points. Hard to do in SQL. (800 lines of code vs function in a time series DBโ€™s) Existing Time series DBโ€™s Scale constraints Starts to purge data Or could turn off ingest VERY LARGE VOL DATA Want a policy to move data between in memory to warm to to cold storage which is cheap. Hard to mange that lifecycle, should be just a policy not full time job
  20. Amazon Timestream is a purpose-built, time-series database designed specifically for collecting, storing, and analyzing time series data. ย  At the very core of Amazon Timestream, time isnโ€™t just an attribute, but rather the single primary axis of the data model. This allows for simplification and specialization across the database. 1/ 1,000X faster, and at 1/10th the cost of relational databases 2/ Trillions of daily events 3/ Analytics optimized for time series data 4/ Serverless Amazon Timestream is available for preview today. --- Need to sprinkle in notes from below: 1/ 1,000X faster, and at 1/10th the cost of relational databases - Amazon Timestream can collect fast moving time-series data from multiple sources at the rate of millions of inserts per second (10M/second). Amazon Timestream organizes data by time intervals, reducing the amount of data that needs to be scanned to answer a query. Amazon Timestream also executes inserts and queries in separate processing tiers which eliminates resource contention and improves performance. [Note: This claim is based on internal benchmarks and applies to both queries and inserts. The service team is comfortable making the claim]. ย  2/ Trillions of daily eventsโ€“ With its speed and purpose-built architecture, Amazon Timestream is capable of processing trillions of events daily. This opens up the door to more IoT devices, more sensor reads and ultimately a larger data set to make smarter decisions on time series and machine data. Amazon Timestreamโ€™s adaptive query processing engine and data retention policies adjust the query performance and storage capacity to maintain steady, predictable performance at the lowest possible cost as your data grows over time. ย  3/ Analytics optimized for time series dataโ€“ Analyzing time-series data with Amazon Timestream is easy, with built-in functions for interpolation, smoothing, and approximation that can be used to identify trends, patterns, and anomalies. For example, a smart home device manufacturer can use Amazon Timestream to collect motion or temperature data from the device sensors in a home, interpolate that data to identify the time ranges without any motion in the home, and alert consumers to take actions such as turning off the lights or turning down the heat to save energy during times when no one is in the house. ย  4/ Serverless โ€“ With Amazon Timestream, there are no servers to manage. As your application needs change, Amazon Timestream automatically scales up or down to adjust capacity and performance. Amazon Timestream takes care of the time-consuming tasks such as server provisioning, software patching, setup, and configuration so you can focus on building your applications. In addition, You can set policies to automate the retention and tiering of how data is stored, which can significantly reduce your manual effort, storage requirements, and cost. ย 
  21. Track every application change, crypto verifiable. Have a central trust authority E.g. use cases - People donโ€™t ask for a ledger DB, instead want Data immutable Crypto Verifiable Manufacturing: Trust lineage of data that it hasnโ€™t changed Health care: want to verify and track hospital equipment. We built this several years ago for our own services, only recently customers have been asking for.
  22. Challenges in building a ledger in RDBMS + Blockchain RDBMS Hard to build an audit table, store procs, triggers, what if something changes in audit table, how do we record thatโ€ฆ Even if audit hard to verify admin didnโ€™t login and change Blockchain: some need distr consensus, but some customers donโ€™t need that, need a crypt verifiable way to track and verify changes, donโ€™t want to setup distribute blockchain.
  23. Create ledger Serverless Key component is journal When you create transaction write to journal, stored in block, once written cant be changed If you made a mistake need to write a new record, canโ€™t undo, e.g. write new keeper. Maintains current state and history Think bank, debit, credit, debit credit etc. Current state is current balance. History, e.g. last 30 days of acc activity. Just a table created by default to query this history. Ledger comprises c h and j J determines c and h so can destroy c and h but get it back with J
  24. transparent, immutable, and cryptographically verifiable ledger database For apps that act as a โ€˜system or recordโ€™. Eliminates the need to build complex audit functionality within your relational database, or rely on the ledger capabilities within blockchain frameworks. Built with tried + tested tech used extensively in AWS and Amazon.com Immutable Cryptographically Verifiable Transparent Fast Highly scalable Easy to use --- Need to sprinkle notes from the below detail into above notes: 3/ Immutable - QLDB uses an append-only immutable journal to maintain a sequenced and permanent record of each data change, which cannot be deleted or modified. 4/ Cryptographically Verifiable โ€“ All changes are cryptographically chained and verifiable. QLDB provides APIs that allow you to verify the integrity of data to ensure that there have been no unintended modifications. 5/ Transparent โ€“ Customers have full visibility into their entire data lineage. Customers can look back and easily track and analyze each change for the dataโ€™s entire history. 6/ Fast โ€“ Execute 2x more transactions. Unlike using ledgers in blockchain frameworks, Quantumโ€™s transactions donโ€™t require distributed consensus to execute. This allows Quantum to easily scale up and execute twice as many transactions than ledgers in common blockchain frameworks. 7/ Highly scalable โ€“With Quantum, no worries about provisioning capacity or configuring read and write limits. Simply create a ledger, define tables, and Quantum automatically scales to support the demands of your application. 8/ Easy to use โ€“ Quantum provides familiar database capabilities to get you started quickly. With Quantum use a familiar SQL query language to interact with the database and there are no specific blockchain programming APIs to learn.
  25. If you look at our offerings and how they align to these categories, our database strategy is fairly simple, we want to ensure you as developers have the very best purpose-built databases in each of these categories so that you never have to sacrifice on scale, performance, and functionality. Today weโ€™re going to talk about the Amazon DocumentDB - Fully managedย MongoDBย compatible database service designed from the ground up to be fast, scalable, and highly available