SlideShare une entreprise Scribd logo
1  sur  30
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Build your first Serverless
ledger-based app
with QLDB & NodeJS
Dario Pizzuto – Solutions Architect
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Agenda
• Modern app develompent
• What’s a ledger?
• Amazon QLDB
• QLDB Hands on
• Demo: Architecture overview & source code
• Other resources
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
What do our customers want in a
modern application?
Scales to
millions of users
Global availability Responds
in milliseconds
Handles
petabytes of data
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
What is the best way to build a
modern application?
Modular
services
Architectural
patterns
1
As serverless
as possible
Operational
model
2
Automated,
Abstracted &
Standardized
Developer
Agility
3
Programmatic
Guardrails
Management &
Governance
4
Decoupled &
Purpose built
Data
management
5
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Traditional three-tier application architecture
Web servers
Presentation layers
Application servers
Business logic
Database servers
Data layer
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Modern application architecture
Presentation
Business logic
Data
Queues/messages
Events Events
APIs
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Decoupling data along with business logic
Massive data volume?
One size does
not fit all.
What are the data needs of each modular service?
Data warehousing?
High speed rendering?
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Serverless reduces the operational load
No infrastructure provisioning,
no management
Pay
for value
Automatic
scaling
Highly
available
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
What is a ledger?
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Ledger technologies
• built-in immutable journal that stores an accurate
and sequenced entry of every data change
• append-only
• cryptographically verifiable
Ledgers
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Need for a ledger with centralized trust
Manufacturers
Track distribution of a
recalled product
HR & payroll
Track changes to an
individual’s profile
Healthcare
Verify and track hospital
equipment inventory
DMV
Track vehicle title history
• Owned by a single, trusted authority
• Addresses core need of an immutable and
verifiable transactional log
• Fast—doesn’t require consent from members
to commit transactions
Centralized
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Why consider purpose-built databases?
Scale AvailabilityPerformance
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Purpose-built databases at AWS
Aurora RDS DynamoDB DocumentDB TimestreamNeptuneElastiCache QLDB Managed
Cassandra
Relational Key value Document In-memory Graph Time series Ledger Wide column
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
How Amazon QLDB works
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Amazon QLDB: the journal is the database
• QLDB’s journal has structural similarity to a database log
• All writes go to the journal—the journal determines state
• Journal handles concurrency, sequencing, cryptographic
verifiability, and availability
• Accessible history of all transactions, document versions,
document metadata
blockAdreess hash data metadata
{strandId:"IiPT4AnNe
WpE6YdoFiAK0U",seq
uenceNo:136}
{{s6ytAZivsX2ukJNSwB
VvYZ5KjnFQRJHRDrU0
UKbYVRY=}}
{Manufacturer:"Tesla",Mod
el:"Model
S",Year:2012,VIN:1234567
89,Owner:"Traci Russell"}
{id:"Cxlp6cA36YOHylSC
hJ7dzW",version:0,txTi
me:2019-10-
28T12:19:50.098Z,txId:
"JUJglL39zof3a0LKTXN
RgX"}
{strandId:"IiPT4AnNeW
pE6YdoFiAK0U",seque
nceNo:139}
{{1fWeNgIm59pgnkdB
ol83exdL+t/BAvVfICrX
8N9cYN4=}}
{Manufacturer:"Tesla",Mode
l:"Model
S",Year:2012,VIN:1234567
89,Owner:"Ronnie Nash"}
{id:"Cxlp6cA36YOHylSC
hJ7dzW",version:1,txTi
me:2019-10-
28T12:20:25.979Z,txId:"
1nmeGu0dy4nI3KHcsfC
4tr"}
Manufacturer Model Year VIN Owner
Tesla Model S 2012 123456789 Ronnie Nash
history() #function to query document history
User #standard user data, the default
tx1
tx2
tx3
tx4
tx5
tx6
tx7
tx8
Journal
blockAddress hash data metadata
{strandId:"IiPT4A
nNeWpE6YdoFiA
K0U",sequenceN
o:139}
{{1fWeNgIm59pg
nkdBol83exdL+t/
BAvVfICrX8N9cY
N4=}}
{Manufacturer:"Tesla",M
odel:"Model
S",Year:2012,VIN:12345
6789,Owner:"Ronnie
Nash"}
{id:"Cxlp6cA36YOHyl
SChJ7dzW",version:1,
txTime:2019-10-
28T12:20:25.979Z,txI
d:"1nmeGu0dy4nI3K
HcsfC4tr"}
Committed #includes metadata
select * from _ql_committed_cars
select * from cars
SELECT * FROM history(cars)
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
WritingReading
Amazon QLDB—Journal First Database
ID Manufacturer Model Year VIN Owner
1 Tesla Model S 2012 123456789 Robert Dennison
History
User/Current
INSERT… UPDATE… DELETE… UPDATE… UPDATE… UPDATE…
SEQUENCE
NUMBER: 789
SEQUENCE
NUMBER: 790
SEQUENCE
NUMBER: 791
SEQUENCE
NUMBER: 793
SEQUENCE
NUMBER: 792
SEQUENCE
NUMBER: --
Journal
ledger
Application data
Amazon Quantum
Ledger Database
Writing
ID Version Start Manufacturer Model Year VIN Owner
1 0 7/16/2012 Tesla Model S 2012 123456789 Traci Russell
1 1 8/03/2013 Tesla Model S 2012 123456789 Ronnie Nash
1 2 9/02/2016 Tesla Model S 2012 123456789 Robert Dennison
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Transactions (ACID)
Isolation Level Potential Issues
Serializable
Snapshot Isolation
Repeatable read
Read committed
Read uncommitted
—
Potential write skew
Phantom reads
Phantom reads/non-repeatable reads
Phantom reads/non-repeatable reads/dirty reads
HIGHESTTOLOWEST
• Amazon QLDB supports the highest level of isolation
• There is no other mode for QLDB
• There is no risk that you’ll see phantom reads, write skew,
dirty reads, or other issues
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Easy to use - Amazon Ion & PartiQL
Amazon Ion
/* Ion supports comments. */
vehicle = {
‘VIN’ : ‘KM8SRDHF6EU074761’ ,
‘MfgDate’: `2017-03-01T` ,
‘Type’: ‘Truck’ ,
‘Mfgr’: ‘Ford’ ,
‘Model’: ‘F150’
‘Color”: ‘Black’ ,
‘Specs’: {
‘EngSize’ : 3.3 ,(decimal)
‘CurbWeight’: 4878 , (int)
‘HP’: 327 ,(int)
‘BatterySize’ : NULL.int ,
}
}
PartiQL
INSERT INTO cars
{ 'Manufacturer':'Tesla',
'Model':'Model S',
'Year': 2012,
'VIN': 123456789,
'Owner':'Traci Russell'
}
UPDATE cars SET owner = 'Ronnie
Nash'
WHERE VIN = 123456789
SELECT * FROM cars
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Serverless, scalable, highly available
Region
Availability Zone 1 Availability Zone 2
Journals Journals
Availability Zone 3
Journals
Multiple copies per AZ
providing strong
durability
Multi-AZ for
high availability
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
UPDATE… DELETE… UPDATE… UPDATE… UPDATE…
Immutable
INSERT…
SEQUENCE
NUMBER: 789
SEQUENCE
NUMBER: 790
SEQUENCE
NUMBER: 791
SEQUENCE
NUMBER: 793
SEQUENCE
NUMBER: 792
SEQUENCE
NUMBER: --
Records cannot be altered
• The journal is append only and sequenced
• There is no API or other method to alter committed data
• All operations, including deletes, are written to the journal
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Cryptographic verification
Entries
Block
QLDB SQL
Metadata
journal
Record
hash
Hash chaining using sha-256
Digest
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Amazon QLDB
Journal-first
The journal is the
database
ACID Transactions
Fully serializable isolation
Easy to use
Familiar SQL operators
Highly scalable
Serverless, highly available
Immutable
Append-only, sequenced
Cryptographically verifiable
Hash-chaining provide data integrity
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
QLDB hands on
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
High Level Architecture
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
High level architecture
AWS Cloud
AWS
AppSync
Amazon
Cognito
AWS Amplify
Web-App
GraphQL
Resolvers
AWS Lambda Amazon
QLDB
Users
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Demo & code
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
AWS Training & Certification
https://www.aws.training: Free on-demand courses to help you build new cloud skills
Video: Amazon Quantum Ledger Database (QLDB) Service Introduction
https://www.aws.training/Details/Video?id=40817
e-Learning: Amazon Quantum Ledger Database (QLDB) Service Primer
https://www.aws.training/Details/eLearning?id=41760
For more info on AWS T&C visit: https://aws.amazon.com/it/training/
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
One more thing…
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
AWS Europe (Milan) Region
On April, 28th AWS expanded its global footprint with the opening of the AWS Infrastructure Region in Italy. The new
Region AWS Europe (Milano) brings advanced cloud technologies that enable opportunities for innovation,
entrepreneurship, and digital transformation. For additional information about services and characteristics of an AWS
Region, you can check the website: aws.amazon.com/local/italy/milan/
© 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential
Thanks!
dpizzuto@amazon.com

Contenu connexe

Tendances

OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?Amazon Web Services
 
How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...
How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...
How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...Amazon Web Services
 
Crea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSightCrea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSightAmazon Web Services
 
Design, Deploy, & Optimize SQL Server Workloads
Design, Deploy, & Optimize SQL Server Workloads Design, Deploy, & Optimize SQL Server Workloads
Design, Deploy, & Optimize SQL Server Workloads Amazon Web Services
 
Migrate & Optimize Microsoft Applications on AWS
Migrate & Optimize Microsoft Applications on AWSMigrate & Optimize Microsoft Applications on AWS
Migrate & Optimize Microsoft Applications on AWSAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
AWSome Day Online 2020_Module 2: Getting started with the cloud
AWSome Day Online 2020_Module 2: Getting started with the cloudAWSome Day Online 2020_Module 2: Getting started with the cloud
AWSome Day Online 2020_Module 2: Getting started with the cloudAmazon Web Services
 
AWSome Day Online 2020_Modul 1: Pengenalan AWS Cloud
AWSome Day Online 2020_Modul 1: Pengenalan AWS CloudAWSome Day Online 2020_Modul 1: Pengenalan AWS Cloud
AWSome Day Online 2020_Modul 1: Pengenalan AWS CloudAmazon Web Services
 
AWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud Anda
AWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud AndaAWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud Anda
AWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud AndaAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Come costruire apllicazioni "12-factor microservices" in AWS
Come costruire apllicazioni "12-factor microservices" in AWSCome costruire apllicazioni "12-factor microservices" in AWS
Come costruire apllicazioni "12-factor microservices" in AWSAmazon Web Services
 
Best Practices to Mitigate from the Emerging Vectors of Network Attack
Best Practices to Mitigate from the Emerging Vectors of Network AttackBest Practices to Mitigate from the Emerging Vectors of Network Attack
Best Practices to Mitigate from the Emerging Vectors of Network AttackAmazon Web Services
 
Track 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptx
Track 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptxTrack 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptx
Track 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptxAmazon Web Services
 
AWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS Cloud
AWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS CloudAWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS Cloud
AWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS CloudAmazon Web Services
 
Accelerate and Modernise Microsoft Workload Migrations on AWS
Accelerate and Modernise Microsoft Workload Migrations on AWSAccelerate and Modernise Microsoft Workload Migrations on AWS
Accelerate and Modernise Microsoft Workload Migrations on AWSAmazon Web Services
 

Tendances (20)

OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
La tua organizzazione è pronta per adottare una strategia di cloud ibrido?
 
How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...
How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...
How to Enable Single Sign On to Multiple AWS Accounts and Business Applicatio...
 
Crea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSightCrea dashboard interattive con Amazon QuickSight
Crea dashboard interattive con Amazon QuickSight
 
Design, Deploy, & Optimize SQL Server Workloads
Design, Deploy, & Optimize SQL Server Workloads Design, Deploy, & Optimize SQL Server Workloads
Design, Deploy, & Optimize SQL Server Workloads
 
Enterprise workloads on AWS
Enterprise workloads on AWSEnterprise workloads on AWS
Enterprise workloads on AWS
 
Migrate & Optimize Microsoft Applications on AWS
Migrate & Optimize Microsoft Applications on AWSMigrate & Optimize Microsoft Applications on AWS
Migrate & Optimize Microsoft Applications on AWS
 
AWS 101
AWS 101AWS 101
AWS 101
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
AWSome Day Online 2020_Module 2: Getting started with the cloud
AWSome Day Online 2020_Module 2: Getting started with the cloudAWSome Day Online 2020_Module 2: Getting started with the cloud
AWSome Day Online 2020_Module 2: Getting started with the cloud
 
AWSome Day Online 2020_Modul 1: Pengenalan AWS Cloud
AWSome Day Online 2020_Modul 1: Pengenalan AWS CloudAWSome Day Online 2020_Modul 1: Pengenalan AWS Cloud
AWSome Day Online 2020_Modul 1: Pengenalan AWS Cloud
 
AWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud Anda
AWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud AndaAWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud Anda
AWSome Day Online 2020_Modul 4: Mengamankan aplikasi cloud Anda
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Come costruire apllicazioni "12-factor microservices" in AWS
Come costruire apllicazioni "12-factor microservices" in AWSCome costruire apllicazioni "12-factor microservices" in AWS
Come costruire apllicazioni "12-factor microservices" in AWS
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Best Practices to Mitigate from the Emerging Vectors of Network Attack
Best Practices to Mitigate from the Emerging Vectors of Network AttackBest Practices to Mitigate from the Emerging Vectors of Network Attack
Best Practices to Mitigate from the Emerging Vectors of Network Attack
 
Track 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptx
Track 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptxTrack 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptx
Track 5 Session 6_ BLC01 透過 Amazon Managed Blockchain 與 Amazon QLDB 打造區塊鍊應用.pptx
 
AWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS Cloud
AWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS CloudAWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS Cloud
AWSome Day Online 2020_โมดูล 3: การวางระบบบน AWS Cloud
 
Accelerate and Modernise Microsoft Workload Migrations on AWS
Accelerate and Modernise Microsoft Workload Migrations on AWSAccelerate and Modernise Microsoft Workload Migrations on AWS
Accelerate and Modernise Microsoft Workload Migrations on AWS
 

Similaire à Crea la tua prima serverless ledger-based app con QLDB e NodeJS

Leveraging serverless in fullstack development
Leveraging serverless in fullstack developmentLeveraging serverless in fullstack development
Leveraging serverless in fullstack developmentEric Johnson
 
AWS Lake Formation Deep Dive
AWS Lake Formation Deep DiveAWS Lake Formation Deep Dive
AWS Lake Formation Deep DiveCobus Bernard
 
Microservices: Data & Design - Miguel Cervantes
Microservices: Data & Design - Miguel CervantesMicroservices: Data & Design - Miguel Cervantes
Microservices: Data & Design - Miguel CervantesAmazon Web Services
 
Microservices & Data Design: Database Week SF
Microservices & Data Design: Database Week SFMicroservices & Data Design: Database Week SF
Microservices & Data Design: Database Week SFAmazon Web Services
 
Microservices and Data Design
Microservices and Data DesignMicroservices and Data Design
Microservices and Data DesignAWS Germany
 
Microservices & Data Design: Database Week San Francisco
Microservices & Data Design: Database Week San FranciscoMicroservices & Data Design: Database Week San Francisco
Microservices & Data Design: Database Week San FranciscoAmazon Web Services
 
Application Modernization using the Strangler Pattern
Application Modernization using the Strangler PatternApplication Modernization using the Strangler Pattern
Application Modernization using the Strangler PatternTom Laszewski
 
Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...
Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...
Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...Amazon Web Services
 
AWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft Broadridge
AWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft BroadridgeAWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft Broadridge
AWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft BroadridgeAmazon Web Services
 
Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...
Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...
Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...Amazon Web Services
 
20200513 - CloudComputing UCU
20200513 - CloudComputing UCU20200513 - CloudComputing UCU
20200513 - CloudComputing UCUMarcia Villalba
 
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
 
Module 3 - QuickSight Overview
Module 3 - QuickSight OverviewModule 3 - QuickSight Overview
Module 3 - QuickSight OverviewLam Le
 
Build scalable applications with a serverless relational database - ADB211 - ...
Build scalable applications with a serverless relational database - ADB211 - ...Build scalable applications with a serverless relational database - ADB211 - ...
Build scalable applications with a serverless relational database - ADB211 - ...Amazon Web Services
 
How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...
How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...
How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...Amazon Web Services
 
Database Freedom - ADB304 - Santa Clara AWS Summit
Database Freedom - ADB304 - Santa Clara AWS SummitDatabase Freedom - ADB304 - Santa Clara AWS Summit
Database Freedom - ADB304 - Santa Clara AWS SummitAmazon Web Services
 
Data Design and Modeling for Microservices I AWS Dev Day 2018
Data Design and Modeling for Microservices I AWS Dev Day 2018Data Design and Modeling for Microservices I AWS Dev Day 2018
Data Design and Modeling for Microservices I AWS Dev Day 2018AWS Germany
 
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...Amazon Web Services
 
Introduction to Serverless computing and AWS Lambda - Floor28
Introduction to Serverless computing and AWS Lambda - Floor28Introduction to Serverless computing and AWS Lambda - Floor28
Introduction to Serverless computing and AWS Lambda - Floor28Boaz Ziniman
 

Similaire à Crea la tua prima serverless ledger-based app con QLDB e NodeJS (20)

Microservices & Data Design
Microservices & Data DesignMicroservices & Data Design
Microservices & Data Design
 
Leveraging serverless in fullstack development
Leveraging serverless in fullstack developmentLeveraging serverless in fullstack development
Leveraging serverless in fullstack development
 
AWS Lake Formation Deep Dive
AWS Lake Formation Deep DiveAWS Lake Formation Deep Dive
AWS Lake Formation Deep Dive
 
Microservices: Data & Design - Miguel Cervantes
Microservices: Data & Design - Miguel CervantesMicroservices: Data & Design - Miguel Cervantes
Microservices: Data & Design - Miguel Cervantes
 
Microservices & Data Design: Database Week SF
Microservices & Data Design: Database Week SFMicroservices & Data Design: Database Week SF
Microservices & Data Design: Database Week SF
 
Microservices and Data Design
Microservices and Data DesignMicroservices and Data Design
Microservices and Data Design
 
Microservices & Data Design: Database Week San Francisco
Microservices & Data Design: Database Week San FranciscoMicroservices & Data Design: Database Week San Francisco
Microservices & Data Design: Database Week San Francisco
 
Application Modernization using the Strangler Pattern
Application Modernization using the Strangler PatternApplication Modernization using the Strangler Pattern
Application Modernization using the Strangler Pattern
 
Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...
Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...
Getting Started with Serverless Architectures with Microservices_AWSPSSummit_...
 
AWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft Broadridge
AWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft BroadridgeAWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft Broadridge
AWS FSI Symposium 2017 NYC - Moving at the Speed of Serverless ft Broadridge
 
Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...
Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...
Enabling Your Organization’s Amazon Redshift Adoption – Going from Zero to He...
 
20200513 - CloudComputing UCU
20200513 - CloudComputing UCU20200513 - CloudComputing UCU
20200513 - CloudComputing UCU
 
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...
 
Module 3 - QuickSight Overview
Module 3 - QuickSight OverviewModule 3 - QuickSight Overview
Module 3 - QuickSight Overview
 
Build scalable applications with a serverless relational database - ADB211 - ...
Build scalable applications with a serverless relational database - ADB211 - ...Build scalable applications with a serverless relational database - ADB211 - ...
Build scalable applications with a serverless relational database - ADB211 - ...
 
How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...
How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...
How Amazon Migrated Items & Offers for Retail, Marketplace, & Digital to Dyna...
 
Database Freedom - ADB304 - Santa Clara AWS Summit
Database Freedom - ADB304 - Santa Clara AWS SummitDatabase Freedom - ADB304 - Santa Clara AWS Summit
Database Freedom - ADB304 - Santa Clara AWS Summit
 
Data Design and Modeling for Microservices I AWS Dev Day 2018
Data Design and Modeling for Microservices I AWS Dev Day 2018Data Design and Modeling for Microservices I AWS Dev Day 2018
Data Design and Modeling for Microservices I AWS Dev Day 2018
 
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
 
Introduction to Serverless computing and AWS Lambda - Floor28
Introduction to Serverless computing and AWS Lambda - Floor28Introduction to Serverless computing and AWS Lambda - Floor28
Introduction to Serverless computing and AWS Lambda - Floor28
 

Plus de Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 
Come costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWSCome costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWSAmazon Web Services
 
AWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei serverAWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei serverAmazon Web Services
 
Costruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker AutopilotCostruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker AutopilotAmazon Web Services
 
Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows Amazon Web Services
 
Protect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced AttacksProtect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced AttacksAmazon Web Services
 
Track 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptx
Track 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptxTrack 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptx
Track 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptxAmazon Web Services
 
Track 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptx
Track 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptxTrack 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptx
Track 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptxAmazon Web Services
 

Plus de Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 
Come costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWSCome costruire un'architettura Serverless nel Cloud AWS
Come costruire un'architettura Serverless nel Cloud AWS
 
AWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei serverAWS Serverless per startup: come innovare senza preoccuparsi dei server
AWS Serverless per startup: come innovare senza preoccuparsi dei server
 
Costruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker AutopilotCostruisci modelli di Machine Learning con Amazon SageMaker Autopilot
Costruisci modelli di Machine Learning con Amazon SageMaker Autopilot
 
Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows Migra le tue file shares in cloud con FSx for Windows
Migra le tue file shares in cloud con FSx for Windows
 
Protect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced AttacksProtect your applications from DDoS/BOT & Advanced Attacks
Protect your applications from DDoS/BOT & Advanced Attacks
 
Track 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptx
Track 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptxTrack 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptx
Track 6 Session 5_ 如何藉由物聯網 (IoT) 與機器學習提高預測性維修與產品良率.pptx
 
Track 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptx
Track 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptxTrack 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptx
Track 6 Session 3_如何藉由 AWS AI 和機器學習平台搭建多功能的 AI 解決方案.pptx
 

Crea la tua prima serverless ledger-based app con QLDB e NodeJS

  • 1. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Build your first Serverless ledger-based app with QLDB & NodeJS Dario Pizzuto – Solutions Architect
  • 2. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Agenda • Modern app develompent • What’s a ledger? • Amazon QLDB • QLDB Hands on • Demo: Architecture overview & source code • Other resources
  • 3. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential What do our customers want in a modern application? Scales to millions of users Global availability Responds in milliseconds Handles petabytes of data
  • 4. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential What is the best way to build a modern application? Modular services Architectural patterns 1 As serverless as possible Operational model 2 Automated, Abstracted & Standardized Developer Agility 3 Programmatic Guardrails Management & Governance 4 Decoupled & Purpose built Data management 5
  • 5. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Traditional three-tier application architecture Web servers Presentation layers Application servers Business logic Database servers Data layer
  • 6. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Modern application architecture Presentation Business logic Data Queues/messages Events Events APIs
  • 7. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Decoupling data along with business logic Massive data volume? One size does not fit all. What are the data needs of each modular service? Data warehousing? High speed rendering?
  • 8. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Serverless reduces the operational load No infrastructure provisioning, no management Pay for value Automatic scaling Highly available
  • 9. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential What is a ledger?
  • 10. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Ledger technologies • built-in immutable journal that stores an accurate and sequenced entry of every data change • append-only • cryptographically verifiable Ledgers
  • 11. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Need for a ledger with centralized trust Manufacturers Track distribution of a recalled product HR & payroll Track changes to an individual’s profile Healthcare Verify and track hospital equipment inventory DMV Track vehicle title history • Owned by a single, trusted authority • Addresses core need of an immutable and verifiable transactional log • Fast—doesn’t require consent from members to commit transactions Centralized
  • 12. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Why consider purpose-built databases? Scale AvailabilityPerformance
  • 13. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Purpose-built databases at AWS Aurora RDS DynamoDB DocumentDB TimestreamNeptuneElastiCache QLDB Managed Cassandra Relational Key value Document In-memory Graph Time series Ledger Wide column
  • 14. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential How Amazon QLDB works
  • 15. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Amazon QLDB: the journal is the database • QLDB’s journal has structural similarity to a database log • All writes go to the journal—the journal determines state • Journal handles concurrency, sequencing, cryptographic verifiability, and availability • Accessible history of all transactions, document versions, document metadata blockAdreess hash data metadata {strandId:"IiPT4AnNe WpE6YdoFiAK0U",seq uenceNo:136} {{s6ytAZivsX2ukJNSwB VvYZ5KjnFQRJHRDrU0 UKbYVRY=}} {Manufacturer:"Tesla",Mod el:"Model S",Year:2012,VIN:1234567 89,Owner:"Traci Russell"} {id:"Cxlp6cA36YOHylSC hJ7dzW",version:0,txTi me:2019-10- 28T12:19:50.098Z,txId: "JUJglL39zof3a0LKTXN RgX"} {strandId:"IiPT4AnNeW pE6YdoFiAK0U",seque nceNo:139} {{1fWeNgIm59pgnkdB ol83exdL+t/BAvVfICrX 8N9cYN4=}} {Manufacturer:"Tesla",Mode l:"Model S",Year:2012,VIN:1234567 89,Owner:"Ronnie Nash"} {id:"Cxlp6cA36YOHylSC hJ7dzW",version:1,txTi me:2019-10- 28T12:20:25.979Z,txId:" 1nmeGu0dy4nI3KHcsfC 4tr"} Manufacturer Model Year VIN Owner Tesla Model S 2012 123456789 Ronnie Nash history() #function to query document history User #standard user data, the default tx1 tx2 tx3 tx4 tx5 tx6 tx7 tx8 Journal blockAddress hash data metadata {strandId:"IiPT4A nNeWpE6YdoFiA K0U",sequenceN o:139} {{1fWeNgIm59pg nkdBol83exdL+t/ BAvVfICrX8N9cY N4=}} {Manufacturer:"Tesla",M odel:"Model S",Year:2012,VIN:12345 6789,Owner:"Ronnie Nash"} {id:"Cxlp6cA36YOHyl SChJ7dzW",version:1, txTime:2019-10- 28T12:20:25.979Z,txI d:"1nmeGu0dy4nI3K HcsfC4tr"} Committed #includes metadata select * from _ql_committed_cars select * from cars SELECT * FROM history(cars)
  • 16. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential WritingReading Amazon QLDB—Journal First Database ID Manufacturer Model Year VIN Owner 1 Tesla Model S 2012 123456789 Robert Dennison History User/Current INSERT… UPDATE… DELETE… UPDATE… UPDATE… UPDATE… SEQUENCE NUMBER: 789 SEQUENCE NUMBER: 790 SEQUENCE NUMBER: 791 SEQUENCE NUMBER: 793 SEQUENCE NUMBER: 792 SEQUENCE NUMBER: -- Journal ledger Application data Amazon Quantum Ledger Database Writing ID Version Start Manufacturer Model Year VIN Owner 1 0 7/16/2012 Tesla Model S 2012 123456789 Traci Russell 1 1 8/03/2013 Tesla Model S 2012 123456789 Ronnie Nash 1 2 9/02/2016 Tesla Model S 2012 123456789 Robert Dennison
  • 17. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Transactions (ACID) Isolation Level Potential Issues Serializable Snapshot Isolation Repeatable read Read committed Read uncommitted — Potential write skew Phantom reads Phantom reads/non-repeatable reads Phantom reads/non-repeatable reads/dirty reads HIGHESTTOLOWEST • Amazon QLDB supports the highest level of isolation • There is no other mode for QLDB • There is no risk that you’ll see phantom reads, write skew, dirty reads, or other issues
  • 18. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Easy to use - Amazon Ion & PartiQL Amazon Ion /* Ion supports comments. */ vehicle = { ‘VIN’ : ‘KM8SRDHF6EU074761’ , ‘MfgDate’: `2017-03-01T` , ‘Type’: ‘Truck’ , ‘Mfgr’: ‘Ford’ , ‘Model’: ‘F150’ ‘Color”: ‘Black’ , ‘Specs’: { ‘EngSize’ : 3.3 ,(decimal) ‘CurbWeight’: 4878 , (int) ‘HP’: 327 ,(int) ‘BatterySize’ : NULL.int , } } PartiQL INSERT INTO cars { 'Manufacturer':'Tesla', 'Model':'Model S', 'Year': 2012, 'VIN': 123456789, 'Owner':'Traci Russell' } UPDATE cars SET owner = 'Ronnie Nash' WHERE VIN = 123456789 SELECT * FROM cars
  • 19. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Serverless, scalable, highly available Region Availability Zone 1 Availability Zone 2 Journals Journals Availability Zone 3 Journals Multiple copies per AZ providing strong durability Multi-AZ for high availability
  • 20. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential UPDATE… DELETE… UPDATE… UPDATE… UPDATE… Immutable INSERT… SEQUENCE NUMBER: 789 SEQUENCE NUMBER: 790 SEQUENCE NUMBER: 791 SEQUENCE NUMBER: 793 SEQUENCE NUMBER: 792 SEQUENCE NUMBER: -- Records cannot be altered • The journal is append only and sequenced • There is no API or other method to alter committed data • All operations, including deletes, are written to the journal
  • 21. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Cryptographic verification Entries Block QLDB SQL Metadata journal Record hash Hash chaining using sha-256 Digest
  • 22. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Amazon QLDB Journal-first The journal is the database ACID Transactions Fully serializable isolation Easy to use Familiar SQL operators Highly scalable Serverless, highly available Immutable Append-only, sequenced Cryptographically verifiable Hash-chaining provide data integrity
  • 23. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential QLDB hands on
  • 24. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential High Level Architecture
  • 25. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential High level architecture AWS Cloud AWS AppSync Amazon Cognito AWS Amplify Web-App GraphQL Resolvers AWS Lambda Amazon QLDB Users
  • 26. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Demo & code
  • 27. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential AWS Training & Certification https://www.aws.training: Free on-demand courses to help you build new cloud skills Video: Amazon Quantum Ledger Database (QLDB) Service Introduction https://www.aws.training/Details/Video?id=40817 e-Learning: Amazon Quantum Ledger Database (QLDB) Service Primer https://www.aws.training/Details/eLearning?id=41760 For more info on AWS T&C visit: https://aws.amazon.com/it/training/
  • 28. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential One more thing…
  • 29. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential AWS Europe (Milan) Region On April, 28th AWS expanded its global footprint with the opening of the AWS Infrastructure Region in Italy. The new Region AWS Europe (Milano) brings advanced cloud technologies that enable opportunities for innovation, entrepreneurship, and digital transformation. For additional information about services and characteristics of an AWS Region, you can check the website: aws.amazon.com/local/italy/milan/
  • 30. © 2020, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon Confidential Thanks! dpizzuto@amazon.com