aws december 2015 webinar series - design patterns using amazon dynamodb

81
© 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Rick Houlihan, Principal Solutions Architect 12/8/2015 DynamoDB Design Patterns and Best Practices

Upload: amazon-web-services

Post on 16-Apr-2017

6.012 views

Category:

Technology


2 download

TRANSCRIPT

Page 1: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

© 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved.

Rick Houlihan, Principal Solutions Architect

12/8/2015

DynamoDBDesign Patterns and Best Practices

Page 2: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

What to expect from the session

• Brief history of data processing• DynamoDB Internals

• Tables, API, data types, indexes • Scaling and data modeling

• Design patterns and best practices• Event driven applications and DDB Streams

Page 3: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Timeline of Database Technology

Page 4: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Data Volume Since 2010

• 90% of stored data generated in last 2 years

• 1 Terabyte of data in 2010 equals 6.5 Petabytes today

• Linear correlation between data pressure and technical innovation

• No reason these trends will not continue over time

Page 5: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Technology Adoption and the Hype Curve

Page 6: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Why NoSQL?

SQL NoSQL

Page 7: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

SQL vs. NoSQL Access Pattern

Page 8: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

TableTable

Items

Attributes

PartitionKey

SortKey

MandatoryKey-value access patternDetermines data distribution Optional

Model 1:N relationshipsEnables rich query capabilities

All items for key==, <, >, >=, <=“begins with”“between”“contains”“in”sorted resultscountstop/bottom N values

Page 9: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

00 55 A954 FFAA00 FF

Partition KeysPartition Key uniquely identifies an itemPartition Key is used for building an unordered hash indexAllows table to be partitioned for scale

Id = 1Name = Jim

Hash (1) = 7B

Id = 2Name = AndyDept = EngHash (2) = 48

Id = 3Name = KimDept = Ops

Hash (3) = CD

Key Space

Page 10: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Partition:Sort KeyPartition:Sort Key uses two attributes together to uniquely identify an ItemWithin unordered hash index, data is arranged by the sort keyNo limit on the number of items (∞) per partition key

• Except if you have local secondary indexes

00:0 FF:∞

Hash (2) = 48

Customer# = 2Order# = 10Item = Pen

Customer# = 2Order# = 11Item = Shoes

Customer# = 1Order# = 10Item = Toy

Customer# = 1Order# = 11Item = Boots

Hash (1) = 7B

Customer# = 3Order# = 10Item = Book

Customer# = 3Order# = 11Item = Paper

Hash (3) = CD

55 A9:∞54:∞ AA

Partition 1 Partition 2 Partition 3

Page 11: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Partitions are three-way replicated

Id = 2Name = AndyDept = Engg

Id = 3Name = KimDept = Ops

Id = 1Name = Jim

Id = 2Name = AndyDept = Engg

Id = 3Name = KimDept = Ops

Id = 1Name = Jim

Id = 2Name = AndyDept = Engg

Id = 3Name = KimDept = Ops

Id = 1Name = Jim

Replica 1

Replica 2

Replica 3

Partition 1 Partition 2 Partition N

Page 12: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Indexes

Page 13: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Local secondary index (LSI)

Alternate sort key attributeIndex is local to a partition key

A1(partition)

A3(sort)

A2(item key)

A1(partition)

A2(sort)

A3 A4 A5

LSIs A1(partition)

A4(sort)

A2(item key)

A3(projected)

Table

KEYS_ONLY

INCLUDE A3

A1(partition)

A5(sort)

A2(item key)

A3(projected)

A4(projected) ALL

10 GB max per partition key, i.e. LSIs limit the # of range keys!

Page 14: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Global secondary index (GSI)Alternate partition and/or sort keyIndex is across all partition keys

A1(partition)

A2 A3 A4 A5

GSIs A5(partition)

A4(sort)

A1(item key)

A3(projected)

Table

INCLUDE A3

A4(partition)

A5(sort)

A1(item key)

A2(projected)

A3(projected) ALL

A2(partition)

A1(itemkey) KEYS_ONLY

RCUs/WCUs provisioned separately for GSIs

Online indexing

Page 15: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

How do GSI updates work?

Table

Primary tablePrimary

tablePrimary

tablePrimary

tableGlobal

Secondary Index

Client1. Update request

2. Asynchronous update (in progress)

2. Update response

If GSIs don’t have enough write capacity, table writes will be throttled!

Page 16: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

LSI or GSI?

LSI can be modeled as a GSIIf data size in an item collection > 10 GB, use GSIIf eventual consistency is okay for your scenario, use GSI!

Page 17: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Scaling

Page 18: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Scaling

Throughput• Provision any amount of throughput to a table

Size• Add any number of items to a table

• Max item size is 400 KB• LSIs limit the number of range keys due to 10 GB limit

Scaling is achieved through partitioning

Page 19: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Throughput

Provisioned at the table level• Write capacity units (WCUs) are measured in 1 KB per second• Read capacity units (RCUs) are measured in 4 KB per second

• RCUs measure strictly consistent reads• Eventually consistent reads cost 1/2 of consistent reads

Read and write throughput limits are independent

WCURCU

Page 20: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Partitioning math

In the future, these details might change…

Page 21: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Partitioning example Table size = 8 GB, RCUs = 5000, WCUs = 500

RCUs per partition = 5000/3 = 1666.67WCUs per partition = 500/3 = 166.67Data/partition = 10/3 = 3.33 GBRCUs and WCUs are uniformly spread across partitions

Page 22: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

What causes throttling?

If sustained throughput goes beyond provisioned throughput per partition

Non-uniform workloads• Hot keys/hot partitions• Very large bursts

Mixing hot data with cold data• Use a table per time period

From the example before:• Table created with 5000 RCUs, 500 WCUs• RCUs per partition = 1666.67• WCUs per partition = 166.67• If sustained throughput > (1666 RCUs or 166 WCUs) per key or partition, DynamoDB

may throttle requests• Solution: Increase provisioned throughput

Page 23: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

What bad NoSQL looks like…

Par

titio

n

Time

Heat

Page 24: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Getting the most out of DynamoDB throughput

“To get the most out of DynamoDB throughput, create tables where the hash key element has a large number of distinct values, and values are requested fairly uniformly, as randomly as possible.”

—DynamoDB Developer Guide

Space: access is evenly spread over the key-space

Time: requests arrive evenly spaced in time

Page 25: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Much better picture…

Page 26: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Data modeling

Page 27: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

1:1 relationships or key-values

Use a table or GSI with an alternate partition keyUse GetItem or BatchGetItem APIExample: Given an SSN or license number, get attributes

Users TablePartiton key AttributesSSN = 123-45-6789 Email = [email protected], License = TDL25478134SSN = 987-65-4321 Email = [email protected], License = TDL78309234

Users-Email-GSIPartition key AttributesLicense = TDL78309234 Email = [email protected], SSN = 987-65-4321License = TDL25478134 Email = [email protected], SSN = 123-45-6789

Page 28: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

1:N relationships or parent-children

Use a table or GSI with partition and sort keyUse Query API

Example:• Given a device, find all readings between epoch X, Y

Device-measurementsPartition Key Sort key AttributesDeviceId = 1 epoch = 5513A97C Temperature = 30, pressure = 90DeviceId = 1 epoch = 5513A9DB Temperature = 30, pressure = 90

Page 29: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

N:M relationships

Use a table and GSI with partition and sort key elements switchedUse Query API Example: Given a user, find all games. Or given a game, find all users.

User-Games-TablePartition Key Sort keyUserId = bob GameId = Game1UserId = fred GameId = Game2UserId = bob GameId = Game3

Game-Users-GSIPartition Key Sort keyGameId = Game1 UserId = bobGameId = Game2 UserId = fredGameId = Game3 UserId = bob

Page 30: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Hierarchical Data

Tiered relational data structures

Page 31: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Hierarchical Data Structures as Items…Use composite sort key to define a HierarchyHighly selective result sets with sort queriesIndex anything, scales to any size

Page 32: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

… or as Documents (JSON)JSON data types (M, L, BOOL, NULL)Document SDKs AvailableIndexing only via Streams/Lambda400KB max item size (limits hierarchical data structure)

Page 33: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Scenarios and best practices

Page 34: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Event logging

Storing time series data

Page 35: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Time series tables

Events_table_2015_AprilEvent_id(Partition)

Timestamp(Sort)

Attribute1 …. Attribute N

Events_table_2015_MarchEvent_id(Partition)

Timestamp(Sort)

Attribute1 …. Attribute N

Events_table_2015_FeburaryEvent_id(Partition)

Timestamp(Sort)

Attribute1 …. Attribute N

Events_table_2015_JanuaryEvent_id(Partition)

Timestamp(Sort)

Attribute1 …. Attribute N

RCUs = 1000WCUs = 1

RCUs = 10000WCUs = 10000

RCUs = 100WCUs = 1

RCUs = 10WCUs = 1

Current table

Older tables

Hot

dat

aC

old

data

Don’t mix hot and cold data; archive cold data to Amazon S3

Page 36: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Dealing with time series data

Use a table per time period

Pre-create daily, weekly, monthly tablesProvision required throughput for current tableWrites go to the current tableTurn off (or reduce) throughput for older tables

Page 37: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Product catalog

Popular items (read)

Page 38: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Partition 12000 RCUs

Partition K2000 RCUs

Partition M2000 RCUs

Partition 502000 RCU

Scaling bottlenecks

Product A Product B

Shoppers

70,000/sec

ProductCatalog Table

SELECT Id, Description, ...FROM ProductCatalogWHERE Id="POPULAR_PRODUCT"

Page 39: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB
Page 40: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Partition 1 Partition 2

ProductCatalog Table

User

DynamoDB

User

Cachepopular items

SELECT Id, Description, ...FROM ProductCatalogWHERE Id="POPULAR_PRODUCT"

Page 41: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB
Page 42: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Messaging appLarge itemsFilters vs. indexesM:N Modeling—inbox and outbox

Page 43: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

MessagesTable

Messages App

David

SELECT *FROM MessagesWHERE Recipient='David'LIMIT 50ORDER BY Date DESC

Inbox

SELECT *FROM MessagesWHERE Sender ='David'LIMIT 50ORDER BY Date DESC

Outbox

Page 44: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Recipient Date Sender MessageDavid 2014-10-02 Bob …

… 48 more messages for David …

David 2014-10-03 Alice …

Alice 2014-09-28 Bob …

Alice 2014-10-01 Carol …

Large and small attributes mixed

(Many more messages)

David

Messages Table

50 items × 256 KB each

Partition key Sort key

Large message bodiesAttachments

SELECT *FROM MessagesWHERE Recipient='David'LIMIT 50ORDER BY Date DESC

Inbox

Page 45: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Computing inbox query cost

Items evaluated by query

Average item size

Conversion ratio

Eventually consistent reads

50 * 256KB * (1 RCU / 4KB) * (1 / 2) = 1600 RCU

Page 46: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Recipient Date Sender Subject MsgIdDavid 2014-10-02 Bob Hi!… afed

David 2014-10-03 Alice RE: The… 3kf8

Alice 2014-09-28 Bob FW: Ok… 9d2b

Alice 2014-10-01 Carol Hi!... ct7r

Separate the bulk data

Inbox-GSI Messages Table

MsgId Body9d2b …

3kf8 …

ct7r …

afed …

David1. Query Inbox-GSI: 1 RCU2. BatchGetItem Messages: 1600 RCU

(50 separate items at 256 KB)

(50 sequential items at 128 bytes)

Uniformly distributes large item reads

Page 47: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Inbox GSI

Define which attributes to copy into the index

Page 48: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Outbox Sender

Outbox GSI

SELECT *FROM MessagesWHERE Sender ='David'LIMIT 50ORDER BY Date DESC

Page 49: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Messaging app

MessagesTable

David

InboxGlobal secondary

index

Inbox

OutboxGlobal secondary

index

Outbox

Page 50: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Reduce one-to-many item sizesConfigure secondary index projectionsUse GSIs to model M:N relationship between sender and recipient

Distribute large items

Querying many large items at once

InboxMessagesOutbox

Page 51: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Multiplayer online gaming

Query filters vs.composite key indexes

Page 52: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

GameId Date Host Opponent Statusd9bl3 2014-10-02 David Alice DONE

72f49 2014-09-30 Alice Bob PENDING

o2pnb 2014-10-08 Bob Carol IN_PROGRESS

b932s 2014-10-03 Carol Bob PENDING

ef9ca 2014-10-03 David Bob IN_PROGRESS

Games Table

Hierarchical Data Structures

Partition key

Page 53: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Query for incoming game requests

DynamoDB indexes provide partiton and sortWhat about queries for two equalities and a sort?

SELECT * FROM GameWHERE Opponent='Bob‘AND Status=‘PENDING'ORDER BY Date DESC

(hash)

(range)(?)

Page 54: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Secondary Index

Opponent Date GameId Status HostAlice 2014-10-02 d9bl3 DONE David

Carol 2014-10-08 o2pnb IN_PROGRESS Bob

Bob 2014-09-30 72f49 PENDING Alice

Bob 2014-10-03 b932s PENDING Carol

Bob 2014-10-03 ef9ca IN_PROGRESS David

Approach 1: Query filter

BobPartition key Sort key

Page 55: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Secondary Index

Approach 1: Query filter

Bob

Opponent Date GameId Status HostAlice 2014-10-02 d9bl3 DONE David

Carol 2014-10-08 o2pnb IN_PROGRESS Bob

Bob 2014-09-30 72f49 PENDING Alice

Bob 2014-10-03 b932s PENDING Carol

Bob 2014-10-03 ef9ca IN_PROGRESS David

SELECT * FROM GameWHERE Opponent='Bob' ORDER BY Date DESCFILTER ON Status='PENDING'

(filtered out)

Page 56: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Needle in a haystack

Bob

Page 57: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Send back less data “on the wire”Simplify application codeSimple SQL-like expressions

• AND, OR, NOT, ()

Use query filter

Your index isn’t entirely selective

Page 58: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Approach 2: Composite key

StatusDateDONE_2014-10-02

IN_PROGRESS_2014-10-08

IN_PROGRESS_2014-10-03

PENDING_2014-09-30

PENDING_2014-10-03

StatusDONE

IN_PROGRESS

IN_PROGRESS

PENDING

PENDING

Date2014-10-02

2014-10-08

2014-10-03

2014-10-03

2014-09-30

+ =

Page 59: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Secondary Index

Approach 2: Composite key

Opponent StatusDate GameId HostAlice DONE_2014-10-02 d9bl3 David

Carol IN_PROGRESS_2014-10-08 o2pnb Bob

Bob IN_PROGRESS_2014-10-03 ef9ca David

Bob PENDING_2014-09-30 72f49 Alice

Bob PENDING_2014-10-03 b932s Carol

Partition key Sort key

Page 60: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Opponent StatusDate GameId HostAlice DONE_2014-10-02 d9bl3 David

Carol IN_PROGRESS_2014-10-08 o2pnb Bob

Bob IN_PROGRESS_2014-10-03 ef9ca David

Bob PENDING_2014-09-30 72f49 Alice

Bob PENDING_2014-10-03 b932s Carol

Secondary Index

Approach 2: Composite key

Bob

SELECT * FROM GameWHERE Opponent='Bob' AND StatusDate BEGINS_WITH 'PENDING'

Page 61: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Needle in a sorted haystack

Bob

Page 62: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Sparse indexes

Id (Partition) User Game Score Date Award

1 Bob G1 1300 2012-12-232 Bob G1 1450 2012-12-233 Jay G1 1600 2012-12-244 Mary G1 2000 2012-10-24 Champ5 Ryan G2 123 2012-03-106 Jones G2 345 2012-03-20

Game-scores-table

Award (Partition) Id User Score

Champ 4 Mary 2000

Award-GSI

Scan sparse GSIs

Page 63: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Real-Time voting

Write-heavy items

Page 64: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Partition 11000 WCUs

Partition K1000 WCUs

Partition M1000 WCUs

Partition N1000 WCUs

Votes Table

Candidate A Candidate B

Scaling bottlenecks

50,000/sec

70,000/sec

Voters

Provision 200,000 WCUs

Page 65: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Write sharding

Candidate A_2

Candidate B_1

Candidate B_2

Candidate B_3

Candidate B_5

Candidate B_4

Candidate B_7

Candidate B_6

Candidate A_1

Candidate A_3

Candidate A_4Candidate A_7 Candidate B_8

Candidate A_6 Candidate A_8

Candidate A_5

Voter

Votes Table

Page 66: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Write sharding

Candidate A_2

Candidate B_1

Candidate B_2

Candidate B_3

Candidate B_5

Candidate B_4

Candidate B_7

Candidate B_6

Candidate A_1

Candidate A_3

Candidate A_4Candidate A_7 Candidate B_8

UpdateItem: “CandidateA_” + rand(0, 10)ADD 1 to Votes

Candidate A_6 Candidate A_8

Candidate A_5

Voter

Votes Table

Page 67: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Votes Table

Shard aggregation

Candidate A_2

Candidate B_1

Candidate B_2

Candidate B_3

Candidate B_5

Candidate B_4

Candidate B_7

Candidate B_6

Candidate A_1

Candidate A_3

Candidate A_4

Candidate A_5

Candidate A_6 Candidate A_8

Candidate A_7 Candidate B_8

Periodic Process

Candidate ATotal: 2.5M

1. Sum2. Store Voter

Page 68: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Trade off read cost for write scalabilityConsider throughput per partition key

Shard write-heavy partition keys

Your write workload is not horizontally scalable

Page 69: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Concatenate attributes to form usefulsecondary index keys

Take advantage of sparse indexes

Replace filter with indexes

You want to optimize a query as much as possible

Status + Date

Page 70: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

DynamoDB Streams

Page 71: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Stream of updates to a tableAsynchronousExactly onceStrictly ordered

• Per item

Highly durable

• Scale with table24-hour lifetimeSub-second latency

DynamoDB Streams

Page 72: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

View Type Destination

Old image—before update Name = John, Destination = Mars

New image—after update Name = John, Destination = Pluto

Old and new images Name = John, Destination = MarsName = John, Destination = Pluto

Keys only Name = John

View typesUpdateItem (Name = John, Destination = Pluto)

Page 73: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Stream

Table

Partition 1

Partition 2

Partition 3

Partition 4

Partition 5

Table

Shard 1

Shard 2

Shard 3

Shard 4

KCLWorker

KCLWorker

KCLWorker

KCLWorker

Amazon Kinesis Client Library Application

DynamoDBClient Application

Updates

DynamoDB Streams and Amazon Kinesis Client Library

Page 74: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

DynamoDB Streams

Open Source Cross-Region Replication Library

Asia Pacific (Sydney) EU (Ireland) Replica

US East (N. Virginia)

Cross-region replication

Page 75: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

DynamoDB Streams and AWS Lambda

Page 76: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Triggers

Lambda functionNotify change

Derivative Tables

CloudSearch

ElastiCache

Page 77: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Analytics with DynamoDB Streams

Collect and de-dupe data in DynamoDBAggregate data in-memory and flush periodically

Performing real-time aggregation and analytics

Page 78: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Architecture

Page 79: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Reference Architecture

Page 80: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Elastic Event Driven Applications

Page 81: AWS December 2015 Webinar Series - Design Patterns using Amazon DynamoDB

Thank you!